/* ===== NAVBAR ===== */
.custom-navbar{
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
  padding:12px 0;
  transition:all 0.3s ease;
  z-index:999;
}

/* LOGO */
.logo-img{
  height:50px;
}

/* LINKS */
.navbar-nav .nav-link{
  color:#334155;
  font-weight:600;
  position:relative;
  padding:6px 0;
}

.navbar-nav .nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#2563eb;
  transition:0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
  width:100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
  color:#0f172a;
}

/* CTA */
.btn-call{
  background:#f97316;
  color:#fff;
  font-weight:700;
  padding:8px 18px;
  border-radius:30px;
}

.btn-call:hover{
  background:#ea580c;
}

/* BLINK */
.blink{
  animation:pulse 1.2s infinite;
}

@keyframes pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.06)}
  100%{transform:scale(1)}
}

/* ===== CUSTOM TOGGLER ===== */
.navbar-toggler{
  border:none;
  background:none;
  width:40px;
  height:40px;
  position:relative;
}

.toggler-icon,
.toggler-icon::before,
.toggler-icon::after{
  content:"";
  position:absolute;
  width:24px;
  height:2px;
  background:#0f172a;
  left:50%;
  transform:translateX(-50%);
  transition:0.3s ease;
}

.toggler-icon{ top:50%; }
.toggler-icon::before{ top:-7px; }
.toggler-icon::after{ top:7px; }

/* CLOSE ICON */
.navbar-toggler.active .toggler-icon{
  background:transparent;
}

.navbar-toggler.active .toggler-icon::before{
  transform:translateX(-50%) rotate(45deg);
  top:0;
}

.navbar-toggler.active .toggler-icon::after{
  transform:translateX(-50%) rotate(-45deg);
  top:0;
}

/* DARK NAVBAR ON SCROLL */
.custom-navbar.scrolled{
  background:rgba(15,23,42,0.95);
  backdrop-filter:blur(10px);
}

.custom-navbar.scrolled .nav-link{ color:#cbd5e1; }
.custom-navbar.scrolled .nav-link.active,
.custom-navbar.scrolled .nav-link:hover{ color:#ffffff; }

.custom-navbar.scrolled .toggler-icon,
.custom-navbar.scrolled .toggler-icon::before,
.custom-navbar.scrolled .toggler-icon::after{
  background:#ffffff;
}
/* ===== NAVBAR ===== */
.custom-navbar{
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
  padding:12px 0;
  transition:0.3s ease;
  z-index:999;
}

/* LOGO */
.logo-img{
  height:50px;
}

/* NAV LINKS */
.navbar-nav .nav-link{
  color:#334155;
  font-weight:600;
  position:relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
  color:#0f172a;
}

/* CTA */
.btn-call{
  background:#f97316;
  color:#fff;
  font-weight:700;
  padding:8px 18px;
  border-radius:30px;
}

.btn-call:hover{
  background:#ea580c;
}

/* BLINK */
.blink{
  animation:pulse 1.2s infinite;
}

@keyframes pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.06)}
  100%{transform:scale(1)}
}

/* ===== CUSTOM TOGGLER ===== */
.navbar-toggler{
  border:none;
  background:none;
  width:40px;
  height:40px;
  position:relative;
}

.toggler-icon,
.toggler-icon::before,
.toggler-icon::after{
  content:"";
  position:absolute;
  width:24px;
  height:2px;
  background:#0f172a;
  left:50%;
  transform:translateX(-50%);
  transition:0.3s ease;
}

.toggler-icon{ top:50%; }
.toggler-icon::before{ top:-7px; }
.toggler-icon::after{ top:7px; }

/* CLOSE ICON (X) */
.navbar-toggler.active .toggler-icon{
  background:transparent;
}

.navbar-toggler.active .toggler-icon::before{
  transform:translateX(-50%) rotate(45deg);
  top:0;
}

.navbar-toggler.active .toggler-icon::after{
  transform:translateX(-50%) rotate(-45deg);
  top:0;
}


/* ===== OFFCANVAS ===== */
.mobile-menu{
  background:#ffffff;
}

/* VISIBLE CLOSE BUTTON */
.offcanvas-close{
  background:none;
  border:none;
  font-size:28px;
  font-weight:700;
  color:#0f172a;
  cursor:pointer;
}

.offcanvas-close:hover{
  color:#f97316;
}


/* ===== HERO SECTION ===== */
.hero-main{
  background: linear-gradient(
    135deg,
    #0f172a,
    #1e293b
  );
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* LEFT CONTENT */
.hero-content h1{
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.15;
}

.hero-tag{
  display: inline-block;
  background: rgba(37,99,235,0.15);
  color: #93c5fd;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-subtitle{
  font-size: 18px;
  margin-bottom: 22px;
  color: #e5e7eb;
  max-width: 600px;
}

.hero-points{
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.hero-points li{
  margin-bottom: 10px;
  font-size: 16px;
  color: #f1f5f9;
}

/* CTA BUTTONS */
.hero-cta .btn{
  padding: 13px 26px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  margin-right: 12px;
}

.btn-call{
  background: #f97316;
  color: #fff;
}

.btn-call:hover{
  background: #ea580c;
  color: #fff;
}

.btn-whatsapp{
  background: #16a34a;
  color: #fff;
}

.btn-whatsapp:hover{
  background: #15803d;
  color: #fff;
}

.hero-trust{
  margin-top: 18px;
  font-size: 14px;
  color: #cbd5f5;
}

/* FORM CARD */
.hero-form{
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.hero-form h4{
  text-align: center;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-form .form-control{
  margin-bottom: 14px;
  border-radius: 10px;
  border: none;
  padding: 12px;
}

.btn-submit{
  background: #2563eb;
  color: #fff;
  font-weight: 800;
  border-radius: 30px;
  padding: 12px;
}

.btn-submit:hover{
  background: #1d4ed8;
}

/* OFFER BADGE */
.offer-badge{
  position: absolute;
  top: -25px;
  right: 20px;
  background: linear-gradient(135deg, #fde047, #facc15);
  color: #78350f;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.offer-badge span{
  font-size: 28px;
}

/* BLINK CTA */
.blink{
  animation: pulse 1.2s infinite;
}

@keyframes pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.06)}
  100%{transform:scale(1)}
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero-main{
    padding: 80px 0;
  }
  .hero-content h1{
    font-size: 36px;
  }
  .hero-cta .btn{
    display: block;
    margin-bottom: 12px;
  }
}




/* ===== ABOUT SECTION ===== */
.about-section{
  padding: 90px 0;
  background: #f8fafc;
}

/* SECTION TITLE */
.section-title{
  text-align: center;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.5px;
}

/* LEFT CARD */
.about-card{
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #f1f5f9;
  padding: 35px;
  border-radius: 22px;
  height: 100%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.about-card h3{
  font-weight: 700;
  margin-bottom: 18px;
  color: #e5e7eb;
}

/* SERVICE LIST */
.service-list{
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}

.service-list li{
  margin-bottom: 8px;
  font-size: 15px;
  color: #e2e8f0;
}

/* FEATURE BOXES */
.about-features{
  margin-top: 20px;
}

.feature-box{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.feature-box span{
  font-size: 18px;
  font-weight: bold;
  color: #60a5fa;
}

.feature-box h6{
  margin: 0;
  font-weight: 600;
  color: #f8fafc;
}

.feature-box p{
  margin: 0;
  font-size: 14px;
  color: #cbd5e1;
}

/* RIGHT CONTENT */
.about-content p{
  color: #334155;
  font-size: 16px;
  line-height: 1.7;
}

.about-content h6{
  margin-top: 18px;
  font-weight: 700;
  color: #0f172a;
}

/* WHY LIST */
.why-list{
  padding-left: 18px;
  margin-bottom: 22px;
}

.why-list li{
  margin-bottom: 8px;
  color: #475569;
}

/* CTA BUTTON */
.enquire-btn{
  background: #f97316;
  color: #fff;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 40px;
}

.enquire-btn:hover{
  background: #ea580c;
  color: #fff;
}

/* RESPONSIVE */
@media(max-width:768px){
  .about-section{
    padding: 70px 0;
  }

  .about-card{
    margin-bottom: 25px;
  }
}



/* ===== WHY CHOOSE US ===== */
.why-choose-section{
  padding: 90px 0;
  background: #f8fafc;
}

/* TITLE */
.section-title{
  text-align: center;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.5px;
}

/* SUBTITLE */
.section-subtitle{
  text-align: center;
  max-width: 720px;
  margin: 12px auto 0;
  color: #475569;
  font-size: 16px;
}

/* BOX */
.why-box{
  background: #ffffff;
  border-radius: 22px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* TOP ACCENT LINE */
.why-box::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  opacity: 0;
  transition: 0.3s ease;
}

.why-box:hover::before{
  opacity: 1;
}

.why-box:hover{
  transform: translateY(-8px);
}

/* ICON */
.why-icon{
  width: 64px;
  height: 64px;
  background: rgba(37,99,235,0.1);
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

/* HEADING */
.why-box h5{
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

/* TEXT */
.why-box p{
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* MOBILE */
@media(max-width:768px){
  .why-choose-section{
    padding: 70px 0;
  }
}

/* service-section */
.image-services{
  padding: 80px 0;
  background: #edeef1;
}

.section-title{
  text-align: center;
  font-weight: 800;
  color: #16a34a;
}

.service-box{
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: .3s ease;
}

.service-box:hover{
  transform: translateY(-6px);
}

.service-img img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-box h5{
  text-align: center;
  font-weight: 700;
  color: #16a34a;
  padding: 15px;
  margin: 0;
}

.service-actions{
  display: flex;
  text-align: center;
}

.service-actions a{
  flex: 1;
  padding: 12px 0;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.service-actions .wa{
  background: #16a34a;
}

.service-actions .enq{
  background: #ca8a04;
}

.service-actions .call{
  background: #000;
}

.service-actions a:hover{
  opacity: .9;
}

/* Responsive */
@media(max-width:768px){
  .service-img img{
    height: 200px;
  }
}

/* ===== PROCESS SECTION ===== */
.process-section{
  padding: 100px 0;
  background: linear-gradient(
    rgba(15,23,42,0.9),
    rgba(15,23,42,0.9)
  );
  color: #f8fafc;
}

/* TITLE */
.process-title{
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.process-subtitle{
  text-align: center;
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 16px;
  color: #cbd5e1;
}

/* CARD */
.process-card{
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 22px;
  padding: 38px 25px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.35s ease;
}

.process-card:hover{
  background: rgba(255,255,255,0.15);
  transform: translateY(-8px);
}

/* ICON */
.process-icon{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 16px;
}

/* STEP NUMBER */
.step-no{
  font-size: 30px;
  font-weight: 800;
  color: #facc15;
  display: block;
  margin-bottom: 10px;
}

/* TEXT */
.process-card h5{
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.process-card p{
  font-size: 15px;
  color: #e2e8f0;
  line-height: 1.6;
}

/* MOBILE */
@media(max-width:768px){
  .process-section{
    padding: 80px 0;
  }
}

/* ===== GALLERY SECTION ===== */
.gallery-section{
  padding: 90px 0;
  background: #f8fafc;
}

/* TITLE */
.section-title{
  text-align: center;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.5px;
}

/* SUBTITLE */
.section-subtitle{
  text-align: center;
  max-width: 720px;
  margin: 12px auto 0;
  color: #475569;
  font-size: 16px;
}

/* GALLERY CARD */
.gallery-item{
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  background: #ffffff;
}

/* IMAGE */
.gallery-item img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* HOVER EFFECT */
.gallery-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15,23,42,0.1),
    rgba(15,23,42,0.4)
  );
  opacity: 0;
  transition: 0.35s ease;
}

.gallery-item:hover::after{
  opacity: 1;
}

.gallery-item:hover img{
  transform: scale(1.08);
}

.gallery-item:hover{
  transform: translateY(-8px);
}

/* MOBILE */
@media(max-width:768px){
  .gallery-section{
    padding: 70px 0;
  }

  .gallery-item img{
    height: 220px;
  }
}


/* ===== ENQUIRY SECTION ===== */
.enquiry-section{
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #0f172a,
    #1e293b
  );
  color: #f8fafc;
}

/* LEFT CONTENT */
.enquiry-content h2{
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.enquiry-content p{
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 18px;
  max-width: 520px;
}

/* POINTS */
.enquiry-points{
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.enquiry-points li{
  margin-bottom: 10px;
  font-size: 15px;
  color: #e2e8f0;
}

/* CTA BUTTONS */
.enquiry-alt-cta .btn{
  padding: 13px 30px;
  font-weight: 700;
  border-radius: 40px;
  margin-right: 12px;
}

/* FORM BOX */
.enquiry-form-box{
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  padding: 38px;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

/* FORM TITLE */
.enquiry-form-box h4{
  text-align: center;
  font-weight: 700;
  margin-bottom: 22px;
  color: #ffffff;
}

/* INPUTS */
.enquiry-form-box .form-control{
  margin-bottom: 14px;
  border-radius: 12px;
  padding: 13px;
  font-size: 15px;
  border: none;
}

/* SUBMIT */
.submit-btn{
  background: #2563eb;
  color: #fff;
  font-weight: 800;
  border-radius: 40px;
  padding: 13px;
}

.submit-btn:hover{
  background: #1d4ed8;
  color: #fff;
}

/* NOTE */
.form-note{
  text-align: center;
  font-size: 13px;
  color: #cbd5e1;
  margin-top: 14px;
}

/* CTA COLORS */
.btn-call{
  background: #f97316;
  color: #fff;
}

.btn-call:hover{
  background: #ea580c;
  color: #fff;
}

.btn-whatsapp{
  background: #16a34a;
  color: #fff;
}

.btn-whatsapp:hover{
  background: #15803d;
  color: #fff;
}

/* BLINK */
.blink{
  animation: pulse 1.2s infinite;
}

@keyframes pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.05)}
  100%{transform:scale(1)}
}

/* MOBILE */
@media(max-width:768px){
  .enquiry-section{
    padding: 80px 0;
  }

  .enquiry-alt-cta .btn{
    display: block;
    margin-bottom: 12px;
  }
}


/* ===== FOOTER ===== */
.footer-section{
  background: #0f172a;
  color: #e5e7eb;
  padding: 80px 0 0;
}

/* LOGO */
.footer-logo{
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

/* TEXT */
.footer-text{
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* CTA */
.footer-cta{
  margin-top: 18px;
}

.footer-call{
  background: #f97316;
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  padding: 9px 22px;
  margin-right: 10px;
}

.footer-call:hover{
  background: #ea580c;
  color: #fff;
}

.footer-wa{
  background: #16a34a;
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  padding: 9px 22px;
}

.footer-wa:hover{
  background: #15803d;
  color: #fff;
}

/* HEADINGS */
.footer-section h5{
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

/* LISTS */
.footer-links,
.footer-contact{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li{
  margin-bottom: 10px;
  font-size: 14px;
  color: #cbd5e1;
}

.footer-links a,
.footer-contact a{
  color: #cbd5e1;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover{
  color: #60a5fa;
  text-decoration: underline;
}

/* BOTTOM BAR */
.footer-bottom{
  background: #020617;
  margin-top: 50px;
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p{
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
}

.footer-credit{
  margin-top: 6px;
  font-size: 13px;
}

.footer-credit a{
  color: #60a5fa;
  font-weight: 600;
  text-decoration: none;
}

.footer-credit a:hover{
  text-decoration: underline;
}

.heart{
  color: #ef4444;
}

/* MOBILE */
@media(max-width:768px){
  .footer-section{
    text-align: center;
  }

  .footer-cta .btn{
    display: block;
    margin-bottom: 10px;
  }
}

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-actions{
  position: fixed;
  right: 18px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

/* CALL */
.call-btn{
  background: #16a34a;
}

.call-btn:hover{
  background: #15803d;
  transform: scale(1.08);
}

/* SCROLL TOP */
.top-btn{
  background: #2563eb;
  display: none;
}

.top-btn:hover{
  background: #1d4ed8;
  transform: scale(1.08);
}
/* WHATSAPP BUTTON */
.whatsapp-btn{
  background: #25d366;
}

.whatsapp-btn:hover{
  background: #1ebe57;
  transform: scale(1.08);
}

/* OPTIONAL PULSE EFFECT (HIGH CONVERSION) */
.whatsapp-btn{
  animation: waPulse 1.4s infinite;
}

@keyframes waPulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70%{ box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* MOBILE ADJUST */
@media(max-width:768px){
  .float-btn{
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
