/* ================================
   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: 50px;   /* 🔥 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: #40809d !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: #f0f3f5;
}
.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:#256e53
}
/* 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: #256e53;
  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: #f0f3f5; /* 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: #256e53;
}




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

}





.side-btn.call{
    border-radius:50%;
    animation:callAttention 1.5s infinite;
}

.side-btn.call img{
    display:block;
    border-radius:50%;
    width:100%;
    height:100%;
}

@keyframes callAttention{

    0%{
        transform:scale(1) rotate(0deg);
        box-shadow:0 0 0 0 rgba(255,0,0,0.7);
    }

    10%{
        transform:scale(1.08) rotate(-10deg);
    }

    20%{
        transform:scale(1.08) rotate(10deg);
    }

    30%{
        transform:scale(1.08) rotate(-10deg);
    }

    40%{
        transform:scale(1.08) rotate(10deg);
    }

    50%{
        transform:scale(1.12);
        box-shadow:0 0 0 20px rgba(255,0,0,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(255,0,0,0);
    }
}




.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.3);
  z-index: 1;
}

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

.hero-content h1 {
  font-size: 37px;
  color:rgb(255, 255, 255)
}

.hero-content p {
  font-size: 15px;
color:rgb(251, 251, 251)

}

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



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

/* center buttons together */
.hero-buttons {
  text-align: center;
  margin-top: 15px;
}
.hero-buttons{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
}

/* BUTTON STYLE */
.hero-buttons a{
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: 0.4s ease;
}

/* CALL BUTTON */
.hero-buttons .call-btn{
  background: linear-gradient(45deg, #ff2f92, #ff6a00);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 47, 146, 0.25);
}

.hero-buttons .call-btn:hover{
  transform: translateY(-4px);
  color: #fff;
}

/* WHATSAPP BUTTON */
.hero-buttons .whatsapp-btn{
  background: #25d366;
  color: #ab2b2b;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.hero-buttons .whatsapp-btn:hover{
  transform: translateY(-4px);
  color: #c34949;
}

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

  .hero-buttons{
    gap: 15px;
  }

  .hero-buttons a{
    width: 100%;
    text-align: center;
  }

}

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



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






/* HERO HEADING */
.hero-heading{
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
#id1{
    color:rgb(255, 255, 255);
}
#id2{
    color:white;
}

.hero-heading span{
  color: #c00b0b;
  position: relative;
}

/* OPTIONAL UNDERLINE EFFECT */
.hero-heading span::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  border-radius: 10px;
}

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

  .hero-heading{
    font-size: 38px;
    line-height: 1.3;
  }

}

.hero-location{
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
  margin-top: 15px;
}



.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: 50px;   /* 🔥 reduced */
  width: auto;
}








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

.modern-services{
    padding:100px 0;
    background:#d5dfe9;
}

.section-header{
    max-width:800px;
    margin:0 auto 70px;
}

.section-header span{
    display:inline-block;
    padding:8px 18px;
    background:#ffe5e5;
    color:#e63946;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-header h2{
    font-size:3rem;
    font-weight:800;
    margin:20px 0;
    color:#0f172a;
}

.section-header p{
    color:#121212;
    font-size:1.05rem;
    line-height:1.8;
}

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

.service-card{
    height:100%;
    background:#e1e8e7;
    border-radius:24px;
    overflow:hidden;
    position:relative;
    transition:.45s;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* top border animation */

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    /* background:linear-gradient(
    90deg,
    #e9e3e3,
    #ff7b7b); */
}

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

.service-img{
    height:250px;
    overflow:hidden;
}

.service-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.service-card:hover .service-img img{
    transform:scale(1.12);
}

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

.service-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    height:calc(100% - 250px);
}

.service-content h3{
    font-size:1.35rem;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
}

.service-content p{
    color:#0e0e0e;
    line-height:1.8;
    margin-bottom:25px;
    flex-grow:1;
}

/* ==========================
   BUTTON
========================== */

.service-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;

    padding:13px 26px;

    background:linear-gradient(
    135deg,
    #1b7a69,
    #155a52);

    color:#fff;
    border-radius:50px;

    font-weight:600;
    transition:.35s;
}

.service-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(230,57,70,.35);
}

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

@media(max-width:991px){

.section-header h2{
    font-size:2.3rem;
}

.service-img{
    height:220px;
}

}

@media(max-width:768px){

.modern-services{
    padding:70px 0;
}

.section-header{
    margin-bottom:40px;
}

.section-header h2{
    font-size:1.9rem;
}

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

.service-card{
    border-radius:18px;
}

.service-img{
    height:220px;
}

.service-content{
    padding:22px;
}

.service-content h3{
    font-size:1.15rem;
}

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

.service-btn{
    width:100%;
}
}

/* ==========================
   EXTRA PREMIUM HOVER
========================== */

.service-card:hover h3{
    color:#c81423;
}





/* ===========================
   WHY CHOOSE US
=========================== */

/* .why-us-section{
    padding:100px 0;
    background:#c5eedb;
    overflow:hidden;
} */
.why-us-section{
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(194, 114, 184, 0.8) 0%, transparent 30%),
        radial-gradient(circle at bottom right, rgba(205, 146, 210, 0.7) 0%, transparent 35%),
        linear-gradient(135deg, #78a890, #d6f5e5);
    overflow: hidden;
}

.why-header{
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.section-tag{
    display:inline-block;
    padding:10px 22px;
    background:#fff;
    color:#e63946;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.why-header h2{
    font-size:3.2rem;
    font-weight:800;
    margin:25px 0;
    color:#0f172a;
    line-height:1.2;
}

.why-header h2 span{
    color:#c73f3f;
}

.why-header p{
    font-size:1.1rem;
    color:#111112;
    line-height:1.9;
}

.why-wrapper{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:50px;
    align-items:center;
}

/* FEATURES */

.why-features{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.feature-box{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#fff;
    padding:28px;
    border-radius:22px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.1);
}

.feature-icon{
    min-width:70px;
    width:70px;
    height:70px;
    border-radius:18px;
    background:linear-gradient(135deg,#e63946,#ff6b6b);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.feature-box h3{
    font-size:1.4rem;
    margin-bottom:10px;
    color:#0f172a;
    font-weight:700;
}

.feature-box p{
    margin:0;
    color:#101011;
    line-height:1.8;
}

/* IMAGE */

.why-image{
    position:relative;
}

.why-image img{
    width:100%;
    border-radius:30px;
    display:block;
    box-shadow:0 30px 60px rgba(0,0,0,.15);
    transition:.5s;
}

.why-image:hover img{
    transform:scale(1.03);
}

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

@media(max-width:991px){

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

.why-image{
    order:-1;
}

.why-header h2{
    font-size:2.5rem;
}

}

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

@media(max-width:768px){

.why-us-section{
    padding:70px 0;
}

.why-header{
    margin-bottom:40px;
}

.why-header h2{
    font-size:1.9rem;
}

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

.feature-box{
    padding:20px;
    gap:15px;
}

.feature-icon{
    width:55px;
    height:55px;
    min-width:55px;
    font-size:20px;
}

.feature-box h3{
    font-size:1.1rem;
}

.feature-box p{
    font-size:14px;
    line-height:1.7;
}

.why-image img{
    border-radius:20px;
}

}






/* ==========================
   GALLERY SECTION
========================== */

.modern-gallery{
    padding:100px 0;
    background:#f5f1f4;
}

.gallery-header{
    max-width:800px;
    margin:auto;
    margin-bottom:60px;
}

.gallery-header span{
    display:inline-block;
    background:#ffe5e5;
    color:#e63946;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
}

.gallery-header h2{
    font-size:3rem;
    font-weight:800;
    margin:20px 0;
    color:#0f172a;
}

.gallery-header p{
    color:#64748b;
    line-height:1.8;
}

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

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:220px;
    gap:20px;
}

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

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.gallery-item:hover img{
    transform:scale(1.12);
}

.gallery-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
    to top,
    rgba(0,0,0,.35),
    transparent);
    opacity:0;
    transition:.4s;
}

.gallery-item:hover::after{
    opacity:1;
}

/* JUMBLE SIZES */

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

.gallery-item.tall{
    grid-row:span 2;
}

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

@media(max-width:991px){

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

.gallery-header h2{
    font-size:2.4rem;
}

}

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

@media(max-width:768px){

.modern-gallery{
    padding:70px 0;
}

.gallery-header h2{
    font-size:2rem;
}

.gallery-grid{
    grid-template-columns:1fr;
    grid-auto-rows:250px;
}

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

.gallery-item{
    border-radius:18px;
}

}






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

.faq-split-section{
    display:grid;
    grid-template-columns:45% 55%;
    gap:60px;
    align-items:center;
    padding:100px 5%;
    background:
        radial-gradient(circle at top left, rgba(72,149,239,.08) 0%, transparent 30%),
        radial-gradient(circle at bottom right, rgba(0,180,216,.08) 0%, transparent 30%),
        #f8fbff;
    overflow:hidden;
}

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

.faq-image-side{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.faq-image-side img{
    width:100%;
    max-width:480px;
    height:600px;
    object-fit:cover;
    border-radius:30px;
    border:8px solid #fff;
    box-shadow:0 30px 80px rgba(0,0,0,.12);
    transition:.4s;
}

.faq-image-side img:hover{
    transform:translateY(-8px);
}

/* Floating Cards */

.floating-box{
    position:absolute;
    background:#fff;
    padding:18px 25px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
    z-index:2;
}

.floating-box h3{
    margin:0;
    font-size:28px;
    color:#0d47a1;
    font-weight:700;
}

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

.box-1{
    top:12%;
    right:0;
}

.box-2{
    bottom:12%;
    left:0;
}

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

.faq-content-side{
    position:relative;
}

.section-heading{
    margin-bottom:50px;
}

.section-heading span{
    display:inline-block;
    color:#0077ff;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:52px;
    line-height:1.1;
    color:#08224d;
    margin-bottom:15px;
}

.section-heading p{
    color:#666;
    font-size:16px;
    line-height:1.8;
    max-width:600px;
}

/* =========================
   TIMELINE FAQ
========================= */

/* =========================
   FAQ TIMELINE
========================= */

.faq-timeline{
    position:relative;
    padding-left:25px;
}

.faq-timeline::before{
    content:'';
    position:absolute;
    left:13px;
    top:0;
    width:3px;
    height:100%;
    background:linear-gradient(to bottom,#0d6efd,#00b4d8);
}

.faq-item{
    display:flex;
    gap:25px;
    margin-bottom:25px;
    position:relative;
}

.faq-dot{
    width:28px;
    height:28px;
    min-width:28px;
    border-radius:50%;
    background:#0d6efd;
    border:5px solid #fff;
    box-shadow:0 0 0 5px rgba(13,110,253,.15);
    margin-top:20px;
    z-index:2;
}

.faq-content{
    flex:1;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s ease;
    position:relative;
}

.faq-content:hover{
    transform:translateX(5px);
}

.faq-content::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:4px;
    background:linear-gradient(90deg,#0d6efd,#00b4d8);
    transition:.4s ease;
}

.faq-content:hover::before{
    width:100%;
}

/* =========================
   QUESTION
========================= */

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:24px 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
    cursor:pointer;
    font-size:20px;
    font-weight:600;
    color:#08224d;
}

.faq-question span{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:50%;
    background:#f1f7ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#0d6efd;
    transition:.3s ease;
}

/* =========================
   ANSWER
========================= */

.faq-answer{
    max-height:0;
    overflow:hidden;
    padding:0 28px;
    color:#666;
    line-height:1.8;
    transition:max-height .4s ease,padding .4s ease;
}

.faq-item.active .faq-answer{
    max-height:250px;
    padding:0 28px 25px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

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

@media (max-width:991px){

    .faq-timeline{
        padding-left:20px;
    }

    .faq-item{
        gap:18px;
    }

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

    .faq-answer{
        font-size:15px;
    }

    .faq-dot{
        width:24px;
        height:24px;
        min-width:24px;
    }
}

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

@media (max-width:768px){

    .faq-timeline{
        padding-left:15px;
    }

    .faq-timeline::before{
        left:10px;
    }

    .faq-item{
        gap:12px;
        margin-bottom:18px;
    }

    .faq-dot{
        width:20px;
        height:20px;
        min-width:20px;
        margin-top:18px;
        border-width:3px;
    }

    .faq-content{
        border-radius:15px;
    }

    .faq-question{
        padding:16px;
        font-size:16px;
        line-height:1.5;
    }

    .faq-question span{
        width:34px;
        height:34px;
        min-width:34px;
        font-size:20px;
    }

    .faq-answer{
        padding:0 16px;
        font-size:14px;
        line-height:1.7;
    }

    .faq-item.active .faq-answer{
        padding:0 16px 16px;
        max-height:300px;
    }
}

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

@media (max-width:480px){

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

    .faq-question span{
        width:30px;
        height:30px;
        min-width:30px;
        font-size:18px;
    }

    .faq-answer{
        font-size:13px;
    }
}




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

@media (max-width: 768px){

    .faq-split-section{
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }

    /* Image Side */

    .faq-image-side{
        order: 1;
        padding: 0;
    }

    .faq-image-side img{
        max-width: 100%;
        width: 100%;
        height: 400px;
        border-radius: 25px;
    }

    /* Floating Cards */

    .floating-box{
        padding: 12px 18px;
        border-radius: 15px;
    }

    .floating-box h3{
        font-size: 22px;
    }

    .floating-box span{
        font-size: 13px;
        line-height: 1.4;
    }

    .box-1{
        top: 20px;
        left: 15px;
        right: auto;
    }

    .box-2{
        bottom: 20px;
        right: 15px;
        left: auto;
    }

    /* Content Side */

    .faq-content-side{
        order: 2;
        width: 100%;
    }

    .section-heading{
        text-align: center;
        margin-bottom: 35px;
    }

    .section-heading span{
        font-size: 14px;
        letter-spacing: 2px;
    }

    .section-heading h2{
        font-size: 38px;
        line-height: 1.2;
        margin-top: 10px;
        word-break: break-word;
    }

    /* Timeline */

    .faq-timeline{
        padding-left: 25px;
    }

    .faq-question{
        font-size: 16px;
        line-height: 1.5;
        padding: 18px;
    }

    .faq-answer{
        font-size: 15px;
        line-height: 1.7;
        padding: 0 18px 18px;
    }

    .faq-dot{
        width: 16px;
        height: 16px;
        left: -33px;
    }
}


/* Extra Small Devices */

@media (max-width: 480px){

    .faq-split-section{
        padding: 50px 15px;
    }

    .faq-image-side img{
        height: 320px;
    }

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

    .floating-box{
        padding: 10px 14px;
    }

    .floating-box h3{
        font-size: 20px;
    }

    .floating-box span{
        font-size: 12px;
    }

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

    .faq-answer{
        font-size: 14px;
    }
}





.coverage-cta-section{
    padding:100px 5%;
    background:
    linear-gradient(135deg,#8ea8be 0%,#b6bcc3 100%);
    overflow:hidden;
}

.coverage-wrapper{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1.4fr .9fr;
    gap:50px;
    align-items:center;
}

.coverage-content{
    background:#fff;
    padding:50px;
    border-radius:35px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    position:relative;
}

.coverage-content::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    top:-60px;
    right:-60px;
    border-radius:50%;
    background:rgba(0,123,255,.08);
}

.section-tag{
    display:inline-block;
    background:#e8f2ff;
    color:#0d6efd;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.coverage-content h2{
    font-size:48px;
    line-height:1.2;
    margin-bottom:20px;
    color:#08224d;
}

.coverage-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
    font-size:17px;
}

.location-tags{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.location-tags a{
    text-decoration:none;
    padding:12px 20px;
    border-radius:50px;
    background:#f3f7ff;
    color:#08224d;
    font-weight:600;
    transition:.3s;
}

.location-tags a:hover{
    background:#0d6efd;
    color:#fff;
}

/* CTA CARD */

.coverage-card{
    background:
    linear-gradient(135deg,#e053b8,#00b4d8);
    color:#fff;
    padding:50px;
    border-radius:35px;
    text-align:center;
    box-shadow:0 25px 70px rgba(13,110,253,.25);
}

.coverage-icon{
    width:90px;
    height:90px;
    background:rgba(255,255,255,.15);
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    margin-bottom:25px;
}

.coverage-card h3{
    font-size:34px;
    margin-bottom:15px;
}

.coverage-card p{
    line-height:1.8;
    margin-bottom:35px;
    opacity:.95;
}

.coverage-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.call-btn,
.whatsapp-btn{
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.call-btn{
    background:#fff;
    color:#0d6efd;
}

.whatsapp-btn{
    background:#40a063;
    color:#fff;
}

.call-btn:hover,
.whatsapp-btn:hover{
    transform:translateY(-4px);
}

/* TABLET */

@media(max-width:991px){

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

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

/* MOBILE */

@media(max-width:768px){

    .coverage-cta-section{
        padding:70px 20px;
    }

    .coverage-content,
    .coverage-card{
        padding:30px;
        border-radius:25px;
    }

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

    .coverage-card h3{
        font-size:26px;
    }

    .location-tags{
        gap:10px;
    }

    .location-tags a{
        padding:10px 15px;
        font-size:14px;
    }

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

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



.specifications-section{
    padding:100px 5%;
    background:#e5e6e7;
}

.spec-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
background:
linear-gradient(135deg,#d287ab,#f3faff),
url("https://svgshare.com/i/17Xk.svg");
background-size:cover;    border:1px solid #e5e5e5;
    border-radius:20px;
    padding:70px;
}

.spec-tag{
    display:inline-block;
    color:#0d5bd3;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
    letter-spacing:1px;
}

.spec-content h2{
    font-size:60px;
    line-height:1.1;
    margin-bottom:40px;
    color:#072c27;
}

.spec-list{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.spec-item{
    display:grid;
    grid-template-columns:40px 140px 40px 1fr;
    align-items:center;
    gap:10px;
}

.spec-icon{
    color:#0d5bd3;
    font-size:28px;
    font-weight:bold;
}

.spec-item h4{
    font-size:20px;
    color:#072c27;
    margin:0;
}

.line{
    width:30px;
    height:2px;
    background:#222;
}

.spec-item p{
    margin:0;
    color:#090909;
    line-height:1.5;
    font-size:17px;
}

/* IMAGE SIDE */

.spec-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.blue-bg{
    position:absolute;
    width:80%;
    height:85%;
    right:0;
    top:50%;
    transform:translateY(-50%);
    background:#0d5bd3;
    border-radius:10px;
}

.spec-image img{
    position:relative;
    width:100%;
    max-width:500px;
    border-radius:10px;
    z-index:2;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

/* TABLET */

@media(max-width:991px){

    .spec-container{
        grid-template-columns:1fr;
        padding:50px;
    }

    .spec-content h2{
        font-size:42px;
    }

    .spec-image{
        margin-top:30px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .specifications-section{
        padding:70px 20px;
    }

    .spec-container{
        padding:25px;
        gap:40px;
    }

    .spec-content h2{
        font-size:32px;
    }

    .spec-item{
        grid-template-columns:30px 1fr;
        gap:10px;
    }

    .line{
        display:none;
    }

    .spec-item p{
        grid-column:2;
        margin-top:5px;
        font-size:15px;
    }

    .spec-item h4{
        font-size:18px;
    }

    .blue-bg{
        width:90%;
        height:90%;
    }
}






.premium-pricing-section{
    position:relative;
    padding:120px 5%;
    overflow:hidden;
    background:
    linear-gradient(
        -45deg,
        #0f172a,
        #112240,
        #0a4d68,
        #134e4a
    );
    background-size:400% 400%;
    animation:bgMove 12s ease infinite;
}

@keyframes bgMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

/* FLOATING SHAPES */

.pricing-bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.shape1{
    width:350px;
    height:350px;
    background:#00d4ff55;
    top:-100px;
    left:-100px;
}

.shape2{
    width:300px;
    height:300px;
    background:#00ff8850;
    bottom:-100px;
    right:-100px;
}

/* HEADER */

.pricing-header{
    max-width:900px;
    margin:auto;
    text-align:center;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.pricing-tag{
    display:inline-block;
    padding:12px 25px;
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(10px);
    color:#fff;
    border-radius:50px;
    margin-bottom:25px;
    font-weight:600;
}

.pricing-header h2{
    font-size:58px;
    color:#fff;
    margin-bottom:25px;
    line-height:1.2;
}

.pricing-header p{
    color:#d7e3e7;
    font-size:18px;
    line-height:1.9;
}

/* CARDS */

.pricing-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

.price-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:25px;
    padding:35px;
    text-align:center;
    transition:.4s;
    color:#fff;
}

.price-card:hover{
    transform:translateY(-12px);
}

.featured{
    background:linear-gradient(
        135deg,
        #00b894,
        #00d26a
    );
    position:relative;
}

.popular-badge{
    position:absolute;
    top:-12px;
    right:20px;
    background:#fff;
    color:#111;
    padding:8px 15px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
}

.price-icon{
    font-size:45px;
    margin-bottom:15px;
}

.price-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.price{
    font-size:60px;
    font-weight:800;
    color:#fff;
    line-height:1;
}

.price-card span{
    display:block;
    margin-bottom:25px;
    color:#e6f7f0;
}

.price-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.price-card ul li{
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
}

/* MOBILE */

@media(max-width:1100px){

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

}

@media(max-width:768px){

    .premium-pricing-section{
        padding:80px 20px;
    }

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

    .pricing-header h2{
        font-size:34px;
    }

    .pricing-header p{
        font-size:16px;
    }

    .price{
        font-size:48px;
    }
}







.reviews-showcase{
    padding:120px 5%;
    background:
    radial-gradient(circle at top left,#75a1b6 0%,transparent 25%),
    radial-gradient(circle at bottom right,#85a495 0%,transparent 25%),
    #f1f3f6;
    overflow:hidden;
}

.reviews-heading{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.reviews-heading span{
    display:inline-block;
    background:#e8f2ff;
    color:#0d6efd;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.reviews-heading h2{
    font-size:58px;
    color:#08224d;
    margin-bottom:20px;
}

.reviews-heading p{
    color:#080808;
    line-height:1.8;
}

/* Stats */

.review-stats{
    display:flex;
    justify-content:center;
    gap:25px;
    margin:60px 0;
    flex-wrap:wrap;
}

.stat-box{
    background:#dbc8db;
    min-width:240px;
    padding:35px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.07);
}

.stat-box h3{
    font-size:48px;
    color:#0d6efd;
    margin-bottom:10px;
}

.stat-box span{
    color:#666;
}

/* Marquee */

.reviews-marquee{
    overflow:hidden;
    margin-top:20px;
}

.reviews-track{
    display:flex;
    width:max-content;
    gap:25px;
    animation:scrollReviews 30s linear infinite;
}

.review-pill{
    background: #93c2d5;
    padding:20px 30px;
    border-radius:100px;
    white-space:nowrap;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    font-weight:500;
}

@keyframes scrollReviews{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* Mobile */

@media(max-width:768px){

    .reviews-showcase{
        padding:80px 20px;
    }

    .reviews-heading h2{
        font-size:34px;
    }

    .stat-box{
        width:100%;
        min-width:100%;
    }

    .review-pill{
        font-size:14px;
        padding:16px 22px;
    }

}


/* =========================
   CONTACT + MAP
========================= */

.contact-location-section{
    padding:120px 5%;
    background:
    linear-gradient(135deg,#f8fbff,#eef7ff);
    overflow:hidden;
}

.contact-wrapper{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

/* =========================
   FORM SIDE
========================= */

.contact-form-box{
    background:#d6bfdc;
    padding:50px;
    border-radius:35px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    position:relative;
}

.contact-form-box::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:#0d6efd15;
    border-radius:50%;
    top:-60px;
    right:-60px;
}

.section-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:#e8f2ff;
    color:#2c735f;
    font-weight:700;
    margin-bottom:20px;
}

.contact-form-box h2{
    font-size:46px;
    color:#08224d;
    margin-bottom:15px;
}

.contact-form-box p{
    color:#666;
    margin-bottom:35px;
    line-height:1.8;
}

.input-group{
    margin-bottom:18px;
}

.input-group input,
.input-group select,
.input-group textarea{
    width:100%;
    padding:16px 20px;
    border:none;
    background:#f5f8fd;
    border-radius:16px;
    font-size:15px;
    outline:none;
}

.input-group textarea{
    min-height:130px;
    resize:none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{
    box-shadow:0 0 0 3px rgba(13,110,253,.15);
}

.submit-btn{
    width:100%;
    border:none;
    padding:18px;
    border-radius:16px;
    cursor:pointer;
    color:#ffffff;
    font-size:16px;
    font-weight:700;
    background:linear-gradient(
        135deg,
        #357588,
        #00b4d8
    );
    transition:.3s;
}

.submit-btn:hover{
    transform:translateY(-4px);
}

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

.location-side{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.contact-mini-card{
    background:#ebe9e9;
    padding:25px;
    border-radius:25px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.icon-box{
    width:55px;
    height:55px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        #2b615b,
        #00b4d8
    );
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.contact-mini-card h4{
    color:#08224d;
    margin-bottom:5px;
}

.contact-mini-card p{
    color:#666;
    margin:0;
}

.map-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.map-card iframe{
    width:100%;
    height:550px;
    border:0;
    display:block;
}

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

@media(max-width:991px){

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

    .contact-form-box h2{
        font-size:38px;
    }

}

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

@media(max-width:768px){

    .contact-location-section{
        padding:80px 20px;
    }

    .contact-form-box{
        padding:30px;
        border-radius:25px;
    }

    .contact-form-box h2{
        font-size:30px;
    }

    .contact-cards{
        grid-template-columns:1fr;
    }

    .contact-mini-card{
        padding:20px;
    }

    .map-card iframe{
        height:350px;
    }

}
/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&display=swap');


























































.footer{
    position:relative;
    background:linear-gradient(135deg,#091529,#0c1f38);
    color:#fff;
    overflow:hidden;
    margin-top:100px;
    border-top-left-radius:80px;
    border-top-right-radius:80px;
}

.footer-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    z-index:0;
}

.footer-glow-1{
    width:350px;
    height:350px;
    background:rgba(0,255,213,.12);
    top:-120px;
    right:-120px;
}

.footer-glow-2{
    width:300px;
    height:300px;
    background:rgba(0,132,255,.12);
    bottom:-120px;
    left:-120px;
}

.footer-top{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
    padding:70px 20px 40px;
    text-align:center;
}

.footer-heading h2{
    font-size:3rem;
    font-weight:800;
    margin-bottom:15px;
    letter-spacing:1px;
}

.footer-heading p{
    color:#cbd5e1;
    font-size:1.05rem;
    margin-bottom:30px;
}

.footer-cta{
    display:inline-block;
    padding:14px 35px;
    background:#1ea595;
    color:#07111f;
    text-decoration:none;
    font-weight:700;
    border-radius:50px;
    transition:.4s;
}

.footer-cta:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,212,255,.4);
}

.footer-container{
    position:relative;
    z-index:2;
    max-width:1300px;
    margin:auto;
    padding:40px 8% 60px;
    display:grid;
    grid-template-columns:1fr 2fr 2fr 1.5fr;
    gap:20px;
}

.footer-column{
    padding-right:40px;
    border-right:1px solid rgba(255,255,255,.08);
}

.footer-column:last-child{
    border-right:none;
}

.footer-column h3{
    font-size:1.25rem;
    margin-bottom:25px;
    position:relative;
}

.footer-column h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:45px;
    height:3px;
    background:#1ea595;
    border-radius:50px;
}

.footer-column p{
    color:#cbd5e1;
    line-height:1.9;
}

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

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

.footer-column ul li a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#1ea595;
    padding-left:8px;
}

.footer-socials{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-socials a{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    color:#fff;
    text-decoration:none;
    transition:.4s;
    backdrop-filter:blur(10px);
}

.footer-socials a:hover{
    background:#1ea595;
    color:#07111f;
    transform:translateY(-5px);
}
.contact-mini-card a{
    text-decoration:none;
    color:inherit;
}
.contact-item{
    display:flex;
    gap:12px;
    margin-bottom:18px;
    color:#cbd5e1;
}

.contact-item i{
    color:#1ea595;
    margin-top:4px;
}

.footer-bottom{
    position:relative;
    z-index:2;
    border-top:1px solid rgba(255,255,255,.08);
    padding:25px 6%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    color:#94a3b8;
}

.footer-bottom-links{
    display:flex;
    gap:25px;
}

.footer-bottom-links a{
    color:#94a3b8;
    text-decoration:none;
    transition:.3s;
}

.footer-bottom-links a:hover{
    color:#1ea595;
}

@media(max-width:991px){

.footer-container{
    grid-template-columns:1fr 1fr;
}

.footer-column{
    border-right:none;
    padding-right:0;
}

}

@media(max-width:768px){

.footer-heading h2{
    font-size:2.2rem;
}

.footer-container{
    grid-template-columns:1fr;
}

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

}




.scroll-top-btn{
    position: fixed !important;
    bottom: 20px !important;
    right: 30px !important;
    width: 30px !important;
    height: 30px !important;
    background: #00aaff !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 30px !important;
    font-weight: bold !important;
    z-index: 999999 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.scroll-top-btn:hover{
    transform: scale(1.1) !important;
    background: #0088cc !important;
}