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

/* 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: rgba(255,255,255,0.15);

  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: #e1e3e6 !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: #347460 !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; 
  background-color: #ffffff;
} */

.main-navbar.scrolled .nav-link,
.main-navbar.scrolled .dropdown-toggle,
.main-navbar.scrolled .navbar-brand,
.main-navbar.scrolled .brand-text {
    color: #000 !important;
}
.main-navbar{
    background:#fff !important;
    transition:all .3s ease;
    box-shadow:none;
}

.main-navbar.scrolled {
    background: rgba(255,255,255,0.15) !important; /* more transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}



.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:#9d409a
}
/* 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: #437d6a;
  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: #f5f0f5; /* 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: #40809d;
} */




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

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

.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: #fff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

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

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




/* ==========================
   GLOBAL STYLES
========================== */




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

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}


/* ==========================
   SLIDES
========================== */

.slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:all 1s ease;
}

.slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}


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

.hero-content{
    max-width:650px;
    color:#ffffff;

    margin-left:9%;
    padding:0 20px;
transform: translateY(-350px);
}

.subtitle{
    display:inline-block;

    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:20px;

    color:#ffffff;

    border-left:4px solid #30997f;
    padding-left:14px;
}

.hero-content h1{
    font-size:64px;
    font-weight:800;
    line-height:1.1;

    margin-bottom:25px;
}

.hero-content p{
    font-size:17px;
    line-height:1.9;

    color:rgba(255,255,255,0.92);

    margin-bottom:40px;
}
 .hero-content h1 span{
    color: #539b83;   /* Orange color */
}

/* ==========================
   BUTTONS
========================== */

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

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

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

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

    transition:0.4s ease;
}


.btn.primary{
    background:#539b83;
    color:#ffffff;
}

.btn.primary:hover{
    background:#255c4f;
    transform:translateY(-4px);
}


.btn.secondary{
    background:transparent;
    color:#ffffff;

    border:2px solid rgba(255,255,255,0.7);
}

.btn.secondary:hover{
    background:#ffffff;
    color:#111111;

    transform:translateY(-4px);
}


/* ==========================
   SLIDER DOTS
========================== */

.slider-dots{
    position:absolute;

    left:50%;
    bottom:40px;

    transform:translateX(-50%);

    display:flex;
    gap:12px;

    z-index:10;
}

.dot{
    width:12px;
    height:12px;

    border-radius:50%;

    background:rgba(255,255,255,0.45);

    cursor:pointer;

    transition:0.4s;
}

.dot.active{
    background:#ff5b2e;
    transform:scale(1.3);
}


/* ==========================
   LARGE LAPTOPS
========================== */

@media(max-width:1200px){

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

    .hero-content{
        max-width:600px;
    }

}


/* ==========================
   TABLETS
========================== */

@media(max-width:992px){

    .hero-content{
        margin-left:6%;
    }

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

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

}


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

@media(max-width:768px){

    .hero{
        height:100vh;
    }

    .hero-content{
        margin:0;
        padding:0 25px;
        max-width:100%;
    }

    .subtitle{
        font-size:12px;
        letter-spacing:1.5px;
    }

    .hero-content h1{
        font-size:36px;
        line-height:1.25;

        margin-bottom:20px;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.8;

        margin-bottom:30px;
    }

    .hero-buttons{
        gap:15px;
    }

    .btn{
        width:100%;
        padding:15px 20px;
    }

    .slider-dots{
        bottom:25px;
    }
}


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

@media(max-width:480px){

    .hero-content{
        padding:0 20px;
    }

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

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

    .btn{
        font-size:14px;
    }

    .dot{
        width:10px;
        height:10px;
    }
}



/*==================================
   SERVICES SECTION
==================================*/
.services-section{
    padding: 100px 6%;
    background: linear-gradient(to bottom, #fafafa, #ffffff);
}

.services-header{
    text-align: center;
    margin-bottom: 70px;
}

.section-tag{
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #ff5b2e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.services-header h2{
    font-size: 68px;
    font-weight: 800;
    color: #111;
    line-height: 1;
    margin-bottom: 20px;
}

.section-line{
    width: 30px;
    height: 4px;
    background: #ff5b2e;
    border-radius: 30px;
    margin: 0 auto 25px;
}

.section-description{
    max-width: 650px;
    margin: auto;
    color: black;
    font-size: 17px;
    line-height: 1.8;
}


/*==================================
   SERVICES GRID
==================================*/
.services-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}


/*==================================
   SERVICE CARD
==================================*/
.service-card{
    position: relative;
    background: #eaeff1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    transition: .4s ease;
}

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


/*==================================
   BADGE
==================================*/
.service-badge{
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;

    background: #202120;
    color: #fff;

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

    padding: 8px 14px;
    border-radius: 30px;
}


/*==================================
   IMAGE
==================================*/
.service-card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: .6s ease;
}

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


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

.service-tag{
    display: inline-block;

    background: rgba(255,91,46,.12);
    color: #ff5b2e;

    padding: 8px 14px;

    border-radius: 30px;

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

    margin-bottom: 4px;
}

.service-content h3{
    font-size: 20px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 6px;
}


/*==================================
   HEADING UNDERLINE
==================================*/
.title-line{
    display: block;

    width: 55px;
    height: 3px;

    background: #ff5b2e;

    border-radius: 20px;

    margin-bottom: 1px;
}


/*==================================
   DESCRIPTION
==================================*/
.service-content p{
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 6px;
}


/*==================================
   PRICE TAG
==================================*/
.price-tag{
    display: inline-block;

    background: #f4f4f4;
    color: #111;

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

    padding: 10px 16px;

    border-radius: 30px;

    margin-bottom: 22px;
}


/*==================================
   CALL BUTTON
==================================*/
.call-btn{
    display: inline-block;
    width: auto;

    text-align: center;
    text-decoration: none;

    background: linear-gradient(135deg,#ff5b2e,#ff784f);
    color: #fff;

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

    padding: 10px 18px;

    border-radius: 10px;

    transition: .4s ease;
}

.call-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,91,46,.35);
}


/*==================================
   EXTRA FEATURE
==================================*/
.call-btn::after{
    content: " →";
}


/*==================================
   TABLET
==================================*/
@media(max-width:1024px){

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

    .services-header h2{
        font-size: 54px;
    }

    .service-content h3{
        font-size: 26px;
    }
}


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

    .services-section{
        padding: 80px 20px;
    }

    .services-grid{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-header h2{
        font-size: 42px;
    }

    .section-description{
        font-size: 15px;
    }

    .service-card img{
        height: 180px;
    }

    .service-content{
        padding: 22px;
    }

    .service-content h3{
        font-size: 24px;
    }

    .call-btn{
        padding: 14px;
    }
}


/*==================================
   SMALL MOBILE
==================================*/
@media(max-width:480px){

    .services-header h2{
        font-size: 36px;
    }

    .section-tag{
        font-size: 12px;
    }

    .service-content h3{
        font-size: 22px;
    }

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

    .price-tag{
        font-size: 13px;
    }
}


































/*==================================
   FOOTER
==================================*/
.footer{
    background: #fafafa;
    padding: 90px 7% 30px;
    border-top: 1px solid #ececec;
}

.footer-container{
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 60px;
}


/*==================================
   FOOTER HEADINGS
==================================*/
.footer-column h3{
    font-family: 'Lora', serif;
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
}


/*==================================
   FOOTER TEXT
==================================*/
.footer-column p{
    color: #0d0d0e;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}


/*==================================
   FOOTER LINKS
==================================*/
.footer-column ul{
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a{
    text-decoration: none;
    color: #1c1c1c;
    font-size: 17px;
    transition: .3s ease;
}

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


/*==================================
   SOCIAL ICONS
==================================*/
.social-icons{
    display: flex;
    gap: 18px;
}

.social-icons a{
    width: 42px;
    height: 42px;

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

    border-radius: 50%;
    text-decoration: none;

    color: #ffffff;
    background: #484747;

    font-size: 18px;

    transition: .3s ease;
}

.social-icons a:hover{
    background: #ffffff;
    color: #080808;
    transform: translateY(-4px);
}


/*==================================
   NEWSLETTER / FORM
==================================*/
.footer-form{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-form input{
    width: 100%;
    height: 54px;

    border: 1px solid #e5e7eb;
    border-radius: 10px;

    padding: 0 18px;

    font-size: 15px;
    outline: none;

    background: #fff;
}

.footer-form input:focus{
    border-color: #84a997;
}

.section-title {
    position: relative;
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 5px;
    background: #55926b; /* Green */
    border-radius: 50px;
}
/*==================================
   BUTTON
==================================*/
.footer-form button{
    height: 54px;

    border: none;
    border-radius: 10px;

    background: #84a997;
    color: #fff;

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

    cursor: pointer;

    transition: .3s ease;
}

.footer-form button i{
    margin-right: 8px;
}

.footer-form button:hover{
    background: #6f9483;
}


/*==================================
   FOOTER BOTTOM
==================================*/
.footer-bottom{
    margin-top: 70px;
    padding-top: 35px;

    border-top: 1px solid #e5e7eb;

    text-align: center;
}

.footer-bottom p{
    color: #0c0c0c;
    font-size: 16px;
}


/*==================================
   TABLET
==================================*/
@media(max-width:992px){

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

    .footer-column h3{
        font-size: 30px;
    }
}


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

    .footer{
        padding: 70px 20px 25px;
    }

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

    .footer-column h3{
        font-size: 28px;
    }

    .footer-column p,
    .footer-column ul li a{
        font-size: 15px;
    }

    .footer-bottom{
        margin-top: 50px;
        padding-top: 25px;
    }
}


/*==================================
   SMALL MOBILE
==================================*/
@media(max-width:480px){

    .footer-column h3{
        font-size: 24px;
    }

    .social-icons a{
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .footer-form input,
    .footer-form button{
        height: 50px;
    }

    .footer-bottom p{
        font-size: 14px;
    }
}
















/*==================================
    PREMIUM CTA SECTION
==================================*/
.premium-cta{
    padding:100px 20px;
    background:#dfe4e6;
    position:relative;
    overflow:hidden;
}

/*==================================
    MAIN CONTAINER
==================================*/
.cta-wrapper{
    max-width:1100px;
    margin:auto;
    padding:70px 60px;

    background:#f3f4f4;

    border-radius:24px;

    border:1px solid #ececec;

    box-shadow:
        0 10px 40px rgba(0,0,0,.06);

    text-align:center;

    position:relative;
}

/*==================================
    TOP BADGE
==================================*/
.cta-badge{
    display:inline-block;

    background:#5fb497;

    color:#fff;

    padding:12px 24px;

    border-radius:50px;

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

    letter-spacing:.5px;

    margin-bottom:30px;
}

/*==================================
    HEADING
==================================*/
.cta-content h2{
    font-family:'Lora', serif;

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

    color:#222;

    line-height:1.2;

    margin-bottom:25px;
}

.cta-content h2 span{
    color:#F97316;
}

/*==================================
    DESCRIPTION
==================================*/
.cta-content p{
    max-width:760px;
    margin:auto;

    color:#141313;

    font-size:18px;
    line-height:1.9;

    margin-bottom:30px;
}

/*==================================
    ALERT TEXT
==================================*/
.cta-alert{
    display:inline-block;

    color:#488a75;

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

    margin-bottom:40px;
}

/*==================================
    BUTTONS
==================================*/
.cta-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:20px;

    margin-bottom:50px;
}

.cta-btn{
    text-decoration:none;

    padding:10px 25px;

    border-radius:50px;

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

    transition:.3s ease;

    min-width:200px;
}

/*==================================
    CALL BUTTON
==================================*/
.cta-call-btn{
    background:#F97316;
    color:#fff;

    border:none;

    box-shadow:
        0 10px 25px rgba(249,115,22,.25);
}

.cta-call-btn:hover{
    transform:translateY(-4px);

    background:#ea650b;

    color:#fff;
}

/*==================================
    WHATSAPP BUTTON
==================================*/
.whatsapp-btn{
    background:#6B8E23;

    color:#fff;

    border:none;

    box-shadow:
        0 10px 25px rgba(107,142,35,.25);
}

.whatsapp-btn:hover{
    background:#5f7d1f;

    transform:translateY(-4px);

    color:#fff;
}

/*==================================
    GET QUOTE BUTTON
==================================*/
.quote-btn{
    background:#fff;

    color:#6B8E23;

    border:2px solid #6B8E23;
}

.quote-btn:hover{
    background:#6B8E23;

    color:#fff;

    transform:translateY(-4px);
}

/*==================================
    TRUST STATS
==================================*/
.cta-stats{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:35px;
}

.stat-item{
    display:flex;
    align-items:center;

    gap:10px;

    color:#444;
}

.stat-item span{
    font-size:22px;
}

.stat-item p{
    margin:0;

    font-size:15px;

    color:#000000;

    line-height:1.5;
}

/*==================================
    REMOVE OLD GLOW EFFECTS
==================================*/
.premium-cta::before,
.premium-cta::after{
    display:none;
}

/*==================================
    TABLET
==================================*/
@media(max-width:992px){

    .cta-wrapper{
        padding:60px 40px;
    }

    .cta-content h2{
        font-size:25px;
    }

    .cta-content p{
        font-size:17px;
    }
}

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

    .premium-cta{
        padding:80px 20px;
    }

    .cta-wrapper{
        padding:45px 25px;
        border-radius:20px;
    }

    .cta-badge{
        font-size:13px;
        padding:10px 18px;
    }

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

    .cta-content p{
        font-size:15px;
        line-height:1.8;
    }

    .cta-alert{
        font-size:14px;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .cta-btn{
        width:100%;
        max-width:320px;
    }

    .cta-stats{
        flex-direction:column;
        align-items:center;
        gap:18px;
    }
}

/*==================================
    SMALL MOBILE
==================================*/
@media(max-width:480px){

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

    .cta-content p{
        font-size:14px;
    }

    .cta-wrapper{
        padding:35px 20px;
    }

    .cta-badge{
        font-size:12px;
    }
}



/*==================================
    GALLERY SECTION
==================================*/
.gallery-section{
    padding: 100px 6%;
    background: linear-gradient(to bottom,#fafafa,#ffffff);
    overflow: hidden;
}


/*==================================
    HEADER
==================================*/
.gallery-header{
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.gallery-tag{
    display: inline-block;
    padding: 8px 18px;

    background: rgba(255,107,53,.1);
    color: #ff6b35;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;

    margin-bottom: 18px;
}

.gallery-header h2{
    font-family: 'Lora', serif;

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

    color: #111;

    margin-bottom: 20px;
}

.gallery-header h2 span{
    color: #ff6b35;
}

.gallery-header p{
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}


/*==================================
    FILTER BUTTONS
==================================*/
.gallery-filter{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 50px;
}

.gallery-filter button{
    border: none;
    outline: none;

    padding: 12px 24px;

    background: #fff;
    color: #666;

    border-radius: 50px;

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

    cursor: pointer;

    box-shadow: 0 8px 25px rgba(0,0,0,.05);

    transition: .35s ease;
}

.gallery-filter button:hover,
.gallery-filter button.active{
    background: linear-gradient(
        135deg,
        #ff6b35,
        #ff874d
    );

    color: #fff;

    transform: translateY(-3px);
}


/*==================================
    GALLERY GRID
==================================*/
.gallery-grid{
    display: grid;

    grid-template-columns: repeat(5,1fr);

    grid-auto-rows: 240px;

    gap: 25px;
}


/*==================================
    LARGE CARDS
==================================*/
.gallery-card.large{
    grid-column: span 2;
    grid-row: span 2;
}


/*==================================
    CARD
==================================*/
.gallery-card{
    position: relative;

    overflow: hidden;

    border-radius: 28px;

    cursor: pointer;

    box-shadow: 0 15px 35px rgba(0,0,0,.08);

    background: #fff;

    transition: .45s ease;
}

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

    box-shadow: 0 25px 50px rgba(0,0,0,.15);
}


/*==================================
    IMAGE
==================================*/
.gallery-card img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: .7s ease;
}

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


/*==================================
    OVERLAY
==================================*/
.gallery-overlay{
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 28px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.75),
            rgba(0,0,0,.25),
            transparent
        );

    color: #fff;

    opacity: 0;

    transition: .4s ease;
}

.gallery-card:hover .gallery-overlay{
    opacity: 1;
}


/*==================================
    CATEGORY BADGE
==================================*/
.gallery-overlay span{
    width: fit-content;

    background: rgba(255,255,255,.15);

    backdrop-filter: blur(10px);

    padding: 8px 16px;

    border-radius: 50px;

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

    margin-bottom: 14px;
}


/*==================================
    LOCATION
==================================*/
.gallery-overlay h3{
    font-family: 'Lora', serif;

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

    margin-bottom: 8px;
}


/*==================================
    DESCRIPTION
==================================*/
.gallery-overlay p{
    font-size: 15px;
    color: rgba(255,255,255,.9);

    line-height: 1.6;
}


/*==================================
    VIEW PROJECT BUTTON
==================================*/
.gallery-overlay::after{
    /* content: "View Project ↗"; */

    display: inline-block;

    margin-top: 20px;

    width: fit-content;

    padding: 10px 18px;

    background: #ff6b35;

    border-radius: 50px;

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

    transition: .35s ease;
}
.call-btn1 {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    background: #8f9190;
    color: #0b0b0b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    width: fit-content;   /* Important */
    transition: 0.3s ease;
}

.call-btn1:hover {
    background: #ffffff;
    transform: translateY(-2px);
}
/*==================================
    TABLET
==================================*/
@media(max-width:1024px){

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

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

        grid-auto-rows: 240px;
    }

    .gallery-card.large{
        grid-column: span 2;
        grid-row: span 1;
    }

}


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

    .gallery-section{
        padding: 80px 20px;
    }

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

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

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

    .gallery-filter{
        gap: 10px;
        margin-bottom: 35px;
    }

    .gallery-filter button{
        padding: 10px 18px;
        font-size: 13px;
    }

    .gallery-grid{
        grid-template-columns: 1fr;

        grid-auto-rows: 280px;
    }

    .gallery-card.large{
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-overlay{
        opacity: 1;
        padding: 22px;
    }

    .gallery-overlay h3{
        font-size: 24px;
    }

}


/*==================================
    SMALL MOBILE
==================================*/
@media(max-width:480px){

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

    .gallery-tag{
        font-size: 12px;
    }

    .gallery-overlay h3{
        font-size: 22px;
    }

    .gallery-overlay p{
        font-size: 14px;
    }

    .gallery-grid{
        grid-auto-rows: 250px;
    }

}





/*==================================
    ABOUT SECTION
==================================*/
.about-section{
    padding: 100px 6%;
    background: linear-gradient(to bottom,#ffffff,#fafafa);
    overflow: hidden;
}

.about-container{
    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}


/*==================================
    ABOUT CONTENT
==================================*/
.about-tag{
    display: inline-block;

    padding: 10px 20px;

    background: rgb(27, 27, 27);
    color: #ffffff;

    border-radius: 50px;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;

    margin-bottom: 25px;
}

.about-content h2{
    font-family: 'Lora', serif;

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

    color: #111;

    line-height: 1.2;

    margin-bottom: 25px;
}

.about-content h2 span{
    color: #84a997;
}

.about-content p{
    color: #171717;

    font-size: 17px;
    line-height: 1.9;

    margin-bottom: 20px;
}


/*==================================
    STATS
==================================*/
.about-stats{
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 20px;

    margin: 40px 0;
}

.about-stat{
    background: #fff;

    text-align: center;

    padding: 30px 20px;

    border-radius: 24px;

    box-shadow: 0 15px 40px rgba(0,0,0,.06);

    transition: .35s ease;
}

.about-stat:hover{
    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.about-stat h3{
    font-family: 'Lora', serif;

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

    color: #84a997;

    margin-bottom: 10px;
}

.about-stat p{
    margin: 0;

    color: #111111;

    font-size: 15px;
    line-height: 1.6;
}


/*==================================
    FEATURES
==================================*/
.about-features{
    display: grid;
    grid-template-columns: repeat(2,1fr);

    gap: 15px;

    margin-bottom: 40px;
}

.about-features div{
    background: #fff;

    padding: 15px 18px;

    border-radius: 14px;

    color: #444;

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

    box-shadow: 0 10px 25px rgba(0,0,0,.05);

    transition: .3s ease;
}

.about-features div:hover{
    transform: translateX(6px);

    color: #84a997;
}


/*==================================
    BUTTONS
==================================*/
.about-buttons{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}


/* Call Button */
.about-call-btn{
    display: inline-block;

    text-decoration: none;

    background: linear-gradient(
        135deg,
        #4889a1
    );

    color: #fff;

    padding: 16px 30px;

    border-radius: 50px;

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

    transition: .35s ease;

    box-shadow:
        0 12px 30px rgba(255,107,53,.25);
}

.about-call-btn:hover{
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(255,107,53,.35);
}


/* WhatsApp Button */
.about-whatsapp-btn{
    display: inline-block;

    text-decoration: none;

    background: #3a8555;
    color: #fff;

    padding: 16px 30px;

    border-radius: 50px;

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

    transition: .35s ease;

    box-shadow:
        0 12px 30px rgba(37,211,102,.25);
}

.about-whatsapp-btn:hover{
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(37,211,102,.35);
}


/*==================================
    IMAGE
==================================*/
.about-image{
    position: relative;
}

.about-image img{
    width: 100%;

    display: block;

    border-radius: 35px;

    object-fit: cover;

    box-shadow:
        0 25px 60px rgba(0,0,0,.12);
}


/*==================================
    FLOATING BADGE
==================================*/
.experience-badge{
    position: absolute;

    bottom: 30px;
    left: -40px;

    width: 220px;

    background: rgba(255,255,255,.95);

    backdrop-filter: blur(14px);

    padding: 25px 20px;

    border-radius: 24px;

    text-align: center;

    box-shadow:
        0 20px 45px rgba(0,0,0,.10);
}

.experience-badge h3{
    font-family: 'Lora', serif;

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

    color: #84a997;

    margin-bottom: 10px;
}

.experience-badge p{
    margin: 0;

    color: #666;

    font-size: 14px;
    line-height: 1.7;
}


/*==================================
    TABLET
==================================*/
@media(max-width:1024px){

    .about-container{
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content h2{
        font-size: 48px;
    }

    .experience-badge{
        left: 20px;
    }

}


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

    .about-section{
        padding: 80px 20px;
    }

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

    .about-content p{
        font-size: 15px;
    }

    .about-stats{
        grid-template-columns: 1fr;
    }

    .about-features{
        grid-template-columns: 1fr;
    }

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

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

        text-align: center;
    }

    .experience-badge{
        position: static;

        width: 100%;

        margin-top: 20px;
    }

}


/*==================================
    SMALL MOBILE
==================================*/
@media(max-width:480px){

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

    .about-tag{
        font-size: 12px;
    }

    .about-stat h3{
        font-size: 34px;
    }

    .experience-badge h3{
        font-size: 36px;
    }

}






/* ===== ANR SERVE SECTION ===== */
.anr-serve-section {
  padding: 90px 20px;
  background: #ecf1f0;
  color: #222;
  font-family: system-ui, Arial, sans-serif;
}

.anr-serve-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* HEADER */
.anr-serve-header h2 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #090909;
  margin-bottom: 15px;
  line-height: 1.2;
}

.anr-serve-header p {
  color: #265245;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
  font-size: 16px;
}

/* CITY CLOUD */
.anr-city-cloud {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* CITY CHIP */
.anr-city-chip {
  padding: 12px 18px;
  border-radius: 999px;

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

  background: #ffffff;

  border: 1px solid #e2e8f0;

  color: #1e293b;

  cursor: default;

  transition: all .3s ease;

  box-shadow:
    0 2px 10px rgba(0,0,0,.04);

  position: relative;
  overflow: hidden;
}

/* PREMIUM HOVER SHINE */
.anr-city-chip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.8),
    transparent
  );

  transition: .7s;
}

.anr-city-chip:hover::before {
  left: 120%;
}

.anr-city-chip:hover {
  transform: translateY(-4px);

  border-color: #da782d;

  color: #eb7922;

  box-shadow:
    0 12px 25px rgba(37,99,235,.15);
}

/* BOTTOM CONTENT BOX */
.anr-serve-bottom {
  margin-top: 60px;

  padding: 35px;

  border-radius: 20px;

  background: #ecf5f7;

  border: 1px solid #e5e7eb;

  box-shadow:
    0 8px 30px rgba(0,0,0,.05);
}

.anr-serve-bottom p {
  color: #111112;

  line-height: 1.9;

  font-size: 15px;

  margin-bottom: 20px;
}

/* CALL BUTTON */
.anr-serve-call-btn {
  display: inline-block;

  margin-top: 10px;

  padding: 14px 28px;

  border-radius: 999px;

  background: #f97316;

  color: #ffffff;

  text-decoration: none;

  font-weight: 600;

  transition: all .3s ease;

  box-shadow:
    0 10px 25px rgba(249,115,22,.25);
}

.anr-serve-call-btn:hover {
  background: #ea580c;

  transform: translateY(-3px);

  color: #fff;

  box-shadow:
    0 15px 30px rgba(249,115,22,.35);
}

/* OPTIONAL SMALL LABEL */
.anr-serve-label {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 50px;

  background: #eff6ff;

  color: #2563eb;

  font-size: 13px;

  font-weight: 600;

  margin-bottom: 20px;
}

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

  .anr-serve-section {
    padding: 70px 20px;
  }

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

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

  .anr-city-chip {
    font-size: 13px;
    padding: 10px 14px;
  }

  .anr-serve-bottom {
    padding: 25px 20px;
  }

  .anr-serve-bottom p {
    font-size: 14px;
  }

  .anr-serve-call-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

  .anr-serve-header h2 {
    font-size: 26px;
  }

  .anr-city-cloud {
    gap: 10px;
  }

  .anr-city-chip {
    font-size: 12px;
    padding: 8px 12px;
  }
}



.serve-title {
    position: relative;
    display: inline-block;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.serve-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: #ff7a00; /* Change to your preferred color */
    border-radius: 50px;
}
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');

/* ===== SECTION ===== */
.anr-pro-faq-section {
  padding: 90px 20px;
  background: #fefeff;
  color: #1f2937;
  font-family: 'Lora', serif;
}

/* CONTAINER */
.anr-pro-faq-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* IMAGE SIDE */
.anr-pro-faq-image {
  flex: 1;
}

.anr-pro-faq-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  height: 430px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.anr-pro-faq-image img:hover {
  transform: scale(1.02);
}

/* CONTENT SIDE */
.anr-pro-faq-content {
  flex: 1;
}

/* HEADER */
.anr-pro-faq-header h2 {
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #111827;
  position: relative;
  display: inline-block;
}

/* UNDERLINE EFFECT */
.anr-pro-faq-header h2::after {
  content: "";
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, #fb923c, #f97316);
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 5px;
}

.anr-pro-faq-header p {
  color: #6b7280;
  margin-bottom: 25px;
  font-size: 15px;
}

/* FAQ LIST */
.anr-pro-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ITEM */
.anr-pro-faq-item {
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 10px 16px;
  background: #fff7f0;
  transition: 0.3s ease;
}

.anr-pro-faq-item:hover {
  border-color: #fb923c;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.12);
}

/* QUESTION */
.anr-pro-faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 0;
  background: transparent;
  border: none;
  color: #111827;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}

/* ICON */
.anr-pro-faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  color: #f97316;
  font-size: 20px;
  transition: 0.3s ease;
}

/* ANSWER */
.anr-pro-faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
  transition: 0.4s ease;
}

/* ACTIVE */
.anr-pro-faq-item.active {
  background: #fff1e6;
}

.anr-pro-faq-item.active .anr-pro-faq-answer {
  max-height: 220px;
  padding-bottom: 12px;
}

.anr-pro-faq-item.active .anr-pro-faq-question::after {
  content: "−";
  color: #ea580c;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .anr-pro-faq-container {
    flex-direction: column;
  }

  .anr-pro-faq-image img {
    height: 280px;
  }

  .anr-pro-faq-header h2 {
    font-size: 28px;
  }
}

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');

/* ===== SECTION ===== */
.anr-testimonial-section {
  padding: 90px 0;
  background: #eaedec;
  font-family: 'Lora', serif;
  overflow: hidden;
}

/* container */
.anr-testimonial-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.anr-testimonial-header {
  text-align: center;
  margin-bottom: 50px;
}

.anr-testimonial-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1f2937;
  position: relative;
}

.anr-testimonial-header h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #f97316; /* ORANGE */
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

.anr-testimonial-header p {
  color: #1c1d1d;
  margin-top: 10px;
  font-size: 15px;
}

/* ===== SCROLL TRACK ===== */
.anr-testimonial-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollRight 22s linear infinite;
}

/* smooth right movement */
@keyframes scrollRight {
  0% {
    transform: translateX(-40%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* pause on hover */
.anr-testimonial-track:hover {
  animation-play-state: paused;
}

/* ===== CARD ===== */
.anr-testimonial-card {
  width: 300px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* orange glow accent */
.anr-testimonial-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: #f97316;
  opacity: 0.08;
  top: -40px;
  right: -40px;
  border-radius: 50%;
}

.anr-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(249,115,22,0.15);
  border-color: #f97316;
}

/* TOP USER */
.anr-testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.anr-testimonial-top img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #f97316;
  padding: 2px;
  background: #fff;
}

.anr-testimonial-top h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
/* Orange */
h3 span{
    color: #5d9073;
}

/* TEXT */
.anr-testimonial-card p {
  font-size: 14px;
  color: #141414;
  line-height: 1.7;
}

/* STARS */
.anr-stars {
  margin-top: 12px;
  color: #f97316;
  font-size: 16px;
  letter-spacing: 2px;
}

/* ===== MODERN HOVER LIFT ===== */
.anr-testimonial-card:hover .anr-stars {
  transform: scale(1.05);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .anr-testimonial-card {
    width: 260px;
  }

  .anr-testimonial-header h2 {
    font-size: 28px;
  }
}

.areas-section {
    position: relative;
    background: #6f8f91;
    padding: 90px 20px;
    overflow: hidden;
}

/* Top Right Circle */
.areas-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    z-index: 0;
}

/* Bottom Left Circle */
.areas-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

/* Keep content above the circles */
.areas-section > * {
    position: relative;
    z-index: 1;
}



/* ===== CONTACT SECTION ===== */

.anr-contact-section{
    padding:100px 20px;
    background:#ffffff;
    font-family:'Lora',serif;
}

.anr-contact-heading{
    max-width:800px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.anr-contact-heading span{
    display:inline-block;
    color:#28b463;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.anr-contact-heading h2{
    font-size:42px;
    color:#1f2937;
    margin-bottom:15px;
}

.anr-contact-heading p{
    color:#151515;
    font-size:17px;
    line-height:1.8;
}


/* Layout */

.anr-contact-wrapper{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}


/* Cards */

.anr-contact-card,
.anr-map-card{
    background:#d9d9dc;
    padding:40px;
    border-radius:30px;
    box-shadow:
    0 10px 40px rgba(0,0,0,.06);
}


/* Titles */

.anr-card-title h3{
    font-size:34px;
    color:#1f2937;
    margin-bottom:10px;
}

.anr-card-title p{
    color:#101010;
    margin-bottom:35px;
}

    
/* Form */

.anr-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.anr-input-box{
    position:relative;
    margin-bottom:25px;
}

.anr-input-box input,
.anr-input-box textarea{
    width:100%;
    border:2px solid #e5e7eb;
    border-radius:18px;
    padding:18px;
    outline:none;
    font-size:15px;
    background:#fff;
    transition:.3s;
}

.anr-input-box textarea{
    resize:none;
}

.anr-input-box label{
    position:absolute;
    left:18px;
    top:18px;
    color:#8d8f93;
    background:#fff;
    padding:0 6px;
    pointer-events:none;
    transition:.3s;
}

.anr-input-box input:focus,
.anr-input-box textarea:focus{
    border-color:#28b463;
}

.anr-input-box input:focus~label,
.anr-input-box textarea:focus~label,
.anr-input-box input:valid~label,
.anr-input-box textarea:valid~label{
    top:-10px;
    font-size:12px;
    color:#28b463;
}


/* Buttons */

.anr-btn-group{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.anr-submit-btn{
    border:none;
    background:#6f62c8;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.anr-submit-btn:hover{
    transform:translateY(-3px);
    background:#5b8ec1;
}

.anr-reset-btn{
    border:none;
    background:#eef2f7;
    color:#374151;
    padding:15px 35px;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.anr-reset-btn:hover{
    background:#dfe6ee;
}


/* Call Buttons */

.anr-contact-info{
    display:flex;
    gap:15px;
    margin-top:35px;
    flex-wrap:wrap;
}

.anr-contact-info a{
    text-decoration:none;
    padding:12px 22px;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.anr-contact-info a:first-child{
    background:#6f62c8;
}

.anr-contact-info a:last-child{
    background:#6f62c8;
}

.anr-contact-info a:hover{
    transform:translateY(-3px);
}


/* Map */

.anr-map-box{
    overflow:hidden;
    border-radius:25px;
}

.anr-map-box iframe{
    width:100%;
    height:430px;
    border:none;
}


/* Address */

.anr-address{
    margin-top:25px;
}

.anr-address h4{
    font-size:24px;
    color:#1f2937;
    margin-bottom:10px;
}

.anr-address p{
    color:#6b7280;
    line-height:1.8;
}


/* Tablet */

@media(max-width:991px){

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

    .anr-card-title h3{
        font-size:30px;
    }

    .anr-contact-heading h2{
        font-size:36px;
    }

}


/* Mobile */

@media(max-width:768px){

    .anr-contact-section{
        padding:70px 15px;
    }

    .anr-contact-card,
    .anr-map-card{
        padding:25px;
        border-radius:25px;
    }

    .anr-form-grid{
        grid-template-columns:1fr;
    }

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

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

    .anr-map-box iframe{
        height:320px;
    }

    .anr-btn-group,
    .anr-contact-info{
        flex-direction:column;
    }

    .anr-submit-btn,
    .anr-reset-btn,
    .anr-contact-info a{
        width:100%;
        text-align:center;
    }

}






.scroll-top-btn{
    position: fixed !important;
    bottom: 15px !important;
    right: 25px !important;
    width: 30px !important;
    height: 35px !important;
    background: #b57be1 !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: 15px !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;
}




.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(8, 87, 178, 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);
    }
}






