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

/* When visible */
.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}
/* ================= TOP BAR ================= */
.top-bar {
  background: linear-gradient(90deg, #ba2da2, #fdfbfc);
  color: #000;
  font-size: 19px;
  font-weight: 450;
  padding: 6px 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  z-index: 99999;
}

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

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


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




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

@media (max-width: 768px) {

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

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

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

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

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





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


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

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

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

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

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

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

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

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

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

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

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




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

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

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

  .logo {
    height: 38px;
  }

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

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


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

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

.navbar-nav {
  flex: 1;
  justify-content: center; /* spreads items nicely */
}
.navbar-brand {
  flex-shrink: 0;
}

/* ================= MAIN NAVBAR ================= */
.main-navbar {
  top: 38px; /* IMPORTANT: pushes navbar below top bar */
  background-color: #f0f3f5;
}
.navbar:hover{
    color:black;
}

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


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

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

.brand-text{
    color: black;
}
.brand-text:hover{
    color:#40809d
}
/* 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: #40809d;
  padding-left: 20px;
}
/* Prevent overflow */
.navbar .container {
  flex-wrap: nowrap;
}

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


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

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

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

}


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

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

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

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

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

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

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

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

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

  .navbar-brand {
    flex: 1;
  }

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

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

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

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

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

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

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

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

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

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

}





@media (max-width: 991px) {

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

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

    background: #f2edf1;
    padding: 12px;

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

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

    z-index: 9999;
  }

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

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

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

}

.top-bar {
  height: 50px;
}

.main-navbar {
  top: 50px;
}








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

}

.call-btn:hover {
  background: #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);
}






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

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

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

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

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

}

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



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

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

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

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

















/* =========================
      SERVICES SECTION
========================= */
.modern-services{
  background: rgb(255, 255, 255);
  padding: 80px 0;
}


/* SECTION TITLE */
.section-header{
  text-align: center;
  margin-bottom: 50px;
}

.section-header span{
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: #08142e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-header h2{
  font-size: 42px;
  font-weight: 800;
  color: #08142e;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.section-header p{
  max-width: 650px;
  margin: auto;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

/* =========================
        CARD DESIGN
========================= */
.service-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: 0.4s ease;
  border: 1px solid #ececec;
  position: relative;
}

.service-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* IMAGE */
.service-img{
  height: 180px;
  overflow: hidden;
}

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

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

/* CONTENT */
.service-content{
  padding: 20px;
  text-align: center;
}

.service-content h3{
  font-size: 21px;
  font-weight: 700;
  color: #08142e;
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-content p{
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 18px;
}

/* BUTTON */
.service-content a{
  display: inline-block;
  padding: 10px 22px;
  background: rgb(65, 178, 109);
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.4s;
}

.service-content a:hover{
  color: #fff;
  transform: translateY(-3px);
}
/* ADD THIS */
.modern-services,
.modern-services h2,
.modern-services h3,
.modern-services p,
/* .modern-services a, */
.modern-services span{
  font-family: 'Playfair Display', serif;
}
/* =========================
      4 CARDS IN ROW
========================= */
@media(min-width:992px){

  .modern-services .col-lg-4{
    width: 25%;
  }

}

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

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

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

  .section-header h2{
    font-size: 28px;
    line-height: 1.3;
  }

  .section-header p{
    font-size: 14px;
    padding: 0 10px;
  }

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

  .service-img{
    height: 190px;
  }

  .service-content{
    padding: 18px;
  }

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

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

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

}





/* =========================
      WHY CHOOSE SECTION
========================= */
.why-choose-section{
  background: linear-gradient(135deg,#08142e,#0d2248);
  padding: 90px 0;
  overflow: hidden;
  position: relative;
}

/* BACKGROUND GLOW */
.why-choose-section::before{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background:rgba(255,47,146,0.15);
  border-radius:50%;
  top:-100px;
  left:-100px;
  filter:blur(80px);
}

.why-choose-section::after{
  content:"";
  position:absolute;
  width:250px;
  height:250px;
  background:rgba(0,183,255,0.12);
  border-radius:50%;
  bottom:-100px;
  right:-100px;
  filter:blur(80px);
}

/* =========================
        TOP CONTENT
========================= */
.why-top{
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.mini-title{
  display:inline-block;
  padding:10px 24px;
  border-radius:50px;
  background:rgba(255,255,255,0.08);
  color:#52bd6d;
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:20px;
}

.why-top h2{
  font-size:58px;
  line-height:1.2;
  font-weight:800;
  color:#fff;
  margin-bottom:20px;
  font-family:'Playfair Display', serif;
}

.why-top h2 span{
  color:#52bd6d;
}

.why-top p{
  max-width:750px;
  margin:auto;
  color:#d7d7d7;
  font-size:18px;
  line-height:1.8;
}

/* =========================
        WHY BOX
========================= */
.why-box{
  display:flex;
  align-items:center;
  gap:25px;
  background:rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  padding:28px;
  border-radius:25px;
  margin-bottom:30px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.4s;
  position: relative;
  z-index:2;
}

.why-box:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.09);
}

/* ICON */
.why-icon{
  min-width:110px;
  height:110px;
  border-radius:50%;
  background:green;
  display:flex;
  align-items:center;
  justify-content:center;
  /* box-shadow:0 10px 30px rgba(255,47,146,0.35); */
}

.why-icon.blue{
  background:linear-gradient(45deg,#00b7ff,#0057ff);
  /* box-shadow:0 10px 30px rgba(0,183,255,0.35); */
}

.why-icon h3{
  color:#fff;
  font-size:30px;
  font-weight:800;
  margin:0;
}

/* CONTENT */
.why-content h4{
  font-size:32px;
  color:#fff;
  margin-bottom:12px;
  font-weight:700;
}

.why-content p{
  color:#d7d7d7;
  font-size:16px;
  line-height:1.8;
  margin:0;
}

/* =========================
        IMAGE
========================= */
.why-image{
  position:relative;
  z-index:2;
}

.why-image img{
  width:100%;
  border-radius:30px;
  height:550px;
  object-fit:cover;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

/* FLOATING BOX */
.floating-box{
  position:absolute;
  bottom:30px;
  left:30px;
  background:#fff;
  padding:20px 28px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.floating-box h5{
  font-size:34px;
  font-weight:800;
  margin:0;
  color:#08142e;
}

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

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

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

  .why-top{
    margin-bottom:45px;
  }

  .why-top h2{
    font-size:34px;
    line-height:1.3;
  }

  .why-top p{
    font-size:15px;
    padding:0 10px;
  }

  .why-box{
    flex-direction:column;
    text-align:center;
    padding:25px 20px;
    border-radius:22px;
  }

  .why-icon{
    min-width:90px;
    height:90px;
  }

  .why-icon h3{
    font-size:24px;
  }

  .why-content h4{
    font-size:24px;
  }

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

  .why-image img{
    height:320px;
    border-radius:22px;
  }

  .floating-box{
    left:15px;
    bottom:15px;
    padding:14px 18px;
    border-radius:16px;
  }

  .floating-box h5{
    font-size:24px;
  }

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

}



/* =========================
        GALLERY SECTION
========================= */
.modern-gallery{
  padding: 90px 0;
  background: rgb(228, 231, 232);
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.modern-gallery::before{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background:rgba(255,47,146,0.15);
  border-radius:50%;
  top:-120px;
  left:-120px;
  filter:blur(80px);
}

.modern-gallery::after{
  content:"";
  position:absolute;
  width:250px;
  height:250px;
  background:rgba(0,183,255,0.12);
  border-radius:50%;
  bottom:-120px;
  right:-120px;
  filter:blur(80px);
}

/* =========================
        TOP CONTENT
========================= */
.gallery-top{
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.gallery-top span{
  display:inline-block;
  padding:10px 22px;
  border-radius:50px;
  background:rgba(255,255,255,0.08);
  color:#0c0e2d;
  
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:20px;
}

.gallery-top h2{
  font-size:56px;
  color:#171717;
  font-weight:800;
  line-height:1.2;
  margin-bottom:20px;
  font-family:'Playfair Display', serif;
}

.gallery-top h2 span{
  color:#07061e;
  background:none;
  padding:0;
}

.gallery-top p{
  max-width:750px;
  margin:auto;
  color:#1b1919;
  font-size:18px;
  line-height:1.8;
}

/* =========================
        GALLERY GRID
========================= */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:250px;
  gap:20px;
  position: relative;
  z-index: 2;
}

/* CARD */
.gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:25px;
  box-shadow:0 15px 40px rgba(0,0,0,0.2);
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

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

/* OVERLAY */
.gallery-card::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:0;
  transition:0.4s;
  z-index:1;
}

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

/* CUSTOM SIZES */
.gallery-card.large{
  grid-column:span 2;
  grid-row:span 2;
}

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

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

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

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

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

  .gallery-top h2{
    font-size:34px;
    line-height:1.3;
  }

  .gallery-top p{
    font-size:15px;
    line-height:1.7;
    padding:0 10px;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
    grid-auto-rows:160px;
    gap:12px;
  }

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

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

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

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

}



/* =========================
      WORK PROCESS SECTION
========================= */
.work-process-section{
  padding: 90px 0;
  background: url('images/i.jpg');
  position: relative;
  overflow: hidden;
}
  /* .work-process-section{
background:
            url('images/hero5.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
  } */
/* =========================
        TOP CONTENT
========================= */
.process-top{
  margin-bottom: 60px;
}

.process-top span{
  display:inline-block;
  padding:10px 22px;
  border-radius:50px;
  background:#08142e;
  color:#fff;
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:20px;
}

.process-top h2{
  font-size:56px;
  font-weight:800;
  color:rgb(10, 39, 10);
  margin-bottom:20px;
  line-height:1.2;
  font-family:'Playfair Display', serif;
}

.process-top h2 span{
  color:#fff;
}

.process-top p{
  max-width:700px;
  margin:auto;
  color:black;
  font-size:18px;
  line-height:1.8;
}

/* =========================
        PROCESS CARD
========================= */
.process-card{
  background:#edeff1;
  padding:35px 25px;
  border-radius:28px;
  text-align:center;
  position:relative;
  overflow:hidden;
  transition:0.4s;
  height:100%;
  border:1px solid #edeff1;
  box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

.process-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

/* NUMBER */
.process-number{
  position:absolute;
  top:18px;
  right:20px;
  font-size:50px;
  font-weight:800;
  color:rgba(8,20,46,0.06);
  line-height:1;
}

/* ICON */
.process-icon{
  width:90px;
  height:90px;
  margin:auto;
  margin-bottom:25px;
  border-radius:50%;
  background:rgb(15, 15, 15);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:38px;
  box-shadow:0 10px 30px rgba(255,47,146,0.25);
}

/* TITLE */
.process-card h3{
  font-size:28px;
  color:#08142e;
  margin-bottom:15px;
  font-weight:700;
}

/* TEXT */
.process-card p{
  font-size:15px;
  color:#666;
  line-height:1.8;
  margin:0;
}

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

  .work-process-section{
    padding:70px 0;
  }

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

  .process-top h2{
    font-size:34px;
    line-height:1.3;
  }

  .process-top p{
    font-size:15px;
    padding:0 10px;
  }

  .process-card{
    padding:30px 20px;
    border-radius:22px;
  }

  .process-number{
    font-size:42px;
  }

  .process-icon{
    width:75px;
    height:75px;
    font-size:30px;
  }

  .process-card h3{
    font-size:22px;
  }

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

}



/* =========================
      TESTIMONIALS SECTION
========================= */
.simple-testimonials{
  padding: 80px 0;
  background: #f8f9ff;
}

/* TITLE */
.testimonial-top{
  margin-bottom: 50px;
}

.testimonial-top span{
  display:inline-block;
  padding:8px 20px;
  background:#08142e;
  color:#fff;
  border-radius:50px;
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  margin-bottom:15px;
}

.testimonial-top h2{
  font-size:48px;
  color:#08142e;
  font-weight:800;
  font-family:'Playfair Display', serif;
}

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

/* CARD */
.testimonial-card{
  background:rgb(212, 216, 221);
  padding:30px 25px;
  border-radius:22px;
  position:relative;
  transition:0.4s;
  border:1px solid #ececec;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

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

/* QUOTE */
/* .quote-icon{
  font-size:65px;
  color:#ff2f92;
  line-height:1;
  margin-bottom:10px;
  font-family:serif;
} */

/* TEXT */
.testimonial-card p{
  font-size:15px;
  line-height:1.8;
  color:#060606;
  margin-bottom:25px;
}

/* CLIENT */
.client-info h4{
  font-size:20px;
  color:#08142e;
  margin-bottom:5px;
  font-weight:700;
}

.client-info span{
  color:#060606;
  font-size:14px;
}

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

  .simple-testimonials{
    padding:65px 0;
  }

  .testimonial-top{
    margin-bottom:35px;
  }

  .testimonial-top h2{
    font-size:32px;
    line-height:1.3;
  }

  .testimonial-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .testimonial-card{
    padding:25px 20px;
    border-radius:18px;
  }

  .quote-icon{
    font-size:52px;
  }

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

  .client-info h4{
    font-size:18px;
  }

}




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

/* =========================
   CONTACT SECTION
========================= */
.contact-section{
  padding:90px 15px;
  background:#f8f6f2;
  font-family:'Playfair Display', serif;
  overflow:hidden;
}

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

/* =========================
   HEADING
========================= */
.contact-heading{
  text-align:center;
  margin-bottom:55px;
}

.contact-heading span{
  display:inline-block;
  padding:8px 20px;
  border:1px solid #c7b299;
  color:#8b6f47;
  border-radius:50px;
  font-size:14px;
  letter-spacing:1px;
  margin-bottom:18px;
  background:#fff;
}

.contact-heading h2{
  font-size:54px;
  font-weight:700;
  color:#2f241b;
  margin-bottom:18px;
  line-height:1.2;
}

.contact-heading p{
  max-width:760px;
  margin:auto;
  color:#5e5144;
  line-height:1.9;
  font-size:18px;
}

/* =========================
   MAIN GRID
========================= */
.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
  align-items:stretch;
}

/* =========================
   FORM CARD
========================= */
.contact-form-box{
  background:#ffffff;
  padding:45px;
  border-radius:30px;
  border:1px solid #eadfce;
  position:relative;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

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

.form-title{
  font-size:34px;
  color:#2f241b;
  margin-bottom:30px;
  position:relative;
  z-index:2;
}

/* =========================
   INPUTS
========================= */
.input-group{
  margin-bottom:22px;
  position:relative;
  z-index:2;
}

.input-group input,
.input-group textarea{
  width:100%;
  border:none;
  border-bottom:1px solid #cbb8a0;
  background:transparent;
  padding:16px 5px;
  font-size:17px;
  color:#2f241b;
  font-family:'Playfair Display', serif;
  outline:none;
  transition:0.4s ease;
}

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

.input-group input::placeholder,
.input-group textarea::placeholder{
  color:#8a7865;
}

.input-group input:focus,
.input-group textarea:focus{
  border-color:#8b6f47;
  padding-left:10px;
}

/* =========================
   BUTTONS
========================= */
.button-group{
  display:flex;
  gap:15px;
  margin-top:25px;
  position:relative;
  z-index:2;
}

.btn-send,
.btn-reset{
  padding:15px 30px;
  border:none;
  border-radius:50px;
  cursor:pointer;
  font-size:16px;
  font-family:'Playfair Display', serif;
  transition:0.4s ease;
}

/* SEND */
.btn-send{
  background:#8b6f47;
  color:#fff;
  flex:1;
}

.btn-send:hover{
  background:#2f241b;
  transform:translateY(-3px);
}

/* RESET */
.btn-reset{
  background:#efe6db;
  color:#2f241b;
}

.btn-reset:hover{
  background:#e0d0be;
}

/* =========================
   MAP CARD
========================= */
.contact-map-box{
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  border:1px solid #eadfce;
  box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.map-top{
  padding:35px;
  background:#2f241b;
  color:#fff;
}

.map-top h3{
  font-size:34px;
  margin-bottom:10px;
}

.map-top p{
  color:#ddd;
  line-height:1.7;
}

.contact-map-box iframe{
  width:100%;
  height:420px;
  border:0;
  filter:grayscale(20%);
}

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

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

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

  .contact-form-box,
  .contact-map-box{
    border-radius:25px;
  }
}

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

  .contact-section{
    padding:65px 12px;
  }

  .contact-heading{
    margin-bottom:40px;
  }

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

  .contact-heading p{
    font-size:15px;
    line-height:1.8;
  }

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

  .form-title{
    font-size:25px;
    margin-bottom:22px;
  }

  .input-group input,
  .input-group textarea{
    font-size:15px;
    padding:14px 2px;
  }

  .button-group{
    flex-direction:column;
  }

  .btn-send,
  .btn-reset{
    width:100%;
    padding:14px;
    font-size:15px;
  }

  .map-top{
    padding:25px 20px;
  }

  .map-top h3{
    font-size:25px;
  }

  .contact-map-box iframe{
    height:300px;
  }
}

































































/* =========================
        MODERN FOOTER
========================= */
.modern-footer{
  background: rgb(1, 7, 24);
  color:#fff;
  padding-top:70px;
  position:relative;
  overflow:hidden;
}

/* GLOW EFFECT */
.modern-footer::before{
  content:"";
  position:absolute;
  width:350px;
  height:350px;
  background:rgba(255,0,128,0.12);
  border-radius:50%;
  top:-120px;
  left:-120px;
  filter:blur(80px);
}

.modern-footer::after{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background:rgba(120, 177, 200, 0.12);
  border-radius:50%;
  bottom:-120px;
  right:-120px;
  filter:blur(80px);
}

/* CONTAINER */
.footer-container{
  width:90%;
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:50px;
  position:relative;
  z-index:2;
}

/* BOX */
.footer-box h3{
  font-size:28px;
  margin-bottom:25px;
  position:relative;
  display:inline-block;
}

.footer-box h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:60px;
  height:4px;
  background:#40809d;
  border-radius:10px;
}

/* LOGO */
.footer-logo{
  font-size:42px;
  line-height:1.2;
  margin-bottom:25px;
  font-weight:800;
}

.footer-logo span{
  color:#40809d;
}

/* TEXT */
.footer-text{
  font-size:17px;
  line-height:1.9;
  color:#d7d7d7;
  margin-bottom:30px;
}

/* SOCIAL */
.footer-socials{
  display:flex;
  gap:15px;
}

.footer-socials a{
  width:48px;
  height:48px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  font-size:18px;
  transition:0.4s;
  text-decoration:none;
}

.footer-socials a:hover{
  background:#40809d;
  transform:translateY(-5px);
}

/* LINKS */
.footer-box ul{
  padding:0;
  margin:0;
  list-style:none;
}

.footer-box ul li{
  margin-bottom:16px;
}

.footer-box ul li a{
  color:#e4e4e4;
  text-decoration:none;
  font-size:17px;
  transition:0.3s;
  position:relative;
  padding-left:0;
}

.footer-box ul li a:hover{
  color:#40809d;
  padding-left:8px;
}

/* CONTACT */
.contact-item{
  display:flex;
  align-items:flex-start;
  gap:15px;
  margin-bottom:22px;
}

.contact-item i{
  font-size:20px;
  color:#40809d;
  margin-top:4px;
}

.contact-item span{
  font-size:17px;
  color:#f1f1f1;
  line-height:1.7;
}

/* BUTTON */
.footer-btn{
  display:inline-block;
  margin-top:15px;
  background:linear-gradient(45deg,#31ac54,#31ac54);
  color:#fff;
  padding:14px 30px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:0.4s;
  box-shadow:0 10px 25px rgba(255,47,146,0.25);
}

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

/* BOTTOM */
.footer-bottom{
  margin-top:60px;
  padding:25px 20px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.08);
  position:relative;
  z-index:2;
}

.footer-bottom p{
  margin:0;
  color:#cfcfcf;
  font-size:15px;
  letter-spacing:0.5px;
}

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

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

  .footer-container{
    gap:40px;
  }

  .footer-logo{
    font-size:34px;
  }

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

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

  .footer-box ul li a{
    font-size:15px;
  }

  .contact-item span{
    font-size:15px;
  }

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








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

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