* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}



.navbar {
  height: 95px;
}

body {
  margin: 0;
  padding-top: 90px; /* MUST match navbar height */
  overflow-x: hidden;
}

.hero-section {
  height: 100vh;
}




/* Navbar */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo h2 {
  font-size: 18px;
}

.logo p {
  font-size: 12px;
  color: green;
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}


.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;   /* ONE value */
  z-index: 9999;
  background: #fff;
}

/* If you have top-bar */
.main-navbar {
  top: 50px; 
}

/* HERO FIX */
.hero-section {
  margin-top: 0;
  padding-top: 0;
}


@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

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

@media (max-width: 768px) {

  .navbar {
    height: 70px;
  }

  body {
    padding-top: 70px;
  }

  .hero,
  .hero-section {
    height: calc(100vh - 70px);
  }

  .content {
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .content h1 {
    font-size: 28px;
  }

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


.navbar-nav .nav-link {
  font-size: 20px !important;
  font-weight: 600;
}



.call-btn {
  background: #22c55e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
}

/* ================= SCROLLABLE DROPDOWN ================= */

.mega-dropdown {
  position: relative;
}

/* Dropdown box */
.mega-menu {
 min-width: 270px !important;
width: max-content !important;             /* smaller width */
  max-height: 300px;         /* 🔥 LIMIT HEIGHT */
  overflow-y: auto;          /* 🔥 ENABLE SCROLL */

  padding: 10px;
  border-radius: 10px;
  border: none;
  background: #fff;

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

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Show on hover */
@media (min-width: 992px) {
  .mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Scrollbar styling (modern look) */
.mega-menu::-webkit-scrollbar {
  width: 6px;
}

.mega-menu::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.mega-menu::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Items */
.dropdown-item {
  font-size: 15px;
  padding: 10px;
  border-radius: 6px;
  transition: 0.3s;
}

/* Hover effect */
.dropdown-item:hover {
  background: #953c08;
  color: #368f6c !important;
  transform: translateX(5px);
}

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

}

.main-navbar {
  background: #fff;
  padding: 12px 0;
  z-index: 9999;
}

.logo {
  height: 40px;
}

.brand-text {
  font-weight: 700;
  color: #0f172a;
}

/* NAV LINKS */
.navbar-nav .nav-link {
  color: #0f172a;
  font-weight: 500;
  margin: 0 10px;
}

.navbar-nav .nav-link:hover {
  color: #22c55e;
}

/* DROPDOWN */
.dropdown-menu {
  border-radius: 8px;
  border: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.dropdown-item {
  font-size: 14px;
  padding: 8px 16px;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: #22c55e;
  color: #fff;
}

/* SCROLLABLE DROPDOWN */
.dropdown-scroll {
  max-height: 300px;
  overflow-y: auto;
}

/* CALL BUTTON */
.call-btn {
  background: #22c55e;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.call-btn:hover {
  background: #16a34a;
}

/* FIX CONTENT UNDER NAVBAR */


/* MOBILE FIX */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
  }

  .call-btn {
    display: block;
    margin: 10px auto;
  }
}


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

@media (max-width: 991px) {

  body{
    padding-top:75px;
    overflow-x:hidden;
  }

  /* NAVBAR */
  .main-navbar{
    padding:8px 0;
  }

  .navbar{
    height:auto;
  }

  /* LOGO */
  .logo{
    height:42px;
    width:auto;
  }

  .brand-text{
    font-size:16px;
  }

  /* TOGGLE BUTTON */
  .navbar-toggler{
    border:none;
    box-shadow:none !important;
    padding:4px 8px;
  }

  /* MOBILE MENU */
  .navbar-collapse{
    background:#fff;
    margin-top:12px;
    padding:15px;
    border-radius:12px;
    max-height:80vh;
    overflow-y:auto;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
  }

  /* NAV LINKS */
  .navbar-nav{
    width:100%;
    text-align:left;
  }

  .navbar-nav .nav-link{
    font-size:15px !important;
    padding:12px 10px;
    margin:0;
    border-bottom:1px solid #f1f1f1;
  }

  /* DROPDOWN */
  .dropdown-menu{
    position:static !important;
    transform:none !important;
    opacity:1 !important;
    visibility:visible !important;
    display:none;
    width:100%;
    border:none;
    box-shadow:none;
    padding-left:10px;
    background:#f9f9f9;
  }

  .dropdown-item{
    font-size:14px;
    padding:10px;
    white-space:normal;
  }

  /* MEGA MENU */
  .mega-menu{
    width:100%;
    max-height:250px;
    overflow-y:auto;
  }

  /* CALL BUTTON */
  .call-btn{
    display:block;
    width:100%;
    text-align:center;
    margin-top:15px;
  }

  /* HERO SECTION */
  .content{
    left:20px;
    right:20px;
    max-width:100%;
  }

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

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

  .buttons{
    flex-direction:column;
    gap:10px;
  }

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

  .stats{
    flex-wrap:wrap;
    gap:15px;
  }

  .slide img{
    height:85vh;
    object-fit:cover;
  }

}






/* ===============================
   FINAL FIX (NO TOP BAR)
=============================== */

/* Remove extra space */
body {
  padding-top: 90px !important; /* only navbar height */
  margin: 0 !important;
  overflow-x: hidden !important;
}

/* Navbar at top */
.navbar {
  position: fixed !important;
  top: 0 !important;   /* 🔥 IMPORTANT */
  width: 100%;
  z-index: 9999;
}

/* Remove any old top-bar spacing */
.main-navbar {
  top: 0 !important;
}

/* Fix hero section */
.hero-section {
  height: calc(100vh - 90px) !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Center hero content */
.hero-content {
  top: 50%;
  transform: translateY(-50%);
}

/* Logo fix */
.logo {
  height: 55px !important;
  width: auto !important;
}

/* Navbar links */
.navbar-nav .nav-link {
  white-space: nowrap !important;
  font-size: 16px !important;
}

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

  .navbar {
    top: 0 !important;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 360px;
    background: #f2edf1;
    padding: 15px;
    border-radius: 10px;
  }
}








/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1501183638710-841dd1904471') no-repeat center/cover;
  display: flex;
  align-items: center;
  padding: 60px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

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

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

.hero h1 span {
  color: #22c55e;
}

.hero p {
  margin: 20px 0;
  color: #ddd;
  line-height: 1.6;
}

/* Buttons */
.buttons {
  margin: 25px 0;
}

.btn {
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
}

.btn.green {
  background: #22c55e;
  color: #fff;
}

.btn.white {
  background: #fff;
  color: #333;
}

/* Stats */
.stats {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}

.stats h2 {
  font-size: 28px;
}

.stats p {
  font-size: 12px;
  color: #ccc;
}




.about {
  padding: 80px 60px;
  background: #f9fafb;
}

/* .container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
} */
.about .container{
  display:flex;
  align-items:center;
  gap:60px;
  max-width:1200px;
  margin:auto;
}



/* LEFT IMAGE */
.about-image {
  position: relative;
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

/* EXPERIENCE BOX */
.experience-box {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background: #1e3a8a;
  color: #fff;
  padding: 25px;
  border-radius: 8px;
  width: 220px;
}

.experience-box h2 {
  font-size: 36px;
  color: #22c55e;
}

.experience-box p {
  font-size: 14px;
}

/* RIGHT CONTENT */
.about-content {
  flex: 1;
}

.subheading {
  color: #22c55e;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
}

.about-content h2 {
  font-size: 40px;
  margin: 15px 0;
  color: #0f172a;
}

.desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* FEATURES */
.features {
  list-style: none;
  margin-bottom: 30px;
}

.features li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.features span {
  color: #22c55e;
  font-size: 18px;
}

.features strong {
  display: block;
  color: #0f172a;
}

.features p {
  font-size: 14px;
  color: #666;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  background: #0f172a;
  color: #fff;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.about-btn:hover {
  background: #1e293b;
}


/* MAIN SECTION */
.services-section {
  padding: 80px 60px;
  background: #f8fafc;
}

/* CONTAINER (NO GLOBAL .container USED) */
.services-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.services-section .services-header {
  max-width: 700px;
  margin-bottom: 50px;
}

.services-section .services-header span {
  color: #22c55e;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
}

.services-section .services-header h2 {
  font-size: 42px;
  margin: 10px 0;
  color: #0f172a;
  line-height: 1.2;
}

.services-section .services-header p {
  color: #6b7280;
  font-size: 16px;
}

/* GRID */
.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.services-section .service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.services-section .service-card:hover {
  transform: translateY(-6px);
}

.services-section .service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.services-section .card-content {
  padding: 20px;
}

.services-section .card-content .icon {
  background: #e8f9ef;
  color: #22c55e;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 12px;
}

.services-section .card-content h3 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 6px;
}

.services-section .card-content p {
  font-size: 14px;
  color: #6b7280;
}

/* CTA BOX */
.services-section .service-cta {
  background: #1e3a8a;
  color: #fff;
  padding: 35px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-section .service-cta .icon {
  background: rgba(255,255,255,0.1);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 15px;
}

.services-section .service-cta h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.services-section .service-cta p {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.6;
}



/* ===== ABOUT SECTION MOBILE ONLY ===== */

@media (max-width:768px){

  .about{
    padding:50px 20px;
  }

  .about .container{
    flex-direction:column;
    gap:35px;
  }

  .about-image,
  .about-content{
    width:100%;
  }

  .about-image img{
    width:100%;
    height:auto;
    border-radius:12px;
  }

  .experience-box{
    position:relative;
    left:0;
    bottom:0;
    margin-top:15px;
    width:100%;
    padding:20px;
    text-align:center;
  }

  .about-content h2{
    font-size:30px;
    line-height:1.3;
  }

  .desc{
    font-size:15px;
    line-height:1.7;
  }

  .features li{
    gap:12px;
    margin-bottom:20px;
  }

  .features strong{
    font-size:16px;
  }

  .features p{
    font-size:14px;
    line-height:1.6;
  }

  .about-btn{
    width:100%;
    display:block;
    text-align:center;
  }

}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-section {
    padding: 60px 30px;
  }

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

@media (max-width: 600px) {
  .services-section .services-grid {
    grid-template-columns: 1fr;
  }

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









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

.gx-gallery{
  padding:80px 20px;
  background:#e8eaec;
}

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

.gx-title{
  text-align:center;
  font-size:42px;
  font-weight:800;
  margin-bottom:50px;
  color:#0f172a;
}

/* GRID */
.gx-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:250px;
  gap:18px;
}

/* ITEMS */
.gx-item{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  cursor:pointer;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:0.4s ease;
  background:#fff;
}

/* IMAGE */
.gx-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s ease;
}

/* HOVER EFFECT */
.gx-item:hover img{
  transform:scale(1.08);
}

.gx-item:hover{
  transform:translateY(-8px);
}

/* DIFFERENT SIZES */
.gx-big{
  grid-column:span 2;
  grid-row:span 2;
}

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

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

/* DARK OVERLAY */
.gx-item::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0)
  );
  opacity:0;
  transition:0.4s;
}

.gx-item:hover::before{
  opacity:1;
}


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

@media(max-width:768px){

  .gx-gallery{
    padding:60px 15px;
  }

  .gx-title{
    font-size:28px;
    margin-bottom:30px;
  }

  .gx-grid{
    grid-template-columns:1fr;
    grid-auto-rows:250px;
    gap:15px;
  }

  /* RESET SPECIAL SIZES */
  .gx-big,
  .gx-wide,
  .gx-tall{
    grid-column:span 1;
    grid-row:span 1;
  }

  .gx-item{
    border-radius:14px;
  }

}




/* =========================
   STATS SECTION
========================= */

.stats-section{
  background:#17368f;
  padding:90px 20px;
  color:#fff;
  position:relative;
  overflow:hidden;
}

/* DOT BACKGROUND */

.stats-section::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:radial-gradient(
    rgba(255,255,255,0.08) 1px,
    transparent 1px
  );
  background-size:22px 22px;
  pointer-events:none;
}

/* CONTAINER */

.stats-container{
  max-width:1200px;
  margin:auto;
  position:relative;
  z-index:2;
}

/* HEADING */

.stats-heading span{
  color:#22c55e;
  font-size:14px;
  letter-spacing:3px;
  font-weight:700;
}

.stats-heading h2{
  font-size:58px;
  margin-top:18px;
  margin-bottom:70px;
  line-height:1.1;
  font-weight:800;
}

/* GRID */

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  margin-bottom:60px;
}

/* CARD */

.stat-card{
  position:relative;
  padding-top:30px;
}

.stat-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;
  background:rgba(255,255,255,0.15);
}

/* ICON */

.stat-icon{
  width:58px;
  height:58px;
  background:rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-size:24px;
  margin-bottom:25px;
}

/* NUMBER */

.stat-card h3{
  font-size:72px;
  line-height:1;
  font-weight:800;
}

.stat-card h3 span{
  color:#22c55e;
}

/* TEXT */

.stat-card p{
  margin-top:14px;
  color:#dbe4ff;
  font-size:18px;
}

/* FEATURES */

.feature-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.feature-box{
  border:1px solid rgba(255,255,255,0.12);
  padding:24px;
  border-radius:10px;
  font-size:17px;
  font-weight:600;
  background:rgba(255,255,255,0.03);
  transition:0.3s ease;
}

.feature-box:hover{
  background:#22c55e;
  transform:translateY(-5px);
}


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

@media(max-width:768px){

  .stats-section{
    padding:70px 18px;
  }

  .stats-heading h2{
    font-size:34px;
    margin-bottom:45px;
  }

  .stats-grid{
    grid-template-columns:1fr;
    gap:45px;
  }

  .feature-row{
    grid-template-columns:1fr;
  }

  .stat-card h3{
    font-size:58px;
  }

  .stat-card p{
    font-size:16px;
  }

  .feature-box{
    font-size:15px;
    padding:18px;
  }

}






/* =========================
   SERVICE AREA SECTION
========================= */

.service-area-section{
  padding:90px 20px;
  background:linear-gradient(to right,#f8fbff,#eef4ff);
  font-family:'Segoe UI',sans-serif;
}

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

/* TOP CONTENT */

.content-top{
  text-align:center;
  margin-bottom:60px;
}

.tag{
  display:inline-block;
  color:#2563eb;
  font-size:14px;
  font-weight:700;
  letter-spacing:3px;
  margin-bottom:18px;
}

.content-top h1{
  font-size:52px;
  line-height:1.2;
  color:#0f172a;
  margin-bottom:22px;
  font-weight:800;
}

.content-top p{
  max-width:850px;
  margin:auto;
  font-size:18px;
  line-height:1.8;
  color:#475569;
}

/* BUTTON */

.call-btn{
  display:inline-block;
  margin-top:30px;
  padding:14px 28px;
  background:#2563eb;
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-size:16px;
  font-weight:600;
  transition:0.3s ease;
}

.call-btn:hover{
  background:#1d4ed8;
  transform:translateY(-4px);
}

/* AREA LIST */

.area-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
}

/* TAGS */

.area-list span{
  padding:14px 22px;
  background:#fff;
  border:1px solid #dbeafe;
  border-radius:50px;
  font-size:15px;
  font-weight:500;
  color:#1e293b;
  cursor:pointer;
  transition:0.3s ease;
  box-shadow:0 4px 15px rgba(0,0,0,0.04);
}

.area-list span:hover{
  background:#2563eb;
  color:#fff;
  transform:translateY(-5px);
}



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

@media(max-width:768px){

  .service-area-section{
    padding:70px 15px;
  }

  .content-top{
    margin-bottom:40px;
  }

  .content-top h1{
    font-size:32px;
  }

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

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

  .area-list{
    gap:12px;
  }

  .area-list span{
    width:100%;
    text-align:center;
    padding:14px;
    font-size:14px;
  }

}



.review-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, #6777a7, #52c2b5);
  font-family: 'Segoe UI', sans-serif;
}

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

/* HEADER */
.review-header .tag {
  color: #6366f1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
}

.review-header h2 {
  font-size: 40px;
  margin: 10px 0 40px;
  color: #111827;
}

/* CARDS */
.review-cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.review-card {
  flex: 1;
  min-width: 280px;
  padding: 25px;
  border-radius: 16px;
  background: rgba(220, 227, 224, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

/* TEXT */
.review-card p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.user h4 {
  font-size: 15px;
  margin: 0;
  color: #111;
}

.user span {
  font-size: 13px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .review-header h2 {
    font-size: 28px;
  }

  .review-cards {
    flex-direction: column;
  }
}




.contact-section {
  padding: 70px 5%;
  background: #f4f7fb;
  font-family: 'Segoe UI', sans-serif;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* FORM */
.contact-form {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #222;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.input-group label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #555;
}

.input-group input,
.input-group select,
.input-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: #4f46e5;
}

textarea {
  min-height: 120px;
  resize: none;
}

.submit-btn {
  background: #4f46e5;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #3730a3;
}

/* INFO */
.contact-info {
  flex: 1;
  background: #0f172a;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.info-item span {
  font-size: 20px;
}

.info-item p {
  font-size: 13px;
  opacity: 0.7;
}

.info-item strong {
  font-size: 15px;
}

/* MAP */
.map-box {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}












/* FOOTER */
.footer {
  background: #0b1b33;
  color: #cbd5e1;
  padding-top: 60px;
  font-family: 'Segoe UI', sans-serif;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 60px 40px;
}

/* LOGO */
.footer .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.logo-icon {
  background: #22c55e;
  padding: 10px;
  border-radius: 6px;
  font-size: 18px;
}

.footer h3 {
  color: #fff;
}

/* TEXT */
.footer p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* SOCIAL */
.socials a {
  display: inline-block;
  border: 1px solid #334155;
  color: #fff;
  padding: 8px 12px;
  margin-right: 8px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.socials a:hover {
  background: #22c55e;
}

/* HEADINGS */
.footer-col h4 {
  color: #22c55e;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #22c55e;
}

/* CONTACT */
.contact li {
  display: flex;
  gap: 10px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

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

.footer-links a {
  color: #94a3b8;
  margin-left: 20px;
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: #22c55e;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

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



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

/* SLIDES */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

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

/* IMAGE */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

/* CONTENT */
.content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
  z-index: 2;
}

.content h1 {
  font-size: 48px;
  line-height: 1.2;
}

.content span {
  color: #22c55e;
}

.content p {
  margin-top: 15px;
  font-size: 16px;
}




/* ===== FOOTER MOBILE FIX ===== */

@media (max-width:768px){

  .footer{
    padding-top:50px;
  }

  .footer-container{
    grid-template-columns:1fr;
    gap:35px;
    padding:0 20px 35px;
  }

  .footer-col{
    width:100%;
  }

  .footer .logo{
    justify-content:flex-start;
  }

  .footer h3{
    font-size:22px;
  }

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

  .footer-col h4{
    font-size:14px;
    margin-bottom:18px;
  }

  .footer-col ul li{
    font-size:14px;
    margin-bottom:12px;
  }

  .contact li{
    align-items:flex-start;
    line-height:1.6;
  }

  .socials{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
  }

  .socials a{
    margin-right:0;
  }

  /* BOTTOM */

  .footer-bottom{
    flex-direction:column;
    text-align:center;
    gap:12px;
    padding:20px;
  }

  .footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
  }

  .footer-links a{
    margin-left:0;
  }

}





@media (max-width: 768px) {

  /* HERO FIX */
  .hero,
  .hero-slider {
    height: calc(100vh - 70px);
    padding: 20px;
  }

  .slide img {
    object-fit: cover;
  }

  /* CONTENT FIX */
  .content {
    left: 20px;
    right: 20px;
    max-width: 100%;
    text-align: left;
  }

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

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

  /* GRID FIX (important) */
  .services-grid {
    grid-template-columns: 1fr !important;
  }

}









/* ===============================
   FINAL MOBILE HERO FIX (CLEAN)
=============================== */

@media (max-width: 768px) {

  /* Remove extra height conflicts */
  .hero,
  .hero-section,
  .hero-slider {
    height: calc(100vh - 70px) !important;
    min-height: unset !important;
    padding: 0 !important;
  }

  /* Fix slider image */
  .slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  /* Fix content position */
  .content {
    position: absolute;
    top: 50%;
    left: 16px;
    right: 16px;
    transform: translateY(-50%);
    max-width: 100%;
    z-index: 2;
  }

  /* Text fixes */
  .content h1 {
    font-size: 26px !important;
    line-height: 1.3;
  }

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

  /* Buttons fix (VERY IMPORTANT) */
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 14px;
  }

  /* Stats fix */
  .stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }

  .stats h2 {
    font-size: 22px;
  }

  .stats p {
    font-size: 11px;
  }

}




/* =====================================
   🔥 FINAL MOBILE FIX (OVERRIDE ALL)
===================================== */

@media (max-width: 768px) {

  /* ===== NAVBAR HEIGHT FIX ===== */
  .navbar {
    height: 70px !important;
  }

  body {
    padding-top: 70px !important;
  }

  /* ===== HERO FULL FIX ===== */
  .hero,
  .hero-section,
  .hero-slider {
    height: calc(100vh - 70px) !important;
    min-height: calc(100vh - 70px) !important;
    overflow: hidden;
  }

  /* ===== SLIDE IMAGE ===== */
  .slide,
  .slide img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
  }

  /* ===== CONTENT CENTER FIX ===== */
  .content {
    position: absolute;
    top: 50% !important;
    left: 15px !important;
    right: 15px !important;
    transform: translateY(-50%) !important;
    max-width: 100% !important;
    z-index: 2;
  }

  /* ===== TEXT FIX ===== */
  .content h1 {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }

  .content p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  /* ===== BUTTON FIX (MAIN ISSUE) ===== */
  .buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 15px !important;
  }

  .btn {
    width: 100% !important;
    padding: 12px !important;
    font-size: 14px !important;
    text-align: center !important;
  }

  /* ===== STATS FIX ===== */
  .stats {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 15px !important;
  }

  .stats h2 {
    font-size: 20px !important;
  }

  .stats p {
    font-size: 11px !important;
  }

}








/* =====================================
   🔥 FIX RIGHT SIDE EXTRA SPACE
===================================== */

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}

/* Prevent any element from breaking layout */
* {
  max-width: 100% !important;
}

/* Fix hero content overflow */
.content {
  left: 15px !important;
  right: 15px !important;
  max-width: calc(100% - 30px) !important;
}

/* Fix slider */
.hero,
.hero-slider,
.slide {
  width: 100% !important;
  overflow: hidden !important;
}

/* Fix images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 🔥 VERY IMPORTANT: Fix navbar mobile menu overflow */
@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
  }
}





.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgb(213, 124, 28);   /* 🔥 Orange color */
  color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: 0.3s;
}

.scroll-top-btn:hover {
  background-color: #ff7a00; /* darker orange on hover */
  transform: translateY(-3px);
}


#id1{
  background-color: rgb(213, 190, 132);
}
#id2{
  background-color: rgb(239, 240, 240);
}


















/* ===== FINAL MOBILE NAVBAR FIX ===== */

@media (max-width:768px){

  /* RESET BOOTSTRAP CONTAINER */
  .navbar .container{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    flex-wrap:nowrap !important;
  }

  /* BRAND AREA */
  .navbar-brand{
    display:flex !important;
    align-items:center !important;
    gap:10px;
    width:auto !important;
    max-width:75% !important;
    overflow:hidden;
    margin-right:0 !important;
  }

  /* LOGO */
  .navbar-brand .logo{
    width:42px !important;
    height:42px !important;
    object-fit:contain;
    flex-shrink:0;
  }

  /* TITLE */
  .brand-text{
    font-size:16px !important;
    font-weight:700;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    margin:0;
  }

  /* TOGGLE BUTTON */
  .navbar-toggler{
    margin-left:auto !important;
    flex-shrink:0;
    padding:6px 10px !important;
  }

}







.call-now-btn {
  display: inline-block;
  background: linear-gradient(135deg, #00b894, #009688);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
}

.call-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 150, 136, 0.5);
  background: linear-gradient(135deg, #009688, #00796b);
}