/* --------------------------------------------------
   🔹 PART 1 — BASE STYLES & NAVIGATION
   -------------------------------------------------- */

/* === GLOBAL RESET & BASE TYPOGRAPHY === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: #111;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #424242;
}

.mainn {
  background: #fff;
  overflow-x: hidden;
  color: #111;
}
/* --------------------------------------------------
   🔸 NAVBAR
   -------------------------------------------------- */

   .topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:transparent;
    z-index: 1100;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  }
  
  /* When user scrolls down */
  .topbar.active-scroll {
    background: #fff !important;
    box-shadow: 0 6px 20px rgba(16, 24, 40, 0.06);
  }
  
  /* --- LOGO --- */
  .logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
  }
  
  /* Large screens */
  @media (min-width: 992px) {
    .logo-img {
      height: 76px;
    }
  }
  
  /* Sidebar (mobile) logo */
  .sidebar-header .logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
  }
  
  /* --- NAV LINKS --- */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 54px;
  }
  
  .nav-links a {
    color: #424242;
    font-weight: 500;
    font-size: 19px;
    transition: color 0.2s ease;
  }
  
  .nav-links a:hover {
    color: #009379;
  }
  
  /* Hamburger icon */
  .menu-btn {
    font-size: 1.3rem;
    cursor: pointer;
    display: none;
    color: #424242;
  }
  
  /* --------------------------------------------------
     🔸 SIDEBAR MENU
     -------------------------------------------------- */
  
  .sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.08);
    padding: 40px 20px;
    transition: right 0.6s ease;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .sidebar.active {
    right: 0;
    animation: slideInSidebar 0.6s ease forwards;
  }
  
  @keyframes slideInSidebar {
    from {
      right: -100%;
      opacity: 0;
    }
    to {
      right: 0;
      opacity: 1;
    }
  }
  
  .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .close-btn {
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
  }
  
  .ri-menu-line,
  .ri-close-line {
    background: #009379;
    padding: 7px;
    color: #fff;
    border-radius: 5px;
  }
  
  .menu-links {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    gap: 35px;
    align-items: center;
    width: 100%;
  }
  
  .menu-links a {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .menu-links a.animate {
    animation: fadeSlideUp 0.6s ease forwards;
  }
  
  @keyframes fadeSlideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Overlay behind sidebar */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1100;
  }
  
  .overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* ✅ Mobile Fix: Navbar white bg when scrolled */
  @media (max-width: 768px) {
    .topbar.active-scroll {
      background: #fff !important;
    }
  }




/* HERO */
.hero {
  overflow: hidden;
  height: 100vh;
  max-width: 100%;
  width: 100%;
  background: linear-gradient(rgba(29, 172, 105, 0.45), rgba(24, 27, 26, 0.575)),
    url(assets/MakkahImage-D65AMkWC.png.crdownload) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 140px 50px 60px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 15px;
  max-width: 700px;
}

.hero p {
  max-width: 700px;
  font-size: 1.0rem;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 22px 38px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.hero-buttons a {
  background-color: #f5b50a;
}

.btn-primary {
  /* background-color: #f09433; */
  color: #fff;
}

.hero-buttons .btn-service {
  background-color: #009379;
}

.hero-buttons .btn-service a {
  background-color: #009379;
}

.hero-buttons a {
  /* background-color: #009379; */
  color: #fff;
}

.hero-buttons a :hover {
  /* background-color: #f5b301; */
  color: #fff;
}

/* --------------------------------------------------
   🔹 PART 2 — HERO SECTION & ABOUT SECTION
   -------------------------------------------------- */

/* --------------------------------------------------
   🔸 HERO SECTION
   -------------------------------------------------- */

/* Main hero area with overlay gradient and background image */
.hero {
  height: 100vh;
  width: 100%;
  background: linear-gradient(rgba(29, 172, 105, 0.45), rgba(24, 27, 26, 0.575)),
    url('https://umrahrides.com/assets/MakkahImage-D65AMkWC.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 140px 50px 60px;
}

/* Hero heading */
.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 15px;
  max-width: 700px;
}

/* Hero paragraph text */
.hero p {
  max-width: 700px;
  font-size: 1rem;
  margin-bottom: 25px;
}

/* Button container inside hero */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Generic button styling */
.btn {
  padding: 22px 38px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover effect for all buttons */
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Button background color adjustments */
.hero-buttons a {
  background-color: #f5b50a;
  /* yellowish tone for contrast */
  color: #fff;
}

/* Primary button (default white text) */
.btn-primary {
  color: #fff;
}

/* Secondary service button in hero */
.hero-buttons .btn-service {
  background-color: #009379;
}

/* Consistent style for service button link */
.hero-buttons .btn-service a {
  background-color: #009379;
}

/* Hover state for all hero links */
.hero-buttons a:hover {
  color: #fff;
}

/* Medium screens (>=478px): refine spacing and add shadow */
@media (min-width: 478px) {
  .btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: 14px;
    background: #009379;
    color: #fff;
    padding: 14px 80px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(15, 122, 74, 0.18);
  }
}

/* --------------------------------------------------
   🔸 ABOUT SECTION
   -------------------------------------------------- */

.about {
  background: #fff;
  padding: 100px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #333;
}

/* Flex container for image + content */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

/* About image styling */
.about-image {
  flex: 1 1 40%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Image hover zoom-in animation */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* About text container */
.about-content {
  flex: 1 1 50%;
}

/* About section title */
.about h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

/* Highlight color for specific text inside heading */
.about h2 span {
  color: #009379;
}

/* Underline accent beneath heading */
.about h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30%;
  height: 3px;
  background: #009379;
  border-radius: 2px;
  margin-left: 100px;
}

/* About paragraph styling */
.about-content p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}

/* Bullet list of about features */
.about-features {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

/* Each feature item with icon */
.about-features li {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #333;
}

/* Icon color + alignment */
.about-features i {
  color: #009379;
  font-size: 1.3rem;
  min-width: 20px;
}

/* --- Responsive adjustments --- */

/* Tablets / medium screens */
@media (max-width: 992px) {
  .about-container {
    gap: 40px;
  }

  .about-image {
    flex: 1 1 50%;
  }

  .about-content h2::after {
    width: 50%;
  }
}

/* Mobile and smaller devices */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .about-image {
    width: 85%;
    max-width: 420px;
  }

  .about-content h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
  }

  .about-features {
    text-align: left;
    display: inline-block;
  }

  .about-features li {
    justify-content: flex-start;
    text-align: left;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .logo-img {
    height: 45px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .btn {
    width: 103%;
  }

  .about {
    padding: 60px 25px;
  }

  .about h2{
    font-size: 1.4rem;
  }
  .about-content h2 {
    font-size: 1.6rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .about-features li {
    font-size: 0.9rem;
  }

  .about-image {
    width: 90%;
  }
}




/* Small phones */
@media (max-width: 380px) {
 
  .about h2{
    font-size: 1.3rem;
    font-weight: 900;
  }
 
}




/* Between 768px–992px: refine image ratio & layout */
@media (max-width: 992px) and (min-width: 768px) {
  .about-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    /* prevents image stretching */
    border-radius: 16px;
    transition: transform 0.6s ease;
  }

  .about-image {
    flex: 1 1 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-container {
    flex-direction: column;
    gap: 45px;
    align-items: center;
    text-align: center;
  }

  .about-content {
    width: 90%;
    text-align: center;
  }

  .about h2::after {
    left: 30%;
    transform: translateX(-90%);
  }
}








.whatsapp-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  /* WhatsApp green */
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
}

.whatsapp-contact:hover {
  background-color: #1ebe5d;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: #fff;
}





/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  border: 2px solid rgb(15, 56, 7);
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 9px 12px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}



.main-service {
  background-color: #eef0f0;
  overflow-x: hidden;
}

.services-section {
  position: relative;
  text-align: center;
  padding: 80px 20px;
}

/* ✅ Half-circle background */
.services-section::after {
  content: '';
  position: absolute;
  top: 100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: #62e075;
  border-radius: 40%;
  z-index: -1;
}

/* ✅ Heading */
.services-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

/* ✅ Green underline */
.services-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #2d6a4f;
  margin: 10px auto 0;
  border-radius: 2px;
}

.services-section p {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ✅ Card container */
.service-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* ✅ Card style */
.service-card {
  background: #fff;
  /* border: 2px solid #2d6a4f; */
  border-radius: 15px;
  width: 400px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 4px rgba(0, 0, 0, 0.1);
}

/* ✅ Icon */
.service-icon {
  width: 70px;
  height: 70px;
  /* background-color: #e9f7ef; */
  border-radius: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon img {
  width: 95px;
  height: 95px;
  object-fit: contain;
}

/* ✅ Card content */
.service-card h3 {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 10px;
  font-weight: 700;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ✅ Responsive Styles */
@media (max-width: 992px) {
  .service-cards {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
  }
}




.more-cars {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f7f4;
  color: #333;
  line-height: 1.6;
}

.sectionn {
  padding: 60px 20px;
}

/* ✅ Green underline */
.section-heading h2::after {
  content: '';
  display: block;
  width: 90px;
  height: 4px;
  background-color: #2d6a4f;
  margin: 10px auto 0;
  border-radius: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Headings */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  display: inline-block;
  position: relative;
  font-size: 2rem;
  /* bigger size */
  font-weight: 700;
  color: #222;
  padding-bottom: 10px;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50%;
  /* full width underline */
  height: 4px;
  background-color: #2daa6b;
  border-radius: 2px;
}

.section-heading p {
  max-width: 700px;
  margin: 15px auto;
  color: #313030;
}

/* ==== Service Cards ==== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 70px;
}

.service-card {
  background: #fff;
  /* border: 2px solid #2ecc71; */
  border-radius: 15px;
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 45px;
  color: #2ecc71;
  margin-bottom: 20px;
  display: inline-block;
}

.service-card h5 {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #666;
}







.cars-sections {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  margin: 0;
  padding: 40px 10px;
  text-align: center;
}

.cars-sections h2 {
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.cars-sections p.sub {
  color: #555;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.cars-sections .carousel {
  background: transparent;
}

.carousel-cell {
  width: 23%;
  min-width: 250px;
  background: #fff;
  border-radius: 5px;
  margin-right: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  padding-bottom: 20px;
}

/* Only top & bottom border for image */
.car-img {
  position: relative;
  margin-bottom: 10px;
}

.car-img::before,
.car-img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 18px;
  background: #78BE20;
}

.car-img::before {
  top: 0;
}

.car-img::after {
  bottom: 0;
}

.car-img img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  display: block;
  background: #fff;
}

.car-img h3 {
  margin: 10px 0 5px;
  font-weight: 800;
  font-size: 1.1rem;
}

.details {
  color: #444;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.book-btn {
  display: inline-block;
  margin-top: 12px;
  background: #157347;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.book-btn:hover {
  background: #2e9320;
}

/* Responsive */
@media (max-width: 1024px) {
  .carousel-cell {
    width: 30%;
  }
}

@media (max-width: 768px) {
  .carousel-cell {
    width: 80%;
  }
}



:root {
  --bg: #f6f6f7;
  --card: #ffffff;
  --muted: #6b7280;
  --accent: #0f7a4a;
  --accent-2: #eaf8ef;
  --circle: #fff2d9;
}

/* * {
    box-sizing: border-box
} */

/* html,
body {
  height: 100%;
} */

.testimonial {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}


.wrap {
  width: 100%;
  max-width: 920px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.card {
  position: relative;
  background: var(--card);
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.08);
  text-align: center;
  width: 110%;
  max-width: 860px;
  overflow: hidden;
}

/* half circle only inside card */
.card::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--circle), #f9efe0 60%);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.04);
  z-index: 0;
}

.trophy {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff9e6;
  border-radius: 50%;
  box-shadow: inset 0 -4px 12px rgba(0, 0, 0, 0.03);
  color: #f5b50a;
  font-size: 28px;
}

.trophy h1 {
  position: relative;
  z-index: 1;
  font-size: 22px;
  margin: 6px 0 6px;
  color: #0f1724;
  font-weight: 700;
}

.stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
}

p.lead {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
  margin: 14px auto;
}

.btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 14px;
  background: #009379;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(15, 122, 74, 0.18);
}

@media (max-width:520px) {
  .card {
    padding: 24px;
  }

  .trophy {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  h1 {
    font-size: 18px;
  }

  p.lead {
    font-size: 14px;
  }

  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
  }
}




/* --------------------------------------------------
   🔹 PART 4 — CONTACT SECTION & FOOTER
   -------------------------------------------------- */

/* --------------------------------------------------
   🔸 CONTACT SECTION
   -------------------------------------------------- */

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 20vh;
}

/* Contact container */
#contact {
  width: 90%;
  max-width: 1200px;
  padding: 40px 30px;
  border-radius: 15px;
}

/* Section title */
#contact h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: #333;
  /* text-decoration: underline; */
  /* text-decoration-color: #00bfa6; */
  padding: 10px;
  margin-bottom: 40px;
}

/* Layout container (flexbox for cards + optional map) */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 30px;
}

/* --- Contact Cards --- */
.cardss {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  text-align: center;
  gap: 20px;
}

/* Individual card */
.cardd {
  background: #fff;
  flex: 1;
  border-radius: 15px;
  padding: 25px 37px;
  text-align: center;
  box-shadow: 9px 6px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.cardd:hover {
  transform: translateY(-5px);
}

/* Card image (icon) */
.cardd img {
  width: 40px;
  margin-bottom: 10px;
}

/* Card title */
.cardd h3 {
  font-size: 18px;
  color: #444;
  margin-bottom: 5px;
}

/* Card text */
.cardd p {
  font-size: 14px;
  color: #777;
}

/* ====== RESPONSIVE CONTACT SECTION ====== */

/* Stack cards vertically on smaller screens */
@media (max-width: 568px) {
  .cardss {
    flex-direction: column;
    gap: 20px;
  }

  .cardd {
    padding: 25px 130px;
  }

  .contact-container {
    flex-direction: column;
  }
}

/* Very small screens */
@media (max-width: 398px) {
  .cardd {
    padding: 25px 120px;
  }
}

/* Large screens (side-by-side layout possible) */
@media (min-width: 992px) {
  .contact-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .cardss {
    width: 50%;
  }
}

/* --------------------------------------------------
     🔸 ADDITIONAL RESPONSIVE GRID FIXES
     -------------------------------------------------- */

/* Services grid adjustments for multiple breakpoints */
@media (max-width: 992px) {
  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 412px) {
  .services {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    margin-left: -40px;
  }
}

@media (max-width: 1492px) {
  .services {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    margin-left: -30px;
  }
}

@media (max-width: 832px) {
  .services {
    grid-template-columns: repeat(auto-fit, minmax(330px, 3fr));
    gap: 20px;
    margin-left: 10px;
  }
}

/* --------------------------------------------------
     🔸 FOOTER SECTION
     -------------------------------------------------- */

.ending-footer {
  margin-left: -50px;
  background-color: #111;
  color: #fff;
}

/* Main footer container */
footer {
  background-color: #1a1a1a;
  padding: 40px 20px 20px;
}

/* Grid layout for footer sections */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Footer logo */
.footer-logo img {
  height: 115px;
  width: 145px;
}

.footer-logo p {
  margin-top: 15px;
  color: #ccc;
  line-height: 1.6;
}

/* Contact info inside footer */
.contact-info {
  margin-top: 20px;
  color: #e7e5e5;
}

.contact-info a{
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Footer column headings */
.footer-links h3,
.footer-social h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Footer link lists */
.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

/* Footer links */
.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #00bfa6;
}

/* --- Social Icons --- */
.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 26px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 50px;
  border-radius: 10%;
  transition: all 0.3s ease;
}

/* WhatsApp Icon */
.whatsapp-icon {
  background-color: #25d366;
  color: #fff;
}

.whatsapp-icon:hover {
  background-color: #1ebe5b;
}

/* Instagram Gradient Icon */
.instagram-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.instagram-icon:hover {
  opacity: 0.85;
}

/* --- Footer CTA Button --- */
.book-now {
  margin-top: 10px;
  background-color: #009379;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.book-now:hover {
  background-color: #1ebe5b;
}

.book-now i {
  width: 98px;
  height: 22px;
  fill: white;
}

/* Footer bottom copyright bar */
.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  color: #aaa;
  font-size: 14px;
}

/* --------------------------------------------------
     🔸 RESPONSIVE FOOTER
     -------------------------------------------------- */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-container div {
    text-align: left;
  }

  .footer-logo img {
    height: 100px;
    width: 120px;
    margin-left: -16px;
  }

  .ending-footer {
    margin-left: 0;
    background-color: #111;
    color: #fff;
  }
}


@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-container div {
    text-align: left;
  }

  .footer-logo img {
    height: 100px;
    width: 120px;
    margin-left: -16px;
  }

  .ending-footer {
    margin-left: 0px;
    background-color: #111;
    color: #fff;
  }
}



 /* THIS WEBSITE IS DESIGNED BY MOMI SAIN. */









