.elementor-645 .elementor-element.elementor-element-5a498c9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-645 .elementor-element.elementor-element-5a498c9{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-c5965ab *//* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  padding-top: 100px;
}

/* NAVBAR MAIN */
.navbar {
  width: 70%;
  margin: 20px auto;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 10px 35px;
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: 0.4s ease;
}
/* CUSTOM FONT-WEIGHT FOR SERVICE & BLOGS */
.nav-links a[href*="services"],
.nav-links a[href*="blog"] {
  font-weight: 700 !important;
}


/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Center Box */
.center-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.logo-img {
  height: 55px !important;
  transition: 0.3s ease;
  transform: scale(1.20);
}

/* SCROLL TITLE (same exact center position) */
.scroll-title {
  font-size: 26px;
  font-weight: 700;
  color: #013220;
  opacity: 0;
  position: absolute;
  transition: 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
   font-family: 'Poppins', sans-serif;
}


/* Scroll Behavior */
.navbar.show-logo .logo-img { opacity: 1; }
.navbar.show-logo .scroll-title { opacity: 0; }

.navbar.show-text .logo-img {
  opacity: 0;
  transform: scale(0.85);
}
.navbar.show-text .scroll-title { opacity: 1; }

/* Desktop Nav Links */
.nav-links {
  display: flex;
  gap: 55px;
}

.nav-links a {
  color: #013220;
  text-decoration: none;
  font-weight: 500;
}



/* MOBILE MENU BUTTON */
.mobile-menu-btn {
  display: none;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/* MOBILE SLIDE MENU */
.mobile-slide-menu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 220px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 20px rgba(0,0,0,0.2);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: 0.4s ease;
  z-index: 2000;
}

.mobile-slide-menu a {
  text-decoration: none;
  color: #013220;
  font-size: 18px;
  font-weight: 600;
}

.mobile-slide-menu.open {
  right: 0;
}

/* MOBILE MENU */
.mobile-menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
  padding-right: 10px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: right .3s ease;
  z-index: 9999;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu a {
  font-size: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.close-btn {
  font-size: 35px;
  cursor: pointer;
  margin-bottom: 20px;
}


@media (max-width: 768px) {

  .navbar {
    top: 10px !important;
    width: 30% !important;
    padding: 5px;
    border-radius: 16px !important;

    margin-left: 20px !important;   /* 🔥 LEFT ALIGN */
    margin-right: 0 !important;     /* center remove */
              /* auto center remove */
              /* center position off */
    transform: none !important;     /* center shift off */
  
    width: 35% !important;
  
  

    background: transparent !important; /* 🔥 transparent */


    left: 0 !important;
    
    box-shadow: none !important; /* optional */
  }

}



 /*HIDE ON MOBILE */
@media (max-width: 400px) {
  .desktop-only {
    display: none !important;
    
  }
  
   /* Navbar overall improvements */
 

  .mobile-menu-icon {
    display: block !important;
  }
  
  
  /* ✨ HIDE SOCIAL ICONS ONLY IN MOBILE */
  .social-icons {
    display: none !important;
  }
  
  @media (max-width: 768px) {

    /* 🔥 FIX 1: Hides the scroll-title (SIGMA POWER TECH) when scrolling on mobile */
    .navbar.show-text .scroll-title {
        opacity: 0 !important; /* Force hide the text */
    }
    
    /* Ensures the logo stays visible (doesn't shrink/disappear) when scrolling down on mobile */
    .navbar.show-text .logo-img {
        opacity: 1 !important;
        transform: scale(1.20) !important;
    }
    
    /* Hide Social Icons for all screen sizes <= 768px */
    .social-icons {
        display: none !important;
    }

    /* ... baaki ke mobile rules (like .navbar positioning) ... */

}
  
}/* End custom CSS */