body{
  margin:0;
  font-family:'Lato', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  padding-top:72px; /* navbar height offset */
}

/* NAVBAR */
.navbar{
  transition: background 0.1s ease;
}
.navbar.scrolled{
  background:#fafafa;
  box-shadow:0 2px 10px rgba(0,0,0,.15);
}
.navbar-toggler{
      background: #062443;
    color: #fff;
    padding: 2px;
}
/* =========================
   OFFCANVAS DRAWER
========================= */
.offcanvas {
  width: 85%;
  transform: translateX(100%);
  transition: transform 0.45s ease, opacity 0.3s ease;
  opacity: 0;
}

.offcanvas.show {
  transform: translateX(0);
  opacity: 1;
}

/* Drawer links */
.offcanvas-body .nav-link {
  font-size: 1.1rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* =========================
   OCTAGON BUTTON
========================= */
.octa-btn {
  position: relative;
  width: 220px;
  height: 60px;
  background: #ff6a00;
  color: #fff;
  text-align: center;
  line-height: 60px;
  font-weight: 600;
  text-decoration: none;
  clip-path: polygon(
    10% 0%, 90% 0%,
    100% 25%, 100% 75%,
    90% 100%, 10% 100%,
    0% 75%, 0% 25%
  );
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.octa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,106,0,0.4);
  color: #fff;
}

/* Center CTA */
.drawer-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* HERO */
.hero-section{position:relative;height:85vh;overflow:hidden;margin-top:-72px}
.hero-video{position:absolute;width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,.55);z-index:1}
.hero-content{position:relative;z-index:2}

.logo-wrap{
  position:relative;
  width:200px;              /* fixed width = no shift */
  height:60px;
  display:flex;
  align-items:center;
}

.logo{
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  height:50px;
  transition:opacity .3s ease;
}

/* Default (top) */
.logo-scroll{
  opacity:0;
}

/* On scroll */
.navbar.scrolled .logo-top{
  opacity:0;
}

.navbar.scrolled .logo-scroll{
  opacity:1;
}

/* Default (Top / Hero) */
.navbar .nav-link{
  color:#ffffff;
  transition:color .3s ease;
}

/* On scroll */
.navbar.scrolled .nav-link{
  color: #222 !important;   /* white on dark bg */
}

/* Optional: hover effect */
.navbar .nav-link:hover{
  color:#dddddd;
}

.navbar.scrolled .nav-link:hover{
  color:#ffffff;
}

/* If you want DARK text instead (alternative) */
/*
.navbar.scrolled{
  background:#ffffff;
}
.navbar.scrolled .nav-link{
  color:#040947;
}
*/

.nav-link{
  color: #fff;
}

.highlight-section .col-2{
  font-size: 14px;
}

@media(max-width: 567px){
  .highlight-section .col-2{
  font-size: 11px;
}

.fw-bold{
  font-size: 18px;
}

.text-muted{
  font-size: 12px;
}
}

.offerings{
  padding-bottom: 50px;
}
.service-box{
  position:relative;
}
.service-no{
  font-size:60px;
  font-weight:300;
  opacity:.3;
}
.service-box hr{
  border-color:rgba(255,255,255,.2);
  margin:10px 0 15px;
}
.service-box p{
  opacity:.8;
}

.electro-section{
  padding:50px 0 100px;
  background:#ffffff;
  font-family:'Lato', sans-serif;
}


/* GRID */
.electro-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
}

/* LEFT IMAGE */
.image-wrap{
  position:relative;
}

.blob-bg{
  background:#eef6ff73;
  border-radius:60% 40% 50% 50% / 55% 50% 45% 40%;
  padding:40px;
}

.main-img{
  width:100%;
  border-radius:50%;
  display:block;
}

/* FLOAT IMAGE */
.float-img{
  position:absolute;
  bottom:-30px;
  left:-30px;
  background:#fff;
  padding:8px;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.float-img img{
  width:250px;
  border-radius:12px;
}

/* CONTENT */
.content-wrap h6{
  font-size:16px;
  color:#777;
  margin-bottom:8px;
}


.content-wrap p{
  color:#555;
  margin-bottom:15px;
  line-height:1.6;
}

.content-wrap .muted{
  color:#777;
}

/* CHECK LIST */
.check-list{
  list-style:none;
  padding:0;
  margin:25px 0;
}

.check-list li{
  position:relative;
  padding-left:34px;
  margin-bottom:12px;
  color:#444;
}

.check-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  width:22px;
  height:22px;
  background:#1a294f;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

/* BUTTON */
.btn-primary{
  display:inline-block;
  background:#1a294f;
  color:#fff;
  padding:14px 28px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:991px){
  .electro-grid{
    grid-template-columns:1fr;
  }

  .float-img{
    left:10px;
    bottom:-20px;
  }
}

.faq-section{
  padding: 50px 200px;
}

/* Remove default Bootstrap arrow */
.faq-accordion .accordion-button::after{
  display:none;
}

/* Add + icon */
.faq-accordion .accordion-button::before{
  content:"+";
  font-size:22px;
  font-weight:600;
  position:absolute;
  right:20px;
  color:#111;
  transition:0.3s;
}

/* When open → show minus */
.faq-accordion .accordion-button:not(.collapsed)::before{
  content:"–";
}

/* Optional styling */
.faq-accordion .accordion-button{
  position:relative;
  padding-right:50px;
  font-weight:600;
}

.faq-accordion .accordion-item{
  border:none;
  background:#f9f9f9;
  border-radius:8px;
}

.faq-accordion .accordion-button:focus{
  box-shadow:none;
}

@media(max-width: 567px){
.faq-section{
  padding: 20px 0;
}
}



/* TESTIMONIAL */
.testimonial-section{
  background:#eef6f8;
}

.testimonial-box{
  max-width:700px;
      text-align: center;
}

.quote{
  font-size:60px;
  color:#cfd8dc;
  line-height:1;
}

.testimonial-text{
  font-size:16px;
  color:#444;
  margin-top:-20px;
}

/* Hide default dark bg on arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon{
  filter:invert(1);
}

.footer-section{
  background:#ffffff;
  padding:60px 0 30px;
  font-family:'Lato', sans-serif;
}

.footer-logo{
  max-width:140px;
}

.footer-text{
  color:#555;
  font-size:14px;
  margin-bottom:15px;
}

.footer-title{
  font-weight:600;
  margin-bottom:15px;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:10px;
  font-size:14px;
  color:#555;
}

.footer-links a{
  text-decoration:none;
  color:#555;
}

.footer-links a:hover{
  color:#000;
}

.footer-input{
  max-width:200px;
}

.footer-divider{
  margin:40px 0 20px;
}

.pay-icon{
  height:22px;
  margin:0 6px;
}

.social-icon{
  display:inline-block;
  margin-left:12px;
  text-decoration:none;
  color:#555;
  font-weight:600;
}

.social-icon:hover{
  color:#000;
}

.floating-actions{
  position:fixed;
  left:20px;
  bottom:20px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.float-btn{
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,.2);
  transition:transform .3s ease;
}

.float-btn img{
  width:26px;
}

.float-btn:hover{
  transform:scale(1.1);
}

/* Colors */
.whatsapp{
  background:#25D366;
}

.call{
  background:#0d6efd;
}

/* Mobile adjust */
@media(max-width:576px){
  .floating-actions{
    left:15px;
    bottom:15px;
  }
}

.breadcrum {
    padding: 55px 40px 30px;
    background: linear-gradient(135deg, #0d6ea8, #0b5c8f);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.breadcrum h2 {
    font-size: 32px;
    color: #fff;
}

@media (max-width: 567px) {
    .breadcrum {
        padding: 30px 40px 5px;
    }
        .breadcrum h2 {
        font-size: 24px;
    }
}