/* ================================
   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);
}
/* ================= TOP BAR ================= */
.top-bar {
  background: linear-gradient(90deg, #ba2da2, #fdfbfc);
  color: #000;
  font-size: 19px;
  font-weight: 450;
  padding: 6px 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  z-index: 99999;
}

.top-bar .contact-left span {
  margin-right: 20px;
}
i.fa-phone {
  color: black;
}

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


.whatsapp-top:hover {
  background: #c91dcf;
}




/* =========================
   TOP BAR MOBILE FIX
========================= */

@media (max-width: 768px) {

  .top-bar {
    height: auto;              /* allow flexible height */
    padding: 5px 10px;
  }

  .top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;         /* keep in one line */
  }

  .top-bar .contact-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    overflow: hidden;
  }

  .top-bar .contact-left span {
    margin-right: 0;
    font-size: 13px;           /* smaller for mobile */
    white-space: nowrap;
  }

  /* WhatsApp button smaller */
  .whatsapp-top {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 15px;
    flex-shrink: 0;
  }
}





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


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

  background: #ffffff;
  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: #0b5d4f !important;
}

/* Logo FIXED */
.logo {
  height: 80px;   /* 🔥 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: #af41aa !important;
  transform: translateY(-2px);
}




/* 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; /* spreads items nicely */
}
.navbar-brand {
  flex-shrink: 0;
}



/* ================= MAIN NAVBAR ================= */
.main-navbar {
  top: 38px; /* IMPORTANT: pushes navbar below top bar */
  background-color: #f2edf1;
}
.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:#d52fba
}
/* 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: #a64679;
  padding-left: 20px;
}
/* Prevent overflow */
.navbar .container {
  flex-wrap: nowrap;
}

/* ================= 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: #e809ef;
}




/* ================================
   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-location{
  color: white;
  font-size: 20px;
  font-weight: 600;
  
}

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

/* Slider container */
.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 0.8s ease-in-out;
}

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

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

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

.hero-content h1 {
  font-size: 42px;
}

.hero-content p {
  font-size: 18px;
}

.hero-location {
  color: rgb(255, 255, 255);
  font-size: 50px !important;
  font-weight: 400;
}



.hero-location {
  text-align: center;
}

/* center buttons together */
.hero-buttons {
  text-align: center;
  margin-top: 15px;
}

/* call button below and centered */
.call-center-btn {
  display: block;
  margin: 20px auto 0;
  width: fit-content;

  background-color: pink;
  color: black;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;

  animation: blinkBg 3s infinite;
  transition: 0.3s;
}

/* blinking */
@keyframes blinkBg {
  0%   { background-color: rgb(218, 200, 203); }
  50%  { background-color: #975375; }
  100% { background-color: pink; }
}

/* hover */
.call-center-btn:hover {
  background-color: white;
}

@media (max-width: 768px) {

  .hero-section {
    height: 80vh;
  }

  .hero-content {
    top: 50%;
    transform: translateY(-50%);
    padding: 15px;
  }

  .hero-content h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-location {
    color: white;
    font-size: 14px;
  }

  .hero-content h5 {
    font-size: 16px;
  }

  /* Buttons */
  .hero-content .btn {
    font-size: 14px;
    padding: 8px 14px;
    margin-top: 8px;
  }

  /* Stack buttons */
  .hero-content .btn {
    display: block;
    width: 80%;
    margin: 8px auto;
  }
}



/* About Section */
#about {
  background: #f8f9fa;
  padding: 80px 0;
}

/* Heading */
.about-heading {
  font-size: 42px;
  font-weight: 700;
  color: #0b1f2a;
  margin-bottom: 20px;
}

/* Paragraph */
#about .lead {
  font-size: 17px;
  color: black;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Bold text highlight */
#about b {
  color: #080808;
}

/* Layout spacing */
#about .container {
  max-width: 1200px;
}

/* Optional: Two-column layout like image */
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Left content */
.about-text {
  flex: 1;
}

.about-heading {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

/* small underline */
.about-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;        /* underline length */
  height: 5px;
  background: #db6bae; /* pink color */
  border-radius: 2px;
}


/* Right image */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-heading {
    font-size: 28px;
  }

  #about .lead {
    font-size: 15px;
  }
}
@media (max-width: 768px) {

  /* Remove left shift */
  .mission-list {
    margin-left: 0 !important;
    padding-left: 20px;
  }

  /* Center heading */
  .mission-section h4 {
    text-align: center !important;
    margin-left: 0 !important;
  }

  /* Center column */
  .mission-section .col-md-6 {
    text-align: center;
  }

}




/* Headings common */
.mission-section h4 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
}

/* Pink underline */
.mission-section h4::after {
  content: "";
  width: 40px;
  height: 5px;
  background: #ff4da6;
  position: absolute;
  bottom: -6px;
  left: 0;
  border-radius: 5px;
}
.why-choose-list{
    font-size: 23px;
    color:black;
    font-size: 400;
}
.mission-list{
    font-size: 23px;
    color:black;
    font-weight: 400;
}

.mission-list {
  margin-left: 70px; /* move right */
}
.why-choose-list{
    margin-left: 70px;

}
/* 👇 Move40 headings opposite directions */

/* Our Mission → move right */
.mission-section .col-md-6:first-child h4 {
  margin-left: 100px; /* adjust this value */
}

/* Why Choose Us → move left */
.mission-section .col-md-6:last-child h4 {
  margin-left: 40px; /* adjust this value */
}


/* Custom button */
.btn-custom {
  background-color: #000000;   /* white background */
  color: #e7e4e4;              /* black text */
  border: 2px solid #000;      /* black border */
  padding: 9px 20px;

  font-weight: 600;
  border-radius:8px;
  transition: 0.3s ease;
}

/* Hover effect */
.btn-custom:hover {
  background-color: #b45c8b;
  color: #faf9f9;
}

.btn-wrapper {
  display: flex;
  justify-content: flex-start; /* keep it left */
  padding-left: 100px;          /* give space from left like image */
  margin-top: 20px;
}




/* Section spacing */
#services {
  background: #f8f9fa;
}

/* Heading style */
#services h2 {
    font-size: 45px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

/* Underline for heading */
#services h2::after {
  content: "";
  width: 60px;
  height: 5px;
  background: #a04d89;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Card styling */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: #fff;
}

/* Hover effect */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Image styling */
.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Card body */
.card-body {
  padding: 20px;
}

/* Title link */
.service-title {
  text-decoration: none;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2a3a;
  margin-bottom: 10px;
  transition: 0.3s;
}

/* Title hover */
.service-title:hover .card-title {
  color: #b45c8b;
}

/* Description text */
.card-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Grid spacing fix */
.row.g-4 {
  row-gap: 25px;
}

.btn-primary{
    color:#e4e2e4;
    background-color: #000000;
}
.btn-primary:hover{
    background-color:#ba57ad;
}



/* SERVICES SECTION */
#services {
  background: #f9fafb;
}

/* card style */
#services .card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* hover effect */
#services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* image zoom effect */
#services .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

#services .card:hover .card-img-top {
  transform: scale(1.08);
}

/* title */
.service-title h5 {
  color: #0f172a;
  font-weight: 600;
  transition: 0.3s;
}

.service-title:hover h5 {
  color: #0f9d58;
}

/* text */
.card-text {
  font-size: 14px;
  color: #555;
}

/* =========================
   SERVICES MOBILE UI FIX
========================= */

/* Tablet */
@media (max-width: 991px) {
  #services .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  #services .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #services h2 {
    text-align: center;
    font-size: 24px;
  }

  .card {
    margin-bottom: 15px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-text {
    font-size: 14px;
  }
}








  /* Gallery Section  */

  .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #222;
  position: relative;
  margin-bottom: 30px;
}

/* Middle underline */
.section-title::after {
  content: "";
  display: block;
  width: 60px;          /* underline size */
  height: 5px;
  background-color: #c1709b; /* pink color */
  margin: 10px auto 0;  /* center underline */
  border-radius: 2px;
}

.mb-4{
    color:black;
    font-size: 16px;
}

/* gallery grid */
/* Container */
.gallery-container {
  padding: 40px 0;
}

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

/* Default item */
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

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

/* Hover zoom */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Different sizes (WordPress style feel) */
.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* Animation base */
.gallery-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

/* From left */
.gallery-item.fade-left {
  transform: translateX(-60px);
}

/* From right */
.gallery-item.fade-right {
  transform: translateX(60px);
}

/* Active (when visible) */
.gallery-item.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

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

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}




/*TESTIMONIALS*/

.testimonials-section {
  padding: 60px 20px;
  background: #f4f3f3;
  text-align: center;
}

.testimonials-title {
    color: rgb(13, 13, 13);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

/* underline */
.testimonials-title::after {
  content: "";
  width: 70px;
  height: 5px;
  background: #ad59ad;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* GRID */
.testimonial-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.testimonial-card {
  background: #c5a7bc;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

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

/* stars */
.stars {
  color: #a53d9d;
  font-size: 18px;
  margin-bottom: 10px;
}

/* text */
.testimonial-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

/* name */
.testimonial-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

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







/* areaas we serve */


.areas-section {
  padding: 70px 20px;
  background: rgb(222, 222, 222);
}

/* subtitle */
.section-subtitle {
  color: #ccb6cd;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* title */
.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

/* description */
.section-desc {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
}

/* areas container */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* buttons */
.area-btn {
  padding: 10px 20px;
  border: 1px solid #d1d5db;
  border-radius: 50px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

/* hover */
.area-btn:hover {
  background: #e5f4ee;
  border-color: #7e5777;
  color: #805075;
}

/* active highlight */
.area-btn.active {
  background: #e5f4ee;
  border-color: #875879;
  color: #8c5780;
}

/* bigger last button */
.area-btn.big {
  padding: 12px 30px;
  font-weight: 600;
}



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

/* 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;
  }
}
















































/* =====================
   PRE FOOTER
===================== */

.pre-footer {
  background-color: #1f2a3a;
  padding: 70px 0 40px;
  color: #cfd6e1;
  font-size: 17px;
}

.footer-box {
  height: 100%;
}

.footer-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background-color: #f5d11c;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer-desc {
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #f5d11c;
}

/* Contact */
.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffc107;
}

/* Social icons */
.social-icons a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: #f5d11c;
  color: #000;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: translateY(-4px);
}

/* Mobile */
@media (max-width: 768px) {
  .pre-footer .row > div {
    margin-bottom: 20px;
  }
}

/* footer */
.main-footer {
  background: linear-gradient(135deg, #0b1320, #111c2e);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.main-footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.main-footer .col {
  flex: 1;
  min-width: 220px;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
}

.logo-text span {
  color: #ff4da6;
}

.main-footer h3 {
  margin-bottom: 15px;
  position: relative;
}

.main-footer h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #ff4da6;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.main-footer ul {
  list-style: none;
  padding: 0;
}

.main-footer ul li {
  margin: 10px 0;
}

.main-footer ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.main-footer ul li a:hover {
  color: #ff4da6;
  padding-left: 5px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #ff4da6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #ff4da6;
}

/* Contact spacing */
.mt {
  margin-top: 20px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}














/* ===== 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;
}

/* Fix font weight issue */
.why-choose-list {
  font-weight: 400 !important;
}

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

/* Remove blinking, make smooth */
.call-center-btn {
  animation: none !important;
  transition: transform 0.3s ease;
}

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

/* Prevent text breaking */
.navbar-nav .nav-link {
  white-space: nowrap !important;
}

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden !important;
}

/* Smooth animation */
.scroll-animate {
  will-change: transform, opacity;
}

/* =========================
   FINAL NAVBAR FIX (CLEAN)
========================= */

/* Proper spacing for top bar + navbar */
.main-navbar {
  top: 50px; /* exact height of top bar */
}

/* Fix navbar height & alignment */
/* .navbar {
  height: 80px;
  padding: 0 20px;
  display: flex;
  align-items: center;
} */

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

/* Logo fix */
.logo {
  height: 50px;
  width: auto;
}

/* Brand text */
/* .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
} */

/* Nav menu center alignment */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Nav links clean */
.navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 10px;
}

/* Remove extra stretching */
.navbar-nav {
  flex: unset;
}

/* Fix toggle button position (mobile) */
.navbar-toggler {
  border: none;
  outline: none;
}

/* Remove unwanted body spacing conflicts */
/* body {
  padding-top: 130px; 
} */

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

  .main-navbar {
    top: 50px;
  }

  .navbar {
    height: auto;
    padding: 10px 15px;
  }

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

  .logo {
    height: 40px;
  }

  .navbar-collapse {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
  }

  .navbar-nav {
    gap: 5px;
  }

  .navbar-nav .nav-link {
    font-size: 15px;
    padding: 10px;
  }
}

 */


 
.scroll-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: #b94a82;
  color: #fff;
  font-size: 22px;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}










.logo {
  height: 55px;   /* 🔥 reduced */
  width: auto;
}
