/* ================================
   NAVBAR STICKY + DESIGN
================================ */
html {
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
}
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* When visible */
.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}


.whatsapp-top {
  background: #090909;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  position: center;
}


.whatsapp-top:hover {
  background: #43786f;
}









/* ===== CLEAN NAVBAR ===== */


.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  z-index: 9999;

  background: #d0c2c2;
  border-bottom: 1px solid #e6e6e6;

  padding: 12px 20px;
  transition: all 0.3s ease;
}

/* IMPORTANT: proper alignment */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Scroll effect */
.navbar.scrolled {
  background: #1f2a3a !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand {
  color: #fff !important;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #5a78a5 !important;
}

/* Logo FIXED */
.logo {
  height: 70px;   /* 🔥 reduced */
  width: auto;
 
}

/* Nav links */
.navbar-nav {
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link {
  margin: 0 12px;
  font-size: 19px;   /* 🔥 better */
  font-weight: 500;
  color: #333 !important;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #5da198 !important;
  transform: translateY(-2px);
}

#servicesDropdown {
  font-size: 20px;   /* increase size */
  font-weight: 500;  /* bold */
  color: #000;       /* strong color */
}
#ductDropdown{
  font-size: 20px;   /* increase size */
  font-weight: 500;  /* bold */
  color: #000; 

}


/* Mobile */
@media (max-width: 768px) {

  .navbar {
    padding: 10px 15px !important;
  }

  .navbar-brand {
    font-size: 18px !important;
  }

  .logo {
    height: 38px;
  }

  .navbar-nav .nav-link {
    font-size: 15px !important;
    padding: 8px 0;
  }
}

/* Prevent overlap */
body {
  padding-top: 75px;  /* 🔥 adjusted */
}


/* NAV LINKS FIX */
.navbar-nav .nav-link {
  margin: 0 2px;        /* 🔥 reduced spacing */
  font-size: 17px;      /* 🔥 smaller text */
  font-weight: 600;
  color: #0a0a0a !important;
  white-space: nowrap;  /* prevent breaking */
}

/* Reduce gap */
.navbar-nav {
  gap: 8px;
}

/* .navbar-nav {
  flex: 1;
  justify-content: center;
} */

.navbar-nav {
  margin-left: auto;  /* pushes menu to right properly */
  align-items: center;
}
.navbar-brand {
  flex-shrink: 0;
}

/* Scrollable Dropdown Menu */

.custom-scroll-dropdown{
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;

  min-width: 320px;

  border-radius: 12px;
  padding: 10px 0;
}


/* Scrollbar Styling */
.custom-scroll-dropdown::-webkit-scrollbar{
  width: 6px;
}

.custom-scroll-dropdown::-webkit-scrollbar-track{
  background: #f1f1f1;
  border-radius: 10px;
}

.custom-scroll-dropdown::-webkit-scrollbar-thumb{
  background: #6788ad;
  border-radius: 10px;
}

.custom-scroll-dropdown::-webkit-scrollbar-thumb:hover{
  background: #6788ad;
}

/* Dropdown Items */
.custom-scroll-dropdown .dropdown-item{
  padding: 5px 18px;
  font-size: 15px;
  transition: 0.3s;
}

.custom-scroll-dropdown .dropdown-item:hover{
  background: #6788ad;
  color: #000;
}


/* ================= MAIN NAVBAR ================= */
.main-navbar {
  top: 38px; /* IMPORTANT: pushes navbar below top bar */
  background-color: rgb(244, 239, 239);
}
.navbar:hover{
    color:black;
}

/* Make navbar bigger */
.navbar {
  padding: 16px 0;
}


/* Fix text cutting */
.navbar-nav .nav-link {
  white-space: nowrap;
}

/* Better spacing */
.navbar-nav {
  gap: 10px;
}

.brand-text{
    color: black;
}
.brand-text:hover{
    color:#468c97
}
/* Dropdown */
.dropdown-menu {
  min-width: 250px;
  border-radius: 10px;
  border: none;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
/* Fix dropdown width */
.dropdown-menu {
  min-width: 260px;
  background-color: #e4e1e4;
  
}
.dropdown-item {
  transition: 0.3s;
}

.dropdown-item:hover {
  color: white !important;
  background-color: #b7733a;
  padding-left: 20px;
}
/* Prevent overflow */
/* .navbar .container {
  flex-wrap: nowrap;
} */


/* CTA container */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

/* Common button */
.cta-btn {
  width: 170px;              /* equal size */
  padding: 12px 0;
  text-align: center;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

/* Call button */
.cta-btn.call {
  background: #c076c4;
  color: #000;
}

.cta-btn.call:hover {
  background: #95538d;
}

/* WhatsApp button */
.cta-btn.whatsapp {
  background: #cfc129;
  color: #fff;
}

.cta-btn.whatsapp:hover {
  background: #bdca45;
}





/* ================= BODY FIX ================= */
body {
  padding-top: 120px; /* top bar + navbar space */
}


/* DESKTOP ONLY */
@media (min-width: 992px) {

  .navbar .dropdown-menu {
    display: block;           /* required */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

}



/* ================= MOBILE NAVBAR FIX ================= */
@media (max-width: 991px) {

  /* Fix navbar collapse panel */
  .navbar-collapse {
    background: #f2edf1; /* same as your navbar */
    padding: 15px;
    margin-top: 10px;
    border-radius: 10px;
    z-index: 9999;
  }

  /* Make menu full width */
  .navbar-nav {
    width: 100%;
    align-items: flex-start;
    gap: 0;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 12px 10px;
    border-bottom: 1px solid #ddd;
  }

  /* 🔥 DROPDOWN FIX */
  .dropdown-menu {
    position: static !important;   /* VERY IMPORTANT */
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    
    background: #ffffff;           /* solid background */
    box-shadow: none;
    border-radius: 8px;
    margin-top: 5px;
    padding-left: 10px;
  }

  .dropdown-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
  }

}
/* ================= MOBILE PERFECT NAVBAR ================= */
@media (max-width: 991px) {

  /* 🔥 STOP TITLE MOVING */
  .navbar .container {
    flex-wrap: nowrap !important;
  }

  .navbar-brand {
    flex: 1;
  }

  .navbar-toggler {
    flex-shrink: 0;
  }

  /* 🔥 CENTER DROPDOWN MENU BOX */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    max-width: 320px;

    background: #f2edf1;
    border-radius: 12px;
    padding: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 9999;
  }

  /* 🔥 MENU ITEMS CENTER */
  .navbar-nav {
    width: 100%;
    text-align: center;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
  }

  /* 🔥 DROPDOWN INSIDE BOX */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;

    background: #ffffff;
    border-radius: 8px;
    margin-top: 8px;
    box-shadow: none;
  }

  .dropdown-item {
    text-align: center;
    padding: 10px;
  }

}





@media (max-width: 991px) {

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%); /* 🔥 CENTER MAGIC */

    width: 92%;
    max-width: 360px; /* control size */

    background: #f2edf1;
    padding: 12px;

    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);

    max-height: 70vh;
    overflow-y: auto;

    z-index: 9999;
  }

  /* Center menu text */
  .navbar-nav {
    width: 100%;
    text-align: center;
  }

  .navbar-nav .nav-link {
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }

  /* Dropdown inside */
  .dropdown-menu {
    position: static !important;
    background: #fff;
    border-radius: 6px;
    margin-top: 5px;
  }

}

.top-bar {
  height: 50px;
}

.main-navbar {
  top: 50px;
}








.call-btn{
  background: #090909;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  position: center;

}

.call-btn:hover {
  background: #69b0dd;
}




/* ================================
   FLOATING SIDE BUTTONS
================================ */


.side-buttons {
  position: fixed;
  top: 70%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.side-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  overflow: hidden;
}

.side-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.side-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0,0,0,0.3);
}

/* Mobile */
@media (max-width: 768px) {
  .side-btn {
    width: 40px;
    height: 40px;
  }
}

/* 🔥 MOBILE FIX – STOP FLOATING BUTTON MOVEMENT */
@media (max-width: 768px) {

  .side-buttons {
    top: auto;              /* remove top */
    bottom: 80px;           /* fix position from bottom */
    transform: none;        /* remove translateY */
  }

}







/* ================= HERO SECTION ================= */

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Slider */
.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Each slide */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;

  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Active slide */
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Dark overlay */
.hero-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* ================= HERO CONTENT ================= */

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  text-align: center;
  color: #daf206;
  z-index: 2;

  width: 100%;
  padding: 0 20px;

  animation: fadeUp 1s ease;
}


/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -30%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* ================= TEXT STYLING ================= */

/* Yellow tag */
.hero-tag {
  display: inline-block;
  background: #5b95ae;
  color: #000;
  padding: 10px 22px;
  border-radius: 10px;

  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 500;

  margin-bottom: 15px;
}

/* Big heading */
/* .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 300;
  line-height: 1.2;

  color: rgba(255,255,255,0.95);
  text-align: center;

  letter-spacing: 1px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
} */


/* Subtitle */
.lead {
  font-size: 26px;
  margin-bottom: 10px;
}

/* Location text */
.hero-location {
  font-size: 40px;
  font-weight: 500;
}

/* ===== FORCE FIX (FINAL) ===== */

.hero-title {
  font-size: 50px !important;
   font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-tag {
  font-size: 25px !important;
}

.hero-content .lead {
  font-size: 20px !important;
}

.hero-location {
  font-size: 50px !important;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

  .hero-section {
    height: 80vh;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-tag {
    font-size: 16px;
    padding: 6px 12px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-location {
    font-size: 18px;
  }

}








/* ===================================
   COMPANY SECTION
=================================== */

.company-section{
  padding: 100px 0;
  background: #ffffff;
}

/* GRID */
.company-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===================================
   CONTENT
=================================== */

.company-tag{
  display: inline-block;

  background: #fff4d6;
  color: #d97706;

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 20px;
}

.company-content h2{
  font-size: 48px;
  line-height: 1.3;

  color: #111827;

  margin-bottom: 20px;

  font-weight: 700;
}

.company-text{
  font-size: 17px;
  line-height: 1.8;

  color: #4b5563;

  margin-bottom: 30px;
}

/* SERVICE LIST */
.service-list{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;

  margin-bottom: 35px;
}

.service-item{
  background: #f9fafb;

  padding: 14px 18px;

  border-radius: 12px;

  font-size: 15px;
  font-weight: 500;

  color: #111827;

  transition: 0.3s;
}

.service-item:hover{
  transform: translateY(-4px);
  background: #fff7ed;
}

/* BUTTONS */
.company-buttons{
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-call,
.btn-whatsapp{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 28px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s ease;
}

/* CALL */
.btn-call{
  background: #111827;
  color: #fff;
}

.btn-call:hover{
  background: #000;
  transform: translateY(-3px);
}

/* WHATSAPP */
.btn-whatsapp{
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover{
  transform: translateY(-3px);
}

/* ===================================
   IMAGE
=================================== */

.company-image{
  position: relative;
}

.company-image img{
  width: 100%;
  border-radius: 25px;
  display: block;
}

/* EXPERIENCE BOX */
.experience-box{
  position: absolute;

  bottom: 25px;
  left: -20px;

  background: #ffffff;

  padding: 20px 28px;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.experience-box h3{
  font-size: 36px;
  color: #f59e0b;

  margin-bottom: 5px;
}

.experience-box p{
  font-size: 15px;
  color: #374151;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width: 991px){

  .company-grid{
    grid-template-columns: 1fr;
  }

  .company-content h2{
    font-size: 38px;
  }

  .experience-box{
    left: 20px;
  }
}

@media(max-width: 576px){

  .company-section{
    padding: 70px 0;
  }

  .company-content h2{
    font-size: 30px;
  }

  .company-text{
    font-size: 15px;
  }

  .service-list{
    grid-template-columns: 1fr;
  }

  .company-buttons{
    flex-direction: column;
  }

  .btn-call,
  .btn-whatsapp{
    width: 100%;
  }

  .experience-box{
    position: relative;
    left: 0;
    bottom: 0;

    margin-top: 20px;
    text-align: center;
  }
}






/* ===================================
   MODERN SERVICES SECTION
=================================== */

.modern-services-section{
  padding: 90px 20px;
  background: #f8fafc;
}

/* ===================================
   SECTION HEADER
=================================== */

.section-header{
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 60px;
}

.small-title{
  display: inline-block;

  background: #e0f2fe;
  color: #0284c7;

  padding: 8px 20px;

  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 20px;
}

.section-header h2{
  font-size: 48px;
  font-weight: 700;

  color: #0f172a;

  margin-bottom: 20px;
}

.section-header p{
  font-size: 17px;
  line-height: 1.8;

  color: #475569;
}

/* ===================================
   GRID
=================================== */

.modern-services-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

/* ===================================
   CARD
=================================== */

.modern-card{
  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  transition: 0.4s ease;

  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.modern-card:hover{
  transform: translateY(-8px);

  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.service-image{
  overflow: hidden;
}

.service-image img{
  width: 100%;
  height: 240px;

  object-fit: cover;

  transition: 0.5s ease;

  display: block;
}

.modern-card:hover img{
  transform: scale(1.08);
}

/* CONTENT */
.service-content{
  padding: 22px;
}

.service-content h4{
  font-size: 22px;
  color: #0f172a;

  margin-bottom: 12px;
}

.service-content p{
  font-size: 15px;
  line-height: 1.7;

  color: #64748b;

  margin-bottom: 25px;
}

/* BOTTOM */
.service-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-bottom span{
  font-size: 15px;
}

/* BUTTON */
.service-bottom a{
  background: #0284c7;
  color: #fff;

  padding: 10px 18px;

  border-radius: 30px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition: 0.3s;
}

.service-bottom a:hover{
  background: #0369a1;
}

/* ===================================
   TABLET
=================================== */

@media(max-width: 992px){

  .modern-services-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .section-header h2{
    font-size: 38px;
  }
}


/* ===================================
   MOBILE
=================================== */

@media(max-width: 576px){

  .modern-services-section{
    padding: 70px 15px;
  }

  .modern-services-grid{
    grid-template-columns: 1fr;
  }

  .section-header h2{
    font-size: 30px;
  }

  .section-header p{
    font-size: 15px;
  }

  .service-image img{
    height: 220px;
  }

  .service-content{
    padding: 18px;
  }

  .service-content h4{
    font-size: 20px;
  }

  .service-bottom{
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .service-bottom a{
    width: 100%;
    text-align: center;
  }
}








.gallery-modern {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.gallery-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
  font-size: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}

.gallery-info h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.gallery-btns {
  display: flex;
  gap: 10px;
}

.btn-wa {
  background: #25D366;
  padding: 6px 14px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.btn-wa:hover {
  background: #1ebe5d;
}

.btn-call {
  background: #ff4d4d;
  padding: 6px 14px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.btn-call:hover {
  background: #e60000;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-header h2 {
    font-size: 24px;
  }
} 













 

/* ===================================
   REVIEW SECTION
=================================== */

.review-section{
  padding: 90px 20px;
  background: #f8fafc;
}

/* HEADING */
.review-heading{
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 60px;
}

.review-heading span{
  display: inline-block;

  background: #e0f2fe;
  color: #0284c7;

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 20px;
}

.review-heading h2{
  font-size: 46px;
  color: #0f172a;

  margin-bottom: 20px;
}

.review-heading p{
  font-size: 17px;
  line-height: 1.8;

  color: #64748b;
}

/* GRID */
.review-wrapper{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

/* CARD */
.review-box{
  background: #fff;

  padding: 35px;

  border-radius: 24px;

  position: relative;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  transition: 0.4s ease;
}

.review-box:hover{
  transform: translateY(-8px);
}

/* QUOTE */
.quote-icon{
  font-size: 70px;
  color: #0284c7;

  line-height: 1;

  margin-bottom: 20px;
}

/* TEXT */
.review-box p{
  font-size: 16px;
  line-height: 1.8;

  color: #475569;

  margin-bottom: 30px;
}

/* USER */
.review-user{
  display: flex;
  align-items: center;

  gap: 15px;
}

.review-user img{
  width: 65px;
  height: 65px;

  border-radius: 50%;

  object-fit: cover;
}

.review-user h4{
  font-size: 18px;
  margin-bottom: 4px;

  color: #0f172a;
}

.review-user span{
  font-size: 14px;
  color: #64748b;
}

/* ===================================
   FAQ SECTION
=================================== */

.modern-faq-section{
  padding: 90px 20px;
  background: #ffffff;
}

/* GRID */
.modern-faq-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.faq-left{
  position: relative;
}

.faq-left img{
  width: 100%;
  border-radius: 30px;
  display: block;
}

/* CONTACT BOX */
.faq-contact-box{
  position: absolute;

  bottom: 25px;
  left: 25px;

  background: #ffffff;

  padding: 25px;

  border-radius: 20px;

  max-width: 300px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

.faq-contact-box h3{
  font-size: 24px;
  margin-bottom: 12px;

  color: #111827;
}

.faq-contact-box p{
  font-size: 15px;
  line-height: 1.7;

  color: #64748b;

  margin-bottom: 20px;
}

.faq-contact-box a{
  display: inline-block;

  background: #0284c7;
  color: #fff;

  padding: 12px 22px;

  border-radius: 30px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;
}

/* RIGHT */
.faq-small-title{
  display: inline-block;

  background: #fff7ed;
  color: #ea580c;

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 20px;
}

.faq-right h2{
  font-size: 46px;
  color: #0f172a;

  margin-bottom: 35px;
}

/* FAQ ITEM */
.modern-faq-item{
  background: #f8fafc;

  border-radius: 18px;

  margin-bottom: 18px;

  overflow: hidden;
}

/* QUESTION */
.modern-faq-question{
  width: 100%;

  border: none;
  outline: none;

  background: transparent;

  padding: 22px;

  text-align: left;

  font-size: 17px;
  font-weight: 600;

  color: #111827;

  cursor: pointer;
}

/* ANSWER */
.modern-faq-answer{
  padding: 0 22px 22px;

  font-size: 15px;
  line-height: 1.8;

  color: #64748b;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width: 992px){

  .review-wrapper{
    grid-template-columns: repeat(2,1fr);
  }

  .modern-faq-grid{
    grid-template-columns: 1fr;
  }

  .faq-right h2{
    font-size: 38px;
  }

  .review-heading h2{
    font-size: 38px;
  }
}

@media(max-width: 576px){

  .review-section,
  .modern-faq-section{
    padding: 70px 15px;
  }

  .review-wrapper{
    grid-template-columns: 1fr;
  }

  .review-heading h2,
  .faq-right h2{
    font-size: 30px;
  }

  .review-heading p{
    font-size: 15px;
  }

  .review-box{
    padding: 25px;
  }

  .faq-contact-box{
    position: relative;

    left: 0;
    bottom: 0;

    margin-top: 20px;

    max-width: 100%;
  }

  .modern-faq-question{
    font-size: 15px;
    padding: 18px;
  }

  .modern-faq-answer{
    padding: 0 18px 18px;
  }
}







/* ===================================
   CORE VALUES SECTION
=================================== */

.values-section{
  padding: 100px 20px;
  background: #fcf8f9;
}

/* WRAPPER */
.values-wrapper{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===================================
   LEFT CONTENT
=================================== */

.values-tag{
  display: inline-block;

  background: #fedfdb;
  color: #2563eb;

  padding: 8px 20px;

  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 20px;
}

.values-title{
  font-size: 52px;
  font-weight: 700;

  color: #0f172a;

  margin-bottom: 20px;
}

.values-desc{
  font-size: 17px;
  line-height: 1.8;

  color: #475569;

  margin-bottom: 40px;
}

/* VALUE BOX */
.value-box{
  display: flex;
  align-items: flex-start;

  gap: 18px;

  background: #fff;

  padding: 22px;

  border-radius: 18px;

  margin-bottom: 20px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.05);

  transition: 0.3s ease;
}

.value-box:hover{
  transform: translateY(-5px);
}

/* ICON */
.value-icon{
  min-width: 60px;
  height: 60px;

  background: #2563eb;
  color: #fff;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
}

/* TEXT */
.value-text h4{
  font-size: 22px;
  color: #0f172a;

  margin-bottom: 10px;
}

.value-text p{
  font-size: 15px;
  line-height: 1.7;

  color: #64748b;
}

/* ===================================
   IMAGE SIDE
=================================== */

.values-image{
  position: relative;
}

/* CARD */
.image-card{
  background: #ffffff;

  border-radius: 30px;

  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0,0,0,0.10);
}

/* TOP BAR */
.top-bar{
  background: linear-gradient(135deg,#2563eb,#1d4ed8);

  padding: 25px;
  text-align: center;
}

.top-bar h3{
  color: #fff;

  font-size: 40px;
  font-weight: 700;

  letter-spacing: 2px;
}

/* IMAGE */
.image-card img{
  width: 100%;
  display: block;
}

/* FLOATING BOX */
.floating-box{
  position: absolute;

  bottom: 25px;
  left: 50%;

  transform: translateX(-50%);

  width: 85%;

  background: #fff;

  border-radius: 20px;

  padding: 20px;

  display: flex;
  justify-content: space-around;

  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.floating-box h4{
  font-size: 32px;
  color: #2563eb;

  margin-bottom: 5px;

  text-align: center;
}

.floating-box span{
  font-size: 14px;
  color: #64748b;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width: 992px){

  .values-wrapper{
    grid-template-columns: 1fr;
  }

  .values-title{
    font-size: 40px;
  }

  .top-bar h3{
    font-size: 32px;
  }
}

@media(max-width: 576px){

  .values-section{
    padding: 70px 15px;
  }

  .values-title{
    font-size: 30px;
  }

  .values-desc{
    font-size: 15px;
  }

  .value-box{
    flex-direction: column;
  }

  .value-icon{
    width: 55px;
    height: 55px;

    font-size: 24px;
  }

  .value-text h4{
    font-size: 18px;
  }

  .top-bar h3{
    font-size: 24px;
  }

  .floating-box{
    position: relative;

    width: 100%;

    left: 0;
    bottom: 0;

    transform: none;

    border-radius: 0;
  }
}

.about-paragraph {
  background: #830909;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  margin-top: 20px;
}

.about-paragraph p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin: 0;
}






/* ===== Gallery Section (Safe Prefix gx-) ===== */
.gx-gallery {
  padding: 60px 20px;
  background: #fcf9f9;
}

.gx-container {
  max-width: 1200px;
  margin: auto;
}

.gx-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1d3557;
}

/* Grid Layout */
.gx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 15px;
}

/* Items */
.gx-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

/* Image */
.gx-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
}

/* Hover Animation (WordPress style smooth zoom) */
.gx-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

/* Overlay effect */
.gx-item::after {
  content: "View";
  position: absolute;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: 0.3s;
}

.gx-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Different Sizes */
.gx-big {
  grid-column: span 2;
  grid-row: span 2;
}

.gx-tall {
  grid-row: span 2;
}

.gx-wide {
  grid-column: span 2;
}

/* Responsive */
@media (max-width: 900px) {
  .gx-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gx-grid {
    grid-template-columns: 1fr;
  }
}

/* TABLET */
@media (max-width: 900px) {
  .gx-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  /* RESET SPANS */
  .gx-big,
  .gx-tall,
  .gx-wide {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* MOBILE */
@media (max-width: 500px) {
  .gx-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: 12px;
  }

  /* FORCE ALL ITEMS SAME SIZE */
  .gx-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  /* OPTIONAL: slightly reduce radius for mobile */
  .gx-item {
    border-radius: 10px;
  }

  /* OPTIONAL: reduce overlay text size */
  .gx-item::after {
    font-size: 14px;
  }
}






/* ===================================
   CLEAN FAQ SECTION
=================================== */

.clean-faq-section{
  padding: 100px 20px;
  background: #dde6e5;
}

/* WRAPPER */
.clean-faq-wrapper{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* ===================================
   LEFT SIDE
=================================== */

.faq-mini-title{
  display: inline-block;

  background: #dcfce7;
  color: #15803d;

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 13px;
  font-weight: 600;

  margin-bottom: 20px;
}

.clean-faq-left h2{
  font-size: 58px;
  line-height: 1.2;

  color: #111827;

  margin-bottom: 20px;
}

.clean-faq-left p{
  font-size: 17px;
  line-height: 1.8;

  color: #4b5563;

  margin-bottom: 35px;
}

/* CONTACT CARD */
.faq-contact-card{
  display: flex;
  align-items: center;

  gap: 18px;

  background: #9bbcd2;

  padding: 22px;

  border-radius: 18px;

  margin-bottom: 30px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.faq-contact-icon{
  width: 60px;
  height: 60px;

  background: #15803d;
  color: #fff;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
}

.faq-contact-card h4{
  font-size: 20px;
  color: #111827;

  margin-bottom: 5px;
}

.faq-contact-card span{
  font-size: 15px;
  color: #6b7280;
}

/* BUTTON */
.faq-call-btn{
  display: inline-block;

  background: #15803d;
  color: #fff;

  padding: 14px 32px;

  border-radius: 40px;

  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  transition: 0.3s ease;
}

.faq-call-btn:hover{
  background: #166534;
  transform: translateY(-3px);
}

/* ===================================
   RIGHT SIDE FAQ
=================================== */

.clean-faq-right{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ BOX */
.faq-box{
  background: #d4b2d0;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 8px 20px rgba(0,0,0,0.05);

  transition: 0.3s ease;
}

/* ACTIVE */
.faq-box.active{
  background: #15803d;
}

.faq-box.active .faq-btn{
  color: #fff;
}

.faq-box.active .faq-body{
  color: #e5e7eb;
}

/* BUTTON */
.faq-btn{
  width: 100%;

  border: none;
  outline: none;

  background: transparent;

  padding: 24px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 20px;
  font-weight: 600;

  color: #111827;

  cursor: pointer;
}

/* ANSWER */
.faq-body{
  padding: 0 28px 28px;

  font-size: 16px;
  line-height: 1.8;

  color: #4b5563;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width: 992px){

  .clean-faq-wrapper{
    grid-template-columns: 1fr;
  }

  .clean-faq-left h2{
    font-size: 42px;
  }
}

@media(max-width: 576px){

  .clean-faq-section{
    padding: 70px 15px;
  }

  .clean-faq-left h2{
    font-size: 32px;
  }

  .clean-faq-left p{
    font-size: 15px;
  }

  .faq-btn{
    font-size: 16px;
    padding: 20px;
  }

  .faq-body{
    padding: 0 20px 20px;
    font-size: 14px;
  }

  .faq-contact-card{
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-call-btn{
    width: 100%;
    text-align: center;
  }
}











/* contact form*/
/* SECTION */
.contact-section {
  padding: 60px 0;
  background: #ecedee;
}

/* BOX STYLE */
.contact-box,
.map-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 100%;
}

/* TITLE */
.contact-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: 0.3s;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e91e63;
  box-shadow: 0 0 0 2px rgba(233,30,99,0.15);
  outline: none;
}

/* BUTTONS */
.form-buttons {
  display: flex;
  gap: 10px;
}

.btn-send {
  background: #1e293b;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
}

.btn-reset {
  background: #eee;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
}

/* MAP */
.map-box h4 {
  margin-bottom: 10px;
}

.map-text {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */

@media (max-width: 768px) {
  .form-buttons {
    flex-direction: column;
  }

  .contact-title {
    text-align: center;
  }
}





/* ===================================
   MODERN FOOTER
=================================== */

.modern-footer{
  background: #0f172a;
  color: #fff;

  padding-top: 90px;
}

/* GRID */
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;

  padding-bottom: 60px;
}

/* ===================================
   BRAND
=================================== */

.footer-brand{
  display: inline-block;

  font-size: 34px;
  font-weight: 700;

  color: #fff;

  text-decoration: none;

  margin-bottom: 20px;
}

.footer-text{
  font-size: 16px;
  line-height: 1.8;

  color: #cbd5e1;

  margin-bottom: 30px;
}

/* CONTACT */
.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item{
  font-size: 15px;
  color: #e2e8f0;
}

/* SOCIALS */
.footer-socials{
  display: flex;
  gap: 12px;

  margin-top: 30px;

  flex-wrap: wrap;
}

.footer-socials a{
  background: rgba(255,255,255,0.08);

  color: #fff;

  padding: 10px 18px;

  border-radius: 30px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 500;

  transition: 0.3s ease;
}

.footer-socials a:hover{
  background: #0284c7;
}

/* ===================================
   LINKS
=================================== */

.footer-links h4{
  font-size: 22px;

  margin-bottom: 25px;

  color: #fff;
}

.footer-links ul{
  padding: 0;
  margin: 0;

  list-style: none;
}

.footer-links ul li{
  margin-bottom: 14px;
}

.footer-links ul li a{
  color: #cbd5e1;

  text-decoration: none;

  font-size: 15px;

  transition: 0.3s ease;
}

.footer-links ul li a:hover{
  color: #38bdf8;

  padding-left: 5px;
}
.footer-brand span{
  color: #76db6a;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-links h4{
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.footer-links h4::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #76db6a;
  border-radius: 10px;
}

/* ===================================
   BOTTOM
=================================== */

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.10);

  padding: 25px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  flex-wrap: wrap;

  gap: 15px;
}

.footer-bottom p,
.footer-bottom span{
  margin: 0;

  font-size: 14px;

  color: #94a3b8;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width: 992px){

  .footer-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 576px){

  .modern-footer{
    padding-top: 70px;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand{
    font-size: 28px;
  }

  .footer-links h4{
    font-size: 20px;
  }

  .footer-bottom{
    flex-direction: column;
    text-align: center;
  }
}



/* ===== FIXES (DO NOT REMOVE) ===== */

/* Fix navbar + top bar spacing */
body {
  padding-top: 140px !important;
}

.navbar {
  top: 50px !important;
}

/* Remove invalid position */
.whatsapp-top,
.call-btn {
  position: static !important;
}

.why-choose-list {
  font-weight: 400 !important;
}

@media (max-width: 768px) {
  .hero-location {
    font-size: 20px !important;
  }
}

.call-center-btn {
  animation: none !important;
  transition: transform 0.3s ease;
}

.call-center-btn:hover {
  transform: scale(1.05);
}






 
.scroll-top-btn {
  position: fixed;
  bottom: 16px;
  right: 25px;
  width: 30px;
  height: 30px;
  background: #3cc1d0;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top-btn:hover {
  background: #ccac9b;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

html {
  scroll-behavior: smooth;
}


/* ===== FINAL GAP FIX ===== */

/* Remove navbar offset */
.main-navbar {
  top: 0 !important;
}

/* Fix body offset for fixed navbar */
body {
  padding-top: 90px !important;
}

/* Remove any spacing */
.hero-section {
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove slide spacing */
.hero-slider, .slide {
  margin: 0;
  padding: 0;
}

/* Ensure hero fits correctly */
.hero-section {
  min-height: calc(100vh - 90px);
}



#id1{
  background-color: rgb(215, 226, 218);
}
#id2{
  background-color: rgb(242, 245, 247);
}
#id3{
  background-color: rgb(244, 241, 243);
}
#id4{
  background-color: rgb(237, 246, 243);
}
#id5{
  background-color: rgb(208, 213, 213);
}
#id6{
  background-color: rgb(232, 236, 237);
}

