/* style.css - Nexify Digital Agency */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #212529;
  overflow-x: hidden;
}

:root {
  --primary: #1bc3eb;
  --primary-dark: #0fa5cb;
  --dark: #212529;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --shadow-sm: 0 20px 35px -10px rgba(0, 0, 0, 0.05), 0 5px 12px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 25px 40px -12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 30px 50px -20px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* Loader */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s;
}
.loader {
  width: 50px;
  height: 50px;
  border: 4px solid #e9ecef;
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Navbar Glassmorphism */
.navbar {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.02);
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.navbar-brand span {
  color: var(--primary);
}
.nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  color: var(--dark);
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--primary);
}
.btn-consult {
  background: var(--primary);
  color: var(--white);
  border-radius: 40px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.25s;
  border: none;
}
.btn-consult:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(27,195,235,0.25);
  color: white;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, rgba(27,195,235,0.03) 0%, rgba(248,249,250,0.6) 100%);
  position: relative;
  overflow: hidden;
}
.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.btn-primary-custom {
  background c: var(--primary);
  border-radius: 40px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border: none;
  transition: all 0.25s;
  color: white;
  text-decoration: none;
  display: inline-block;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(27,195,235,0.3);
  color: white;
}
.btn-outline-custom {
  border: 2px solid var(--dark);
  border-radius: 40px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  background: transparent;
  transition: all 0.25s;
  text-decoration: none;
  color: var(--dark);
  display: inline-block;
}
.btn-outline-custom:hover {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
  transform: translateY(-2px);
}
.floating-element {
  position: absolute;
  background: var(--primary);
  opacity: 0.12;
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
  z-index: 0;
}
.elem-1 {
  width: 250px;
  height: 250px;
  top: 10%;
  left: -80px;
}
.elem-2 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 5%;
  animation-duration: 8s;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}
.hero-img {
  transition: transform 0.4s;
}
.hero-img:hover {
  transform: scale(1.02);
}

/* Clients Slider */
.clients-slider {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  background: var(--white);
}
.clients-track {
  display: inline-block;
  animation: scrollClients 25s linear infinite;
}
.clients-track img {
  height: 40px;
  margin: 0 40px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s;
}
.clients-track img:hover {
  filter: grayscale(0);
  opacity: 1;
}
@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-sub {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}
.badge-achievement {
  background: rgba(27,195,235,0.12);
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-weight: 500;
  display: inline-block;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27,195,235,0.2);
}
.service-icon {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.learn-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.learn-link:hover {
  gap: 10px;
  color: var(--primary-dark);
}

/* About */
.about-img {
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* Why Choose Cards */
.why-card {
  background: white;
  padding: 1.8rem;
  border-radius: 24px;
  transition: all 0.3s;
  height: 100%;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.why-card i {
  font-size: 2rem;
  color: var(--primary);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Portfolio */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  cursor: pointer;
}
.portfolio-item img {
  width: 100%;
  transition: transform 0.5s;
  border-radius: 28px;
}
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33,37,41,0.85);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  border-radius: 28px;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-item:hover img {
  transform: scale(1.05);
}

/* Process Timeline */
.process-step {
  text-align: center;
  position: relative;
}
.step-circle {
  width: 80px;
  height: 80px;
  background: var(--light-bg);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: 0.3s;
  color: var(--primary);
  border: 2px dashed var(--primary);
}
.process-step:hover .step-circle {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

/* Counters */
.counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}

/* Testimonials Swiper */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.social-icons i {
  cursor: pointer;
  transition: color 0.2s;
}
.social-icons i:hover {
  color: var(--primary);
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: 32px;
  padding: 2rem;
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 1px solid #eef2f6;
}
.pricing-card.popular {
  border-top: 5px solid var(--primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.price {
  font-size: 3rem;
  font-weight: 800;
}

/* CTA Section */
.cta-section {
  background: var(--dark);
  border-radius: 48px;
  margin: 40px 0;
  padding: 4rem 2rem;
  background-image: radial-gradient(circle at 10% 30%, rgba(27,195,235,0.12) 0%, transparent 50%);
}

/* Footer */
footer {
  background: var(--dark);
  color: #adb5bd;
}
.footer-link {
  color: #ced4da;
  text-decoration: none;
  transition: 0.2s;
}
.footer-link:hover {
  color: var(--primary);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: 0.2s;
  z-index: 99;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.back-to-top.show {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 50px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .pricing-card.popular {
    transform: scale(1);
  }
}


/*main home page css*/


    /* ========== MAIN STYLES ========== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #212529;
      overflow-x: hidden;
    }

    :root {
      --primary: #1bc3eb;
      --primary-dark: #0fa5cb;
      --dark: #212529;
      --white: #ffffff;
      --light-bg: #f8f9fa;
      --shadow-sm: 0 20px 35px -10px rgba(0, 0, 0, 0.05), 0 5px 12px rgba(0, 0, 0, 0.02);
      --shadow-md: 0 25px 40px -12px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 30px 50px -20px rgba(0, 0, 0, 0.12);
    }

    html {
      scroll-behavior: smooth;
    }

    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 10px;
    }

    /* Loader */
    #loader-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--white);
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: opacity 0.5s ease, visibility 0.5s;
    }
    .loader {
      width: 50px;
      height: 50px;
      border: 4px solid #e9ecef;
      border-top: 4px solid var(--primary);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Navbar */
    .navbar {
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.02);
      padding: 1rem 0;
      transition: all 0.3s ease;
    }
    .navbar-brand img {
      max-height: 50px;
      width: auto;
    }
    .btn-consult {
      background: var(--primary);
      color: var(--white);
      border-radius: 40px;
      padding: 0.5rem 1.5rem;
      font-weight: 600;
      transition: all 0.25s;
      border: none;
      text-decoration: none;
      display: inline-block;
    }
    .btn-consult:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 18px rgba(27,195,235,0.25);
      color: white;
    }
    .nav-link {
      font-weight: 500;
      margin: 0 0.5rem;
      color: #212529;
      transition: color 0.2s;
    }
    .nav-link:hover {
      color: #1bc3eb;
    }

    /* Dropdown multi-level styles */
    .dropdown-submenu {
      position: relative;
    }
    .dropdown-submenu .dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: -0.5rem;
      margin-left: 0;
      border-radius: 16px;
      box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.08);
      border: none;
      padding: 0.5rem 0;
      min-width: 220px;
    }
    .dropdown-submenu:hover > .dropdown-menu {
      display: block;
    }
    .dropdown-menu {
      border-radius: 16px;
      border: none;
      box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.08);
      padding: 0.5rem 0;
      margin-top: 0.5rem;
      animation: fadeDropdown 0.2s ease;
    }
    @keyframes fadeDropdown {
      from { opacity: 0; transform: translateY(-8px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .dropdown-item {
      padding: 0.6rem 1.5rem;
      font-weight: 500;
      transition: all 0.2s;
    }
    .dropdown-item:hover {
      background-color: rgba(27,195,235,0.08);
      color: #1bc3eb;
      padding-left: 1.8rem;
    }
    
    /* ========== FIX FOR DROPDOWN GAP ISSUE - INVISIBLE BRIDGES ========== */
    /* Remove the gap between nav link and dropdown menu */
    .navbar-nav .dropdown-menu {
      margin-top: 0 !important;
      top: 100%;
    }
    
    /* Create an invisible bridge from Services link to dropdown */
    .nav-item.dropdown {
      position: relative;
    }
    
    .nav-item.dropdown::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 0;
      width: 100%;
      height: 20px;
      background: transparent;
      z-index: 100;
    }
    
    /* Extend the dropdown menu's top area to catch cursor */
    .dropdown-menu {
      margin-top: -8px !important;
      padding-top: 10px;
    }
    
    /* Add invisible bridge from dropdown back to Services link */
    .dropdown-menu::before {
      content: '';
      position: absolute;
      top: -12px;
      left: 0;
      width: 100%;
      height: 15px;
      background: transparent;
      z-index: 100;
    }
    
    /* Invisible bridges for submenus (horizontal) */
    .dropdown-submenu::after {
      content: '';
      position: absolute;
      top: 0;
      right: -15px;
      width: 20px;
      height: 100%;
      background: transparent;
      z-index: 100;
    }
    
    .dropdown-submenu .dropdown-menu {
      margin-top: -10px !important;
    }
    
    .dropdown-submenu .dropdown-menu::before {
      content: '';
      position: absolute;
      top: 0;
      left: -12px;
      width: 15px;
      height: 100%;
      background: transparent;
      z-index: 100;
    }
    
    /* Desktop hover behavior */
    @media (min-width: 992px) {
      .dropdown:hover > .dropdown-menu,
      .dropdown-submenu:hover > .dropdown-menu {
        display: block;
      }
    }
    
    /* Mobile responsive - hide bridges on mobile */
    @media (max-width: 991px) {
      .dropdown-submenu .dropdown-menu {
        left: 0;
        margin-left: 1rem;
      }
      .nav-item.dropdown::after,
      .dropdown-menu::before,
      .dropdown-submenu::after,
      .dropdown-submenu .dropdown-menu::before {
        display: none;
      }
    }

    /* Fix gap between testimonial and pricing section */
    .testimonial-section {
      padding-bottom: 0 !important;
      margin-bottom: 0 !important;
    }
    .pricing-section {
      padding-top: 0 !important;
      margin-top: 0 !important;
    }
    /* Override any conflicting bootstrap spacing */
    section.py-5.bg-light + section.py-5.bg-light {
      margin-top: 0;
      padding-top: 0;
    }

    /* Hero Section */
    .hero {
      padding: 140px 0 80px;
      background: linear-gradient(135deg, rgba(27,195,235,0.03) 0%, rgba(248,249,250,0.6) 100%);
      position: relative;
      overflow: hidden;
    }
    .hero-title {
      font-size: 3.8rem;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }
    .btn-primary-custom {
      background: var(--primary);
      border-radius: 40px;
      padding: 0.8rem 2rem;
      font-weight: 600;
      border: none;
      transition: all 0.25s;
      color: white;
      text-decoration: none;
      display: inline-block;
    }
    .btn-primary-custom:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 18px rgba(27,195,235,0.3);
      color: white;
    }
    .btn-outline-custom {
      border: 2px solid var(--dark);
      border-radius: 40px;
      padding: 0.8rem 2rem;
      font-weight: 600;
      background: transparent;
      transition: all 0.25s;
      text-decoration: none;
      color: var(--dark);
      display: inline-block;
    }
    .btn-outline-custom:hover {
      background: var(--dark);
      color: white;
      border-color: var(--dark);
      transform: translateY(-2px);
    }
    .floating-element {
      position: absolute;
      background: var(--primary);
      opacity: 0.12;
      border-radius: 50%;
      animation: float 6s infinite ease-in-out;
      z-index: 0;
    }
    .elem-1 {
      width: 250px;
      height: 250px;
      top: 10%;
      left: -80px;
    }
    .elem-2 {
      width: 120px;
      height: 120px;
      bottom: 15%;
      right: 5%;
      animation-duration: 8s;
    }
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
      100% { transform: translateY(0px); }
    }
    .hero-img {
      transition: transform 0.4s;
    }
    .hero-img:hover {
      transform: scale(1.02);
    }

    /* Section Titles */
    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .section-sub {
      color: #6c757d;
      max-width: 700px;
      margin: 0 auto;
    }
    .badge-achievement {
      background: rgba(27,195,235,0.12);
      padding: 0.5rem 1rem;
      border-radius: 40px;
      font-weight: 500;
      display: inline-block;
    }

    /* Service Cards */
    .service-card {
      background: white;
      border-radius: 24px;
      padding: 2rem 1.5rem;
      transition: all 0.35s ease;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(0,0,0,0.03);
      height: 100%;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-md);
      border-color: rgba(27,195,235,0.2);
    }
    .service-icon {
      font-size: 2.8rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
    }
    .learn-link {
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }
    .learn-link:hover {
      gap: 10px;
      color: var(--primary-dark);
    }

    /* About */
    .about-img {
      border-radius: 32px;
      box-shadow: var(--shadow-lg);
      width: 100%;
    }

    /* Why Choose Cards */
    .why-card {
      background: white;
      padding: 1.8rem;
      border-radius: 24px;
      transition: all 0.3s;
      height: 100%;
      box-shadow: var(--shadow-sm);
      text-align: center;
    }
    .why-card i {
      font-size: 2rem;
      color: var(--primary);
    }
    .why-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    /* Process Timeline */
    .process-step {
      text-align: center;
      position: relative;
    }
    .step-circle {
      width: 80px;
      height: 80px;
      background: var(--light-bg);
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      transition: 0.3s;
      color: var(--primary);
      border: 2px dashed var(--primary);
    }
    .process-step:hover .step-circle {
      background: var(--primary);
      color: white;
      border: 2px solid var(--primary);
      transform: scale(1.05);
    }

    /* Counters */
    .counter-number {
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary);
    }

    /* Testimonials */
    .testimonial-card {
      background: white;
      padding: 2rem;
      border-radius: 28px;
      box-shadow: var(--shadow-sm);
      text-align: center;
    }
    .swiper-pagination-bullet-active {
      background: var(--primary) !important;
    }

    /* Pricing Cards */
    .pricing-card {
      background: white;
      border-radius: 32px;
      padding: 2rem;
      transition: 0.3s;
      box-shadow: var(--shadow-sm);
      height: 100%;
      border: 1px solid #eef2f6;
    }
    .pricing-card.popular {
      border-top: 5px solid var(--primary);
      box-shadow: var(--shadow-md);
      transform: scale(1.02);
    }
    .price {
      font-size: 2.5rem;
      font-weight: 800;
    }

    /* CTA Section */
    .cta-section {
      background: var(--dark);
      border-radius: 48px;
      margin: 40px 0;
      padding: 4rem 2rem;
      background-image: radial-gradient(circle at 10% 30%, rgba(27,195,235,0.12) 0%, transparent 50%);
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: #adb5bd;
    }
    .footer-link {
      color: #ced4da;
      text-decoration: none;
      transition: 0.2s;
    }
    .footer-link:hover {
      color: var(--primary);
    }

    /* Back to Top */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--primary);
      width: 48px;
      height: 48px;
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      opacity: 0;
      transition: 0.2s;
      z-index: 99;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .back-to-top.show {
      opacity: 1;
    }

    @media (max-width: 992px) {
      .hero-title {
        font-size: 2.6rem;
      }
      .section-title {
        font-size: 2rem;
      }
    }
    @media (max-width: 768px) {
      .hero {
        padding: 100px 0 50px;
      }
      .hero-title {
        font-size: 2rem;
      }
      .pricing-card.popular {
        transform: scale(1);
      }
    }
  


/*main home page css*/


/*services*/

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #212529;
      overflow-x: hidden;
    }

    :root {
      --primary: #1bc3eb;
      --primary-dark: #0fa5cb;
      --dark: #212529;
      --white: #ffffff;
      --light-bg: #f8f9fa;
      --shadow-sm: 0 20px 35px -10px rgba(0, 0, 0, 0.05), 0 5px 12px rgba(0, 0, 0, 0.02);
      --shadow-md: 0 25px 40px -12px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 30px 50px -20px rgba(0, 0, 0, 0.12);
    }

    html {
      scroll-behavior: smooth;
    }

    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 10px;
    }

    /* Loader */
    #loader-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--white);
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: opacity 0.5s ease, visibility 0.5s;
    }
    .loader {
      width: 50px;
      height: 50px;
      border: 4px solid #e9ecef;
      border-top: 4px solid var(--primary);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Navbar */
    .navbar {
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.02);
      padding: 1rem 0;
      transition: all 0.3s ease;
    }
    .navbar-brand img {
      max-height: 50px;
      width: auto;
    }
    .btn-consult {
      background: var(--primary);
      color: var(--white);
      border-radius: 40px;
      padding: 0.5rem 1.5rem;
      font-weight: 600;
      transition: all 0.25s;
      border: none;
      text-decoration: none;
      display: inline-block;
    }
    .btn-consult:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 18px rgba(27,195,235,0.25);
      color: white;
    }
    .nav-link {
      font-weight: 500;
      margin: 0 0.5rem;
      color: #212529;
      transition: color 0.2s;
    }
    .nav-link:hover {
      color: #1bc3eb;
    }

    /* Dropdown styles */
    .dropdown-submenu {
      position: relative;
    }
    .dropdown-submenu .dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: -0.5rem;
      margin-left: 0;
      border-radius: 16px;
      box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.08);
      border: none;
      padding: 0.5rem 0;
      min-width: 220px;
    }
    .dropdown-submenu:hover > .dropdown-menu {
      display: block;
    }
    .dropdown-menu {
      border-radius: 16px;
      border: none;
      box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.08);
      padding: 0.5rem 0;
      margin-top: 0.5rem;
    }
    .dropdown-item {
      padding: 0.6rem 1.5rem;
      font-weight: 500;
      transition: all 0.2s;
    }
    .dropdown-item:hover {
      background-color: rgba(27,195,235,0.08);
      color: #1bc3eb;
      padding-left: 1.8rem;
    }
    
    /* Fix for dropdown gap */
    .nav-item.dropdown::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 0;
      width: 100%;
      height: 20px;
      background: transparent;
      z-index: 100;
    }
    .dropdown-menu {
      margin-top: -8px !important;
      padding-top: 10px;
    }
    .dropdown-menu::before {
      content: '';
      position: absolute;
      top: -12px;
      left: 0;
      width: 100%;
      height: 15px;
      background: transparent;
      z-index: 100;
    }
    
    @media (min-width: 992px) {
      .dropdown:hover > .dropdown-menu,
      .dropdown-submenu:hover > .dropdown-menu {
        display: block;
      }
    }
    @media (max-width: 991px) {
      .dropdown-submenu .dropdown-menu {
        left: 0;
        margin-left: 1rem;
      }
      .nav-item.dropdown::after,
      .dropdown-menu::before {
        display: none;
      }
    }

    /* Page Banner */
    .page-banner {
      padding: 160px 0 60px;
      background: linear-gradient(135deg, rgba(27,195,235,0.1) 0%, rgba(248,249,250,0.8) 100%);
      position: relative;
    }
    .page-banner h1 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }
    .breadcrumb {
      background: transparent;
      padding: 0;
    }
    .breadcrumb-item a {
      color: var(--primary);
      text-decoration: none;
    }
    .breadcrumb-item.active {
      color: var(--dark);
    }

    /* Sidebar Styles */
    .sidebar-card {
      background: var(--light-bg);
      border-radius: 20px;
      padding: 1.5rem;
      margin-bottom: 2rem;
      box-shadow: var(--shadow-sm);
    }
    .sidebar-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 3px solid var(--primary);
      display: inline-block;
    }
    .service-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .service-list li {
      margin-bottom: 0.8rem;
    }
    .service-list li a {
      color: var(--dark);
      text-decoration: none;
      display: block;
      padding: 0.6rem 1rem;
      border-radius: 12px;
      transition: all 0.3s;
      background: white;
      font-weight: 500;
    }
    .service-list li a:hover {
      background: var(--primary);
      color: white;
      transform: translateX(5px);
    }
    .service-list li a i {
      margin-right: 10px;
    }
    .service-list li a:hover i {
      color: white;
    }

    /* Contact Sidebar */
    .contact-sidebar {
      background: var(--primary);
      border-radius: 20px;
      padding: 1.5rem;
      color: white;
      text-align: center;
    }
    .contact-sidebar .btn {
      background: white;
      color: var(--primary);
      border-radius: 40px;
      padding: 0.6rem 1.5rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      margin-top: 1rem;
    }
    .contact-sidebar .btn:hover {
      background: var(--dark);
      color: white;
    }

    /* Content Styles */
    .service-content h2 {
      font-size: 2rem;
      font-weight: 700;
      margin: 1.5rem 0 1rem;
    }
    .service-content h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 1.2rem 0 0.8rem;
    }
    .service-content p {
      line-height: 1.7;
      color: #4a5568;
    }
    .feature-list {
      list-style: none;
      padding: 0;
    }
    .feature-list li {
      margin-bottom: 0.8rem;
      padding-left: 1.5rem;
      position: relative;
    }
    .feature-list li:before {
      content: "✓";
      color: var(--primary);
      position: absolute;
      left: 0;
      font-weight: bold;
    }

    /* CTA Section */
    .cta-section {
      background: var(--dark);
      border-radius: 48px;
      margin: 40px 0;
      padding: 3rem 2rem;
      background-image: radial-gradient(circle at 10% 30%, rgba(27,195,235,0.12) 0%, transparent 50%);
      text-align: center;
    }
    .btn-primary-custom {
      background: var(--primary);
      border-radius: 40px;
      padding: 0.8rem 2rem;
      font-weight: 600;
      border: none;
      transition: all 0.25s;
      color: white;
      text-decoration: none;
      display: inline-block;
    }
    .btn-primary-custom:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 18px rgba(27,195,235,0.3);
      color: white;
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: #adb5bd;
    }
    .footer-link {
      color: #ced4da;
      text-decoration: none;
      transition: 0.2s;
    }
    .footer-link:hover {
      color: var(--primary);
    }

    /* Back to Top */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--primary);
      width: 48px;
      height: 48px;
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      opacity: 0;
      transition: 0.2s;
      z-index: 99;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .back-to-top.show {
      opacity: 1;
    }

    @media (max-width: 992px) {
      .page-banner h1 { font-size: 2rem; }
      .sidebar-card { margin-top: 2rem; }
    }
 


 /*header css*/

 /* Topbar Styles */
.topbar {
  background: #212529;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.topbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icons a {
  color: #adb5bd;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  color: #1bc3eb;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-info span {
  color: #adb5bd;
  font-size: 14px;
}

.contact-info span i {
  color: #1bc3eb;
  margin-right: 8px;
  font-size: 14px;
}

/* Center Button */
.topbar-center {
  flex: 1;
  text-align: center;
}

.audit-btn {
  background: #1bc3eb;
  color: #ffffff;
  padding: 8px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 0.5px;
}

.audit-btn:hover {
  background: #0fa5cb;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Right Side - Empty for balance */
.topbar-right {
  flex: 1;
}

/* Navbar ko adjust karne ke liye */
.navbar {
  margin-top: 45px !important;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .topbar-wrapper {
    flex-direction: column;
    gap: 12px;
  }
  
  .topbar-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .contact-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .topbar-center {
    order: 3;
  }
  
  .topbar-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .navbar {
    margin-top: 0 !important;
  }
}

/* Navbar position adjustment */
.navbar {
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.02);
  padding: 1rem 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

/* Consultation / Quote Popup Modal */
.consultation-modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.consultation-modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-bottom: none;
  padding: 1.5rem 1.75rem;
}

.consultation-modal-header .modal-title {
  font-weight: 700;
  font-size: 1.35rem;
}

.consultation-modal-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 4px;
}

.consultation-modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.consultation-modal-body {
  padding: 1.75rem;
}

.consultation-alert {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.45;
}

.consultation-alert.success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.consultation-alert.error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.consultation-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.consultation-input {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.consultation-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 195, 235, 0.15);
}

.consultation-submit-btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
}

.consultation-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}