
/* Reset */
    * {box-sizing: border-box; margin: 0; padding: 0;}
html, body {
    overflow-x: hidden;
    background: rgb(0, 0, 0);
    color: #fdfeff;
}
    /* Top Bar */
    .top-bar {
      background: linear-gradient(to right, #780bf5, #780bf5);
      color: white;
      padding: 10px 90px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 15px;
      flex-wrap: wrap;
      border-bottom: 1px solid #eee;
    }

    /* Round Social Icons in Top Bar */
.social-icons a {
  display: inline-block;
  width: 45px;              /* icon circle width */
  height: 45px;             /* icon circle height */
  line-height: 45px;        /* vertically center icon */
  text-align: center;       /* horizontally center icon */
  background: white;        /* circle background color */
  color: #020f46;           /* icon color */
  border-radius: 50%;       /* makes them perfectly round */
  margin-right: 8px;        /* spacing between icons */
  font-size: 16px;          /* icon size */
  transition: all 0.3s ease;
  background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;

}

.top-bar .social-icons a:hover {
  background: #ffffffec;      /* hover background */
  color: white;             /* hover icon color */
}

    .contact-info a {
      color: white;
      margin-left: 15px;
      text-decoration: none;
      font-family: 'Nunito', sans-serif;
    }

    .contact-info a:hover {color: #ffbf00;}

    .contact-info i {margin-right: 5px;}

    /* Main Header */
    header {
      
      color: white;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 999;
      padding: 22px 20px;
    }

    /* Mobile nav panel - hidden by default on desktop */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.5);
      z-index: 998;
      padding-top: 110px;
      overflow-y: auto;
    }

    .mobile-nav.open {
      display: block !important;
    }

    .mobile-nav-content {
      background: #ffffff;
      max-width: 100%;
      margin: 0;
      box-shadow: 0 6px 24px rgba(0,0,0,0.3);
      border-radius: 0 0 16px 16px;
    }

    .logo img {
      height: 72px;
      width: auto;
      border-radius: 14px;
      max-width: 100%;
      background: #fff;
      padding: 8px;
      box-shadow: 0 6px 18px rgba(10,10,30,0.08);
    }
	
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  
  transition: padding 0.25s ease, box-shadow 0.25s ease;
  padding: 12px 20px;
}

    /* Navigation (menu bar) - centered rounded container */
    nav {
      flex: 1 1 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 8px 14px;
      max-width: 1200px;
      margin: 0 auto;
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.06);
      backdrop-filter: blur(4px);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 28px;
      margin: 0;
      padding: 0;
      justify-content: center;
      align-items: center;
      font-family: 'Nunito', sans-serif;
    }

    nav ul li a {
      color: rgba(255,255,255,0.95);
      text-decoration: none;
      font-weight: 800;
      font-size: 15px;
      padding: 10px 14px;
      transition: background 0.22s, color 0.22s, transform 0.12s;
      display: inline-block;
      letter-spacing: 0.6px;
      text-transform: uppercase;
    }

    nav ul li a:hover,
    nav ul li a.active {
      background: rgba(255,255,255,0.12);
      border-radius: 8px;
      color: #fff;
      transform: translateY(-2px);
    }

    /* Nav wrapper to align logo, nav and actions */
    .nav-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 14px 22px;
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .mobile-nav ul {
      list-style: none !important;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .mobile-nav ul li { margin: 0; }

    .mobile-nav ul li a { 
      color: #1a1a1a; 
      padding: 14px 20px; 
      display: block;
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .mobile-nav ul li:last-child a { border-bottom: none; }

    .mobile-nav ul li a:hover {
      background: rgba(120, 11, 245, 0.08);
      padding-left: 28px;
      color: #780bf5;
    }

    /* Hamburger (menu-toggle) default hidden on desktop */
    .hamburger { display: none; }

    /* Dropdown */
    .dropdown {position: relative;}
    .dropdown-menu {
      display: none;
      position: absolute;
      background: #2d2d2dd1;
      min-width: 280px;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
      z-index: 999;
      top: 100%;
      left: 0;
      border-radius: 12px;
      padding: 12px 0;
    }

    .dropdown-menu li {list-style: none; margin: 0;}
    .dropdown-menu li a {
      padding: 16px 24px;
      display: block;
      color: #fff;
      text-decoration: none;
      border-bottom: 1px dotted rgba(255,255,255,0.15);
      font-size: 15px;
      font-weight: 600;
      transition: background 0.2s ease, padding-left 0.2s ease;
    }
    .dropdown-menu li:last-child a { border-bottom: none; }
    .dropdown-menu li a:hover {
      background: rgba(255,255,255,0.08);
      padding-left: 28px;
    }
    .dropdown:hover .dropdown-menu {display: block;}

    /* small dark caret box to indicate dropdown */
    nav ul li.dropdown > a {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    nav ul li.dropdown > a::after {
      content: '▼';
      display: inline-block;
      width: 20px;
      height: 20px;
      border-radius: 6px;
      position: relative;
      font-size: 12px;
      align-items: center;
      margin-left: 6px;
    }

   

    /* CTA button visual */
    .cta-btn {
      padding: 10px 24px;
      border-radius: 15px;
      background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
      font-family: 'Nunito', sans-serif;
      color: #fff;
      font-weight: 700;
      box-shadow: 0 10px 30px rgba(122,61,240,0.22);
      text-decoration: none;
      display: inline-block;
    }

    .cta-btn:hover { transform: translateY(-3px); opacity: 0.95 }

    /* Hamburger (menu-toggle) default hidden on desktop */
    .hamburger { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.04); color: #fff; }

    /* Menu Toggle (mobile) */
    .menu-toggle {
      display: none;
      font-size: 30px;
      cursor: pointer;
      color: #ffffff;
    }

    /* Overlay (Right Panel) */
    .overlay {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100%;
      background: linear-gradient(0deg, #000 0%, #fff0 100%);
      background-color: #780bf5;
      overflow-y: auto;
      transition: right 0.4s ease;
      padding: 20px;
      z-index: 2000;
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }
    .overlay.open {right: 0;}

    .overlay .close-btn {
      font-size: 24px;
      cursor: pointer;
      display: block;
      text-align: right;
      margin-bottom: 15px;
    }

    .overlay .logo-img {
      max-width: 120px;
      display: block;
      margin: 0 auto 15px auto;
      border-radius: 05px;
    }

    .overlay p {
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 20px;
      color: #ffffff;
    }

    .overlay .info-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
    }

    .overlay .info-item i {
      font-size: 18px;
      margin-right: 10px;
      color: #ffffff;
    }

    .overlay .subscribe strong {display: block; margin-bottom: 8px;}
    .overlay .subscribe-wrap {display: flex;}
    .overlay .subscribe-wrap input {
      flex: 1;
      padding: 6px 8px;
      border: none;
      border-radius: 4px 0 0 4px;
    }
    .overlay .subscribe-wrap button {
      padding: 6px 10px;
      border: none;
      background: #ffbf00;
      color: #000;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
    }

    .overlay .social-icons {
      margin-top: 20px;
      text-align: center;
	  
    }
    .overlay .social-icons a {
      color: white;
      margin: 0 8px;
      font-size: 20px;

    }
    .overlay .purchase-btn {
      display: block;
      text-align: center;
      background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
      color: #ffffff;
      padding: 10px;
      border-radius: 4px;
      margin-top: 20px;
      text-decoration: none;
      font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 991px) {
      nav ul {gap: 18px;}
      nav ul li a {font-size: 14px; padding: 8px 10px; letter-spacing: 0.4px;}
      .nav-wrapper {padding: 12px 18px;}
      .cta-btn {padding: 8px 18px; font-size: 14px;}
    }

    @media (max-width: 768px) {
      .top-bar {
        flex-direction: column;
        text-align: left;
        padding: 8px 12px;
        font-size: 13px;
      }
      .contact-info {margin-top: 8px;}
      
      /* Header mobile adjustments */
      header {padding: 16px 12px;}
      
      /* Nav wrapper mobile layout */
      .nav-wrapper {
        padding: 10px 14px;
        gap: 12px;
      }
      
      /* Hide desktop nav, show hamburger */
      nav {display: none !important;}
      .hamburger {
        display: inline-flex !important;
        cursor: pointer;
        font-size: 24px;
      }
      
      /* Logo adjustments */
      .logo img {
        height: 56px;
        padding: 6px;
      }
      
      /* CTA button mobile */
      .cta-btn {
        padding: 8px 16px;
        font-size: 13px;
      }
      
      /* Mobile nav panel positioning */
      .mobile-nav {
        padding-top: 95px;
      }
      
      .mobile-nav.open {
        display: block !important;
      }

      .mobile-nav-content {
        background: #ffffff;
        border-radius: 0 0 16px 16px;
        overflow: hidden;
      }

      .mobile-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .mobile-nav ul li a {
        color: #1a1a1a;
        padding: 14px 20px;
        display: block;
        background: transparent;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-decoration: none;
      }
      .mobile-nav ul li:last-child a {border-bottom: none;}
      .mobile-nav ul li a:hover {
        background: rgba(120, 11, 245, 0.08);
        padding-left: 28px;
        color: #780bf5;
      }
      
      /* Mobile dropdown */
      .mobile-nav .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: rgba(120, 11, 245, 0.05);
        margin: 0;
        padding: 0;
        display: none;
      }
      .mobile-nav .dropdown-menu li a {
        padding: 12px 20px 12px 36px;
        font-size: 13px;
        border-bottom: 1px dotted rgba(0,0,0,0.08);
        background: transparent;
        color: #333;
      }
      .mobile-nav .dropdown:hover .dropdown-menu {display: none;}
      .mobile-nav .dropdown.open .dropdown-menu {display: block;}
      
      /* Hide top bar social icons on mobile */
      .top-bar .social-icons {display: none;}
      
      /* Actions group mobile */
      .nav-wrapper .actions {
        gap: 8px;
        flex-shrink: 0;
      }
    }

    @media (max-width: 480px) {
      header {padding: 12px 8px;}
      
      .nav-wrapper {
        padding: 8px 10px;
        gap: 8px;
      }
      
      .logo img {
        height: 48px;
        padding: 5px;
      }
      
      .cta-btn {
        padding: 7px 14px;
        font-size: 12px;
      }
      
      .hamburger {
        width: 40px;
        height: 40px;
        font-size: 20px;
      }
      
      .mobile-nav {
        padding-top: 80px;
      }

      .mobile-nav ul li a {
        padding: 12px 16px;
        font-size: 13px;
      }

      .mobile-nav .dropdown-menu li a {
        padding: 10px 16px 10px 32px;
        font-size: 12px;
      }
    }

    @media (max-width: 360px) {
      header {padding: 10px 6px;}
      
      .nav-wrapper {
        padding: 6px 8px;
        gap: 6px;
      }
      
      .logo img {
        height: 42px;
        padding: 4px;
      }
      
      .cta-btn {
        padding: 6px 12px;
        font-size: 11px;
      }
      
      .hamburger {
        width: 36px;
        height: 36px;
        font-size: 18px;
      }

      .mobile-nav {
        padding-top: 70px;
      }

      .mobile-nav ul li a {
        padding: 11px 14px;
        font-size: 12px;
      }
    }

	 /* Hero Section */ 

/* === Modern Creative Header Section === */
    .header.creative {
      background: linear-gradient(0deg, #000 0%, #fff0 100%);
      background-color: #780bf5;
      color: #fff;
      overflow: hidden;
      position: relative;
	  background-size: cover;
    }

    /* Layout Wrapper */
    .custom-container {
      max-width: 1200px;
      margin: auto;
      padding: 30px 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 2;
      margin-top: 70px;
    }

    /* Left Content */
    .header-content {
      flex: 1 1 50%;
      padding-right: 20px;
    }

    .badge {
      display: inline-block;
      background: linear-gradient(to right, #fa6800, #f83600);
      color: #fff;
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 14px;
      margin-bottom: 20px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .main-heading {
      font-size: 40px;
      font-weight: 800;
      margin: 0 0 20px;
      line-height: 1.2;
      font-family: 'Nunito', sans-serif;
    }

    .sub-heading {
      font-size: 18px;
      color: #ffffff;
      margin-bottom: 40px;
      max-width: 500px;
    }

    /* Button Group */
    .button-container {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      font-size: 17px;
      font-weight: 600;
      color: #fff;
      border: none;
      border-radius: 50px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
    }

    .gradient-btn {
      background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
      
    }

    .btn:hover {
      transform: translateY(-3px);
      opacity: 0.9;
    }

    .btn i {
      font-size: 20px;
    }

    /* Right Image */
    .header-image {
      flex: 1 1 45%;
      text-align: center;
    }

    .header-image img {
      max-width: 100%;
      height: auto;
      filter: drop-shadow(0px 8px 15px rgba(0, 0, 0, 0.3));
      margin-top: 20px;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
      .main-heading {
        font-size: 25px;
      }
    }

    @media (max-width: 768px) {
      .custom-container {
        padding: 20px 20px;
        flex-direction: column;
        text-align: center;
        margin-top: 90px;
      }

      .header-content {
        padding: 0;
      }

      .header-image {
        margin-top: 40px;
      }

      .main-heading {
        font-size: 25px;
      }

      .sub-heading {
        margin: auto;
        font-size: 15px;
        text-align: justify;
      }

      .button-container {
        justify-content: center;
		margin-top: 20px;
      }
    }

/* Fix header logo size */
.header_logo {
  height: 50px;
  padding: 10px 0;
}


/* Override Bootstrap's navbar spacing */
.navbar-inverse {
  background-color: #222;
  border-color: transparent;
  min-height: 70px;
}

.navbar-nav > li > a {
  padding-top: 25px;
  padding-bottom: 25px;
  color: #fff !important;
  font-weight: 500;
}

.navbar-nav > li > a.active,
.navbar-nav > li > a:hover {
  color: #ffc107 !important;
}

/* To avoid overlapping under fixed-top nav */
.hero-section {
  margin-top: 0px; /* Pushes content below fixed nav */
}

/* Services About */
	
.features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  flex-wrap: wrap;
  
}

.features-text {
  flex: 1;
  min-width: 300px;
}

.features-text h5 {
  color: #0066ff;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 15px;
}

.features-text h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: 'Nunito', sans-serif;
  color: #7c47d7;
}

.features-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #ffffff;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
  margin-bottom: 30px;
}

.feature-item {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.feature-item i {
  color: #7c47d7;
  font-size: 14px;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(to right, #fa6800, #f83600);
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #0044cc;
}

.features-img {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.features-img img {
  max-width: 100%;
  height: auto;
}

/* Responsive Styles */

/* Tablets */
@media (max-width: 992px) {
  .features {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 60px 20px;
  }
  .features-text {
    text-align: center;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .features-img {
    margin-top: 30px;
  }
  .features-text h2 {
    font-size: 28px;
  }
}

/* Mobile phones */
@media (max-width: 600px) {
  .features {
    padding: 40px 15px;
    gap: 20px;
  }
  .features-text h2 {
    font-size: 22px;
  }
  .features-text p {
    font-size: 14px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .feature-item {
    font-size: 14px;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .features-text h2 {
    font-size: 22px;
  }
  .features-text p {
    font-size: 14px;
    text-align: justify;
  }
  .btn {
    
    text-align: center;
  }
}



       .workflow-section {
      padding: 60px 20px;
      text-align: center;
      font-family: 'Nunito', sans-serif;
      background: #000000
      
    }

    .workflow-section h2 {
      font-size: 35px;
      font-weight: bold;
      margin-bottom: 30px;
      color: #7c47d7;

    }

    .swiper {
      width: 100%;
      max-width: 900px;
      margin: auto;
      padding: 40px 0;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* Process card (holds circle + text) */
    .process-card {
      background: transparent;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      color:#fff;
    }

    /* Circle only for the icon */
    .process-icon {
      background: #7c47d7;
      backdrop-filter: blur(8px);
      border-radius: 50%;
      width: 150px;
      height: 150px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 0 15px rgba(255,255,255,0.2);
      border: 2px solid rgba(255,255,255,0.3);
      transition: all 0.4s ease;
    }

    /* Highlight active circle */
    .swiper-slide-active .process-icon {
      transform: scale(1.2);
      box-shadow: 0 0 25px rgba(255,255,255,0.7);
      border: 2px solid #fff;
    }

    /* Icon inside circle */
    .process-icon img {
      width: 120px;
      height: 120px;
    }

    /* Title below circle */
    .process-card h4 {
      margin: 0;
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      margin-top: 25px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .process-icon {
        width: 120px;
        height: 120px;
      }
      .workflow-section h2 {
      font-size: 22px;
      }
      .process-icon img {
        width: 95px;
        height: 95px;
      }
      .process-card h4 {
        font-size: 0.9rem;
      }
    }

/* Service Section */
.services-section {
      padding: 60px 20px;
      text-align: center;
      color: #333;
      background: linear-gradient(to right, #f5faff, #ffffff);
      font-family: 'Nunito', sans-serif;
    }

    .services-section h4 {
      color: #0073ff;
      font-weight: 600;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .services-section h2 {
      font-size: 35px;
      font-weight: 700;
      margin-bottom: 40px;
	  color: #7c47d7;
    }

    .services-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 40px;
      transition: all 0.3s ease;
    }

    .service-tab {
      width: 150px;
      flex: 0 0 auto;
      padding: 20px 10px;
      border: 1px solid #e0e0e0;
      border-radius: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
      background-color: rgb(62 41 107 / 45%);
      box-shadow: 0 4px 10px rgba(0,0,0,0.04);
      text-align: center;
    }

    .service-tab img {
      width: 70px;
      height: 70px;
      margin-bottom: 10px;
      border-radius: 50%;
      padding: 05px;
      background: #f0f6ff;
      border: 2px solid #0073ff22;
      transition: transform 0.3s ease;
    }

    .service-tab p {
      margin: 0;
      font-weight: 500;
      font-size: 14px;
      color: #ffffff;
    }

    .service-tab:hover img {
      transform: scale(1.1);
    }

    .service-tab.active {
      border-color: #0073ff;
      background: #7c47d7;
      box-shadow: 0 6px 16px rgba(0,115,255,0.15);
    }

    .service-details {
      max-width: 900px;
      margin: auto;
      display: flex;
      gap: 40px;
      text-align: left;
      align-items: center;
      background-color: rgb(62 41 107 / 45%);
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.05);  
      margin-bottom: 5px;
    }

    .service-details img {
      max-width: 250px;
      border-radius: 8px;
    }

    .service-text h3 {
      color: #ffffff;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .service-text p {
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 20px;
      color: #ffffff;
    }

    .service-text a {
      display: inline-block;
      background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
      color: #fff;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 6px;
      transition: background 0.3s;
    }

    .service-text a:hover {
      background: #005ad1;
    }

    /* Mobile */
    @media (max-width: 768px) {
      .services-tabs {
        flex-wrap: nowrap;
        
        justify-content: flex-start;
        gap: 05px;
        padding-bottom: 05px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
      }
      .services-tabs::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
      }

      .services-section h2 {
    font-size: 22px;}

      .service-tab {
        width: 50px;
        padding: 5px 5px;
        flex: 0 0 auto;
      }

      .service-tab img {
        width: 40px;
        height: 40px;
		margin-bottom: 0px;
      }

      .service-details {
        flex-direction: column;
        text-align: center;
        padding: 20px;
      }

      .service-details img {
        max-width: 180px;
        margin-bottom: 20px;
      }

      .service-text h3 {
        font-size: 20px;
      }

      .service-text p {
        font-size: 14px;
        text-align: justify;
      }
      
      .service-tab p {
  display: none;
}
    }
	
	

/* CTA Section */

.cta-section {
  position: relative;
  background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  border-radius: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: 10px;
  margin-left: 10px;
  font-family: 'Nunito', sans-serif;
}

.cta-section h2 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
 color: #ffffff;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
 
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: inline-block;
  color: #ffffff;
}

.btn.primary {
  background: #fff;
  color: #7c47d7;
}

.btn.primary:hover {
  background: #e6e6e6;
}

.btn.dark {
  background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
  color: #fff;
}

.btn.dark:hover {
  background: #7c47d7;
}

@media (max-width: 768px) {
    .cta-section h2 {
  font-size: 22px;}

}



/* Floating icons (optional) */

.icon1 { top: 10%; left: 10%; }
.icon2 { top: 20%; right: 10%; }
.icon3 { bottom: 15%; left: 20%; }
.icon4 { bottom: 10%; right: 20%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}


/* Benifits of Seo */

.seo-benefits-modern {
  background: #000000; /* White background */
  padding: 40px 20px;
  font-family: 'Nunito', sans-serif;
}

.seo-modern-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 60px;
  color: #333;
}
.seo-modern-header h2 {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #7c47d7;
}
.seo-modern-header p {
  font-size: 16px;
  color: #ffffff;
}

/* Cards grid */
.seo-modern-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: auto;
}

/* Each card */
.modern-card {
  background: #f8f9fc00;
  border: 0.5px solid #e5e7eb;
  border-radius: 15px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: #333;
  transition: all 0.3s ease;
}
.modern-card:hover {
  background: #7c47d7;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Icon box */
.icon-box {
  width: 54px;
  height: 54px;
  background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Text inside cards */
.card-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}
.card-info p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
  text-align: justify;
}

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

  .seo-modern-header h2 {
    font-size: 22px;}

    .seo-modern-header p {
    font-size: 15px;
  text-align: justify;
  }

  .modern-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .icon-box {
    margin-bottom: 12px;
  }
}

/* SEO Growth Section */
.seo-growth {
  padding: 50px 20px;
  font-family: 'Nunito', sans-serif;
  background: #000000;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.seo-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}



.seo-growth h4 {
  font-size: 25px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.seo-growth h5 {
  font-size: 20px;
  margin-bottom: 30px;
  margin-top: 25px;
  text-transform: lowercase;
  color: #ffffff;
}
/* Left Side */
.seo-left {
  flex: 1 1 500px;
}

.seo-subtitle {
  color: #ffd54f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.seo-title {
  font-size: 35px;
  font-weight: 800;
  color: #7c47d7;
  margin-bottom: 20px;
}

.fa-check-circle {
  color: #7c47d7;
}


.seo-desc {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.7;
}



/* Right Side */
.seo-right {
  flex: 1 1 500px;
  display: grid;
  gap: 25px;
}

/* Feature Box */
.seo-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  color: #fff;
}

.seo-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 15px;
  background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.seo-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}



.seo-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .seo-container {
    flex-direction: column;
  }
  .seo-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .seo-growth {
    padding: 50px 15px;
  }
  .seo-title {
    font-size: 22px;
  }
  .seo-growth h4 {
  font-size: 18px;
  }
  .seo-box {
    padding: 20px;
  }

  .seo-desc {
    font-size: 14px;}

  .seo-growth h5 {
  font-size: 16px;
  }
  .icon-circle {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* benifits of seo */

.seo-stylish {
  background: #000000;
  padding: 90px 20px;
  font-family: 'Nunito', sans-serif;
}
.seo-stylish .container {
  max-width: 1100px;
  margin: 0 auto;
}
.seo-stylish .main-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #7c47d7;
}
.seo-stylish .main-title span {
  color: #004aad;
  position: relative;
}
.seo-stylish .main-title span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #ffb703;
  border-radius: 3px;
  z-index: -1;
}
.seo-stylish .intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px dashed #7c47d7;
  transition: all 0.3s ease;
}
.benefit:last-child {
  border-bottom: none;
}
.benefit i {
  font-size: 32px;
  color: #7c47d7;
  min-width: 40px;
  transition: 0.3s;
}
.benefit:hover i {
  color: #ffffff;
  transform: scale(1.2);
}
.benefit h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #7c47d7;
}
.benefit p {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 992px) {
  .seo-stylish .main-title {
    font-size: 30px;
  }
  .seo-stylish .intro {
    font-size: 15px;
  }
}
@media(max-width: 768px) {
  .benefit {
    flex-direction: column;
    text-align: center;
    padding-bottom: 20px;
  }
  .benefit i {
    margin-bottom: 10px;
  }
}
@media(max-width: 480px) {
  .seo-stylish {
    padding: 60px 15px;
  }
  .seo-stylish .main-title {
    font-size: 24px;
  }
  .seo-stylish .intro {
    font-size: 14px;
  }
  .benefit h3 {
    font-size: 18px;
  }
  .benefit p {
    font-size: 14px;
    text-align: justify;
  }
}


/* footer */

.footer-dark {
  background: linear-gradient(181deg, #000 0%, #fff0 100%);
    background-color: #780bf5;
  color: #fff;
  padding: 0;
  font-family: 'Nunito', sans-serif;
}

/* ===== Top Info Bar ===== */
.footer-top {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgb(255, 255, 255);
}

.footer-top a{
  color: #ffffff;
  text-decoration: none;
}

.footer-logo img {
  max-height: 60px;
  border-radius: 05px;
}

.footer-contact {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #fff;
}

.footer-contact i {
  background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
  padding: 10px;
  border-radius: 50%;
  font-size: 16px;
  color: #ffffff;
}

/* ===== Footer Columns ===== */
.footer-columns {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px 20px 30px;
}

.footer-col {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::before {
  font-family: "Font Awesome 5 Free";
  content: "\f140"; /* fa-circle */
  font-weight: 900;
  color: #ffffff;
  margin-right: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-col ul li i {
  color: #ffffff;
  margin-right: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: orange;
}

.footer-about p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: rgb(255, 255, 255);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #ffffff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #ffffff;
}

.footer-bottom a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: bold;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .footer-contact {
    justify-content: left;
    gap: 20px;
  }
  .footer-columns {
    flex-direction: column;
    text-align: left;
  }
}

.services-section {
  padding: 30px;
  background: #000000;
  color: #fff;
}

p {
  font-family: 'Nunito', sans-serif;
  font-size: 15px; /* adjust as needed */
  line-height: 1.6;
  color: #080808; /* or your preferred color */
}

.section-title1 {
  color: #000000;
  font-size: 36px;
  font-weight: 700;
  border-bottom: 3px solid #38b6ff;
  display: inline-block;
  padding-bottom: 2px;
  margin-bottom: 20px;
  font-family: 'Nunito', sans-serif;
  margin-top: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #6e7b7fd6;
  padding: 15px;
  border-radius: 8px;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.mission-icon {
  background: #ffecec;
  color: #fe9006;
}

.vision-icon {
  background: #f2f0ff;
  color: #f9fd00;
}

.value-icon {
  background: #e6f7ff;
  color: #f9fd00;
}

.goal-icon {
  background: #fff7e6;
  color: #fe9006;
}

.service-title {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.mission-title { color: #fe9006; }
.vision-title { color: #f9fd00; }
.value-title { color: #f9fd00; }
.goal-title { color: #fe9006; }

.service-content p {
  margin: 2px 0 0 0;
  font-size: 14px;
  color: #ffffff;
  
}

/* -------------------------------------------------------
   Service Page Extra Section 
-------------------------------------------------------- */
 .grownotch-sections {
  
  margin: auto;
  background: linear-gradient(to right, #f5faff, #fff9f3);
}

/* Section Container */
.grownotch-section {
  
  padding: 60px 20px;
  margin: auto;
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

/* Headings */
.grownotch-section h2 {
  font-size: 28px;
  color: #088fd1;
  margin-bottom: 20px;
  text-align: left;
}

/* Paragraph */
.grownotch-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #0a0909;
  margin-bottom: 30px;
  text-align: left;
}

/* Highlight Box */
.grownotch-highlight {
  background: rgb(2 2 2 / 16%);
  border-left: 4px solid #00d4ff;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 10px;
}

/* Comparison Container */
.grownotch-comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Comparison Box */
.grownotch-box {
  flex: 1 1 300px;
  max-width: 100%;
  background: rgb(2 2 2 / 16%);
  border-radius: 10px;
  padding: 20px;
  border-top: 3px solid #00d4ff;
  transition: 0.3s;
  margin-bottom: 20px;
}

.grownotch-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.grownotch-box h3 {
  color: #000000;
  margin-bottom: 10px;
  font-size: 20px;
}

.grownotch-box p {
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
}


/* Responsive Media Queries */
@media (max-width: 992px) {
  .grownotch-section {
    padding: 40px 15px;
  }

  .grownotch-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .grownotch-section h2 {
    font-size: 22px;
  }

  .grownotch-comparison {
    flex-direction: column;
    gap: 20px;
  }

  .grownotch-box {
    width: 100%;
	flex: 1 1 200px;
  }

  .grownotch-section p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .grownotch-section {
    padding: 30px 10px;
  }

  .grownotch-section h2 {
    font-size: 20px;
  }

  .grownotch-box h3 {
    font-size: 18px;
  }

  .grownotch-box p {
    font-size: 14px;
  }
}

 /* Faq section */



   /* FAQ Section */
.faq-section {
  max-width: 100%; /* full width */
  background: #000000;
  padding: 70px 20px;
  gap: 60px;
  align-items: center;
  font-family: "Nunito", sans-serif;
  color: #fff;
}

/* Inner content wrapper */
.faq-title {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-title h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #7c47d7;
}

.faq-title p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 35px;
  line-height: 1.7;
}

/* Accordion */
.faq {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #ffffff
}

.faq-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
}

.faq-question .icon {
  width: 35px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #ff6ec7, #ff3b9d);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
  margin-top: 10px;
  padding-left: 55px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

/* Right Image */
.faq-image img {
  width: 100%;
  max-width: 520px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .faq-section {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .faq-title h2 {
    font-size: 24px;
  }
  .faq-title p {
    font-size: 14px;
  }

  .faq-question {
    font-size: 15px;}

  .faq-answer {
    padding-left: 0;
    font-size: 14px;
  }
}

/* FAQ Category Filter Styles */
.faq-categories {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: 35px;
  justify-content: flex-start;
}

.faq-category-btn {
  padding: 10px 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #ffffff;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-category-btn:hover {
  border-color: #7c47d7;
  color: #7c47d7;
  transform: translateY(-2px);
}

.faq-category-btn.active {
  background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
  border-color: #7c47d7;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(122, 61, 240, 0.3);
}

.faq-category-btn i {
  font-size: 16px;
}

/* Hide FAQ items by default */
.faq-item {
  display: none;
}

/* Show active category FAQs */
.faq-item[data-category="all"],
.faq-item.active {
  display: block;
}

/* Responsive FAQ Categories */
@media (max-width: 768px) {
  .faq-categories {
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq-category-btn {
    padding: 12px 18px;
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
    min-width: auto;
  }

  .faq-category-btn i {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .faq-categories {
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
  }

  .faq-category-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    border: 2px solid #4a3f9f;
    background: #ffffff;
    color: #4a3f9f;
    flex-shrink: 0;
  }

  .faq-category-btn.active {
    background: #4a3f9f;
    color: #ffffff;
    border-color: #4a3f9f;
  }

  .faq-category-btn i {
    font-size: 24px;
    display: block;
    margin: 0;
    line-height: 1;
    width: 24px;
    text-align: center;
  }
}
   
	  
/* why choose */

  

    .business-box {
      display: flex;
      flex-wrap: wrap;
      border: 1px solid #000000;
      border-radius: 16px;
      padding: 24px;
      max-width: 800px;
      margin: auto;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .business-left {
      flex: 1 1 300px;
      background-color: #9f9999cc;
      padding: 30px;
      border-radius: 12px;
      margin-right: 20px;
      text-align: center;
    }

    .business-left h2 {
      font-size: 22px;
      margin-bottom: 10px;
	  font-family: 'Nunito', sans-serif;
    }

    .business-left p {
      color: #666;
      margin-bottom: 20px;
    }

    .learn-btn {
      background-color: #d46600;
      color: #fff;
      border: none;
      padding: 12px 24px;
      font-size: 16px;
      border-radius: 30px;
      cursor: pointer;
	  font-family: 'Nunito', sans-serif;
    }
.learn-btn a {
    color: rgb(255 255 255);
	text-decoration: none;
	
	}

    .business-right {
      flex: 1 1 300px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
    }

    .feature-list li {
      margin-bottom: 12px;
      font-size: 16px;
      color: #444;
    }

    .feature-list li::before {
      content: "↗";
      color: #d46600;
      margin-right: 10px;
    }

    .chat-box {
      display: flex;
      align-items: center;
      margin-top: auto;
    }

    .chat-icon-wrap {
      border: 1px solid #d46600;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #d46600;
      font-size: 20px;
      margin-right: 10px;
    }

    .chat-text h3 {
      margin: 0;
      font-size: 18px;
      color: #000;
    }

    .chat-text span {
      color: #666;
      font-size: 14px;
    }

	.img-fluid1 {
    max-width: 90%;
    height: auto;
    border-radius: var(--bs-border-radius) !important;

}

.text-muted {
    --bs-text-opacity: 1;
    color: rgb(0 0 0) !important;
	}
	
	.text-muted1 {
    --bs-text-opacity: 1;
    color: rgb(0 0 0) !important;
	}
	
	h5 {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #120a0a; /* white or change as needed */
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase; /* optional */
  
  }
/* Service page banner */
.service-banner {
  position: relative;
  background: url('your-bg-image.jpg') no-repeat center center/cover;
  min-height: 250px;  /* flexible height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
}

/* Blue overlay */
.service-banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(0deg, #000 0%, #fff0 100%);
background-color: #780bf5;
  z-index: 1;
}

.service-banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 10px;
  animation: fadeInUp 1s ease-out;
  margin-top: 130px;
}

.service-banner-content h1 {
  font-size: clamp(24px, 5vw, 46px); /* responsive font size */
  font-weight: 700;
  margin: 0 0 15px;
  letter-spacing: 1px;
  line-height: 1.3;
  font-family: 'Nunito', sans-serif;
}

/* Slider dots */
.service-slider-dots {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.service-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: 0.3s;
}

.service-dot.active {
  width: 20px;
  border-radius: 30px;
  background: #fff;
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-banner {
    padding: 30px 15px;
    min-height: 200px;
  }
  .service-slider-dots {
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .service-banner {
    padding: 20px 10px;
    min-height: 180px;
  }
}


/* Service Section list */
    .services {
      text-align: center;
      padding: 50px 20px;
      position: relative;
      background: #000;
      color: #333;
      font-family: 'Nunito', sans-serif;
    }

    .services::before, .services::after {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      filter: blur(150px);
      opacity: 0.4;
      z-index: -1;
    }
    .services::before {
      top: -80px;
      left: -100px;
      background: #6ec1ff;
    }
    .services::after {
      bottom: -80px;
      right: -100px;
      background: #ff6ec7;
    }

    .services h2 {
      font-size: 35px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #7c47d7;
    }

    .services p {
      max-width: 680px;
      margin: 0 auto 20px;
      font-size: 16px;
      color: #ffffff;
      line-height: 1.7;
    }

    /* Grid Layout */
    .services-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 35px;
      max-width: 1150px;
      margin: 0 auto;
    }

    /* Card */
    .service-box {
      background: rgba(255, 255, 255, 0.038);
      backdrop-filter: blur(12px);
      padding: 35px 28px;
      border-radius: 15px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
      transition: all 0.35s ease;
      text-align: left;
      position: relative;
      overflow: hidden;
      border: 1px solid #ffffff;
    }

    .service-box:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    /* Icon */
    .icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: #fff;
      font-size: 32px;
      position: relative;
      z-index: 1;
      transition: transform 0.3s ease;
    }

    .service-box:hover .icon {
      transform: rotate(10deg) scale(1.1);
    }

    /* Glow */
   
    .red { background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
    border: 1px solid #ffffff; }

    .blue { background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
    border: 1px solid #ffffff; }

    .green { background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
    border: 1px solid #ffffff; }
    
    .yellow { background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
    border: 1px solid #ffffff; }
    

    /* Text */
    .service-box h3 {
      font-size: 22px;
      margin-bottom: 14px;
      color: #ffffff;
      font-weight: 600;
    }

    .service-box p {
      font-size: 16px;
      color: #ffffff;
      line-height: 1.8;
    }

    @media (max-width: 768px) {

      .services {
        padding: 20px 20px;
      }
      .services h2 {
    font-size: 22px;}

    .services p {
      font-size: 14px;
      text-align: justify;
    }
    .service-box h3 {
      font-size: 20px;
      color: #ffffff;
    }
    }
    
    /* Service page seo List */

    .seo-section {
  background: #000000; /* White background */
  color:#333;
  font-family: 'Nunito', sans-serif;
  padding: 60px 20px;
}

.seo-header {
  text-align: center;
  margin-bottom: 50px;
}

.seo-header h2 {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff7e00, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #7c47d7;
  background-clip: text;
}

.seo-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.seo-card {
  background: #ffffff00;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #eaeaea;
  transition: 0.3s ease-in-out;
}

.seo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 119, 255, 0.15);
}

.seo-card .icon-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.seo-card .icon-title i {
  font-size: 2rem;
  color: #7c47d7;
  margin-right: 12px;
}

.seo-card h3 {
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(90deg, #ff7e00, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #7c47d7;
  background-clip: text;
}

.seo-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.seo-card ul li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  font-size: 16px;
  color: #ffffff;
}

.seo-card ul li::before {
  content: '\f00c'; /* fa-check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #7c47d7;
  font-size: 14px;
}

    .nds-service-page {
      text-align: center;
      padding: 60px 20px;
      background: #000
      color: #333;
      font-family: 'Nunito', sans-serif;
    }

    .nds-service-page h2 {
      font-size: 35px;
      margin-bottom: 40px;
      color: #7c47d7;
      line-height: 1.5;
      font-weight: 700;
    }

    .nds-service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .nds-service-box {
      background: #ffffff00;
      padding: 25px;
      border-radius: 15px;
      border: 1px solid #ffffff;
      transition: all 0.3s ease;
    }

    .nds-service-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    }

    .nds-service-box i {
      font-size: 40px;  
      color: #7c47d7;
      margin-bottom: 18px;
    }

    .nds-service-box h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #ffffff;
      font-weight: 700;
    }

    .nds-service-box p {
      font-size: 15px;
      color: #ffffff;
      line-height: 1.6;
      text-align: justify;
    }

    @media (max-width: 900px) {
      .nds-service-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .nds-service-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {

      .nds-service-page h2 {
    font-size: 22px;
  margin-bottom: 20px;
}

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

    .nds-service-box p {
    font-size: 14px;}
    }


      a { text-decoration: none;}

  /* ===== Contact Section ===== */
  .nds-contact-section {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    padding: 20px;
  }

  /* ===== Glass Box ===== */
  .nds-glass-box {

    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
  }

  .nds-glass-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  }

  /* ===== Headings ===== */
  .nds-contact-info h2,
  .nds-contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ffffff;
    border-left: 4px solid #7c47d7;
    padding-left: 12px;
  }

  /* ===== Info Items ===== */
  .nds-info-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
  }

  .nds-info-item i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 14px;
  }

  .nds-info-item p { font-size: 15px; color: #ffffff; }

  /* ===== Social Icons ===== */
  .nds-social-icons {
    margin-top: 25px;
    display: flex;
    gap: 12px;
  }

  .nds-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    width: 38px;
    color: #ffffff;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
    transition: 0.3s;
  }

  .nds-social-icons a:hover {
    background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
    transform: scale(1.2);
  }

  /* ===== Form ===== */
  .nds-contact-form .nds-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
  }

  .nds-input-group { width: 100%; position: relative; }

  .nds-input-group i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 16px;
    pointer-events: none;
  }

  .nds-contact-form input,
  .nds-contact-form select,
  .nds-contact-form textarea {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    background: rgb(255 255 255);
    color: #000000;
    backdrop-filter: blur(8px);
    transition: 0.3s;
    margin-bottom: 10px;
  }

  .nds-contact-form input::placeholder,
  .nds-contact-form textarea::placeholder { color: #ccc; }

  .nds-contact-form input:focus,
  .nds-contact-form select:focus,
  .nds-contact-form textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.2);
    box-shadow: 0 0 12px rgba(119, 0, 254, 0.5);
  }

  .nds-contact-form textarea { resize: none; min-height: 120px; }

  .nds-contact-form button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 15px;
  }

  .nds-contact-form button:hover {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    transform: translateY(-2px);
  }

  @media (max-width: 950px) {
    .nds-contact-section { grid-template-columns: 1fr; }
    .nds-form-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 500px) {
    .nds-contact-info h2, .nds-contact-form h2 { font-size: 22px; }
  }


/* Blog Grid */
  .nds-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 50px 100px;
    background: #000;
  }
  @media (max-width: 1000px) { 
    .nds-blog-grid { grid-template-columns: repeat(2,1fr); } 
  }
  @media (max-width: 640px) { 
    .nds-blog-grid { grid-template-columns: 1fr; margin: 30px 20px; } 
  }

  /* Card */
  .nds-card {
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(16,24,40,0.08);
    display: flex;
    flex-direction: column;
    min-height: 420px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .nds-card:hover { 
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(2,6,23,0.12); 
  }

  .nds-media {
    position: relative;
    height: 210px;
    overflow: hidden;
  }
  .nds-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .nds-card:hover .nds-media img { transform: scale(1.08) rotate(.5deg); }

  .nds-overlay {
    position: absolute; 
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.45));
    border: 1px solid #ffffff;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .nds-card:hover .nds-overlay { opacity: 1; }

  .nds-content {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    background: #000;
    border: 1px solid #ffffff;
    border-radius: 15px;
    
  }

  .nds-meta-row {
    display:flex;
    justify-content: space-between;
    font-size:13px;
    color: #ffffff;
  }

  .nds-title-sm {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #7c47d7;
    transition: color 0.3s ease;
    font-family: 'Nunito', sans-serif;
  }
  .nds-card:hover .nds-title-sm { color:#ffffff; }

  .nds-excerpt {
    color: #ffffff;
    font-size: 14px;
    flex:1;
  }

  /* Author + Button Row */
  .nds-footer-row {
    display:flex;
    align-items:center;
    justify-content: space-between; /* author left, button right */
    margin-top: 14px;
  }

  .nds-author {
    display:flex;
    gap:12px;
    align-items:center;
  }
  .nds-avatar {
    width:40px;
    height:40px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    box-shadow: 0 6px 18px rgba(2,6,23,0.07);
  }

  .nds-avatar img {
    width: 100%;
  }
  .nds-author-info { 
    font-size:13px; 
    color:#ffffff; 
  }

  /* Read More Button */
  .nds-readmore {
    padding: 8px 16px;
    background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
    color:#fff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: 'Nunito', sans-serif;
  }
  .nds-readmore:hover {
    background:#3340cc;
  }


  /* Blog Post Css */
.nds-blog-post { font-family: 'Nunito', sans-serif;
 max-width:900px; margin:60px auto; background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 12px 40px rgba(0,0,0,0.08); font-family:'Poppins', sans-serif; color:#1e2026; line-height:1.7; }
.nds-featured-img { width:100%; height:auto; object-fit:cover; display:block; border-radius:16px 16px 0 0; }
.nds-post-content { 
  padding:40px 30px; 
 background: #000000;
 border: 1px solid #ffffff;
}

/* Title & Meta */
.nds-post-title { font-family: 'Nunito', sans-serif;
font-size:32px; font-weight:700; margin-bottom:16px; }
.nds-post-meta { display:flex; align-items:center; gap:15px; margin-bottom:30px; font-size:14px; color:#6b7280; }
.nds-avatar { width:50px; height:50px; border-radius:50%; overflow:hidden; flex-shrink:0; }
.nds-author-info strong { font-family: 'Nunito', sans-serif;
 color:#0f172a; }

/* Blog Content */
.nds-blog-content h2 { font-family: 'Nunito', sans-serif;
 font-size:24px; font-weight:700; margin:30px 0 12px; color:#7c47d7; }
 .nds-blog-content h3 { font-family: 'Nunito', sans-serif;
 font-size:20px; font-weight:700; margin:30px 0 12px; color:#7c47d7; }
 .nds-blog-content h4 { font-family: 'Nunito', sans-serif;
 font-size:18px; font-weight:700; margin:30px 0 12px; color:#7c47d7; }
.nds-blog-content p { font-family: 'Nunito', sans-serif;
 font-size:16px; margin-bottom:18px; color:#ffffff; }

 .nds-blog-content li { font-family: 'Nunito', sans-serif; font-size:16px; margin-bottom:18px; color:#ffffff; margin-left: 40px;}

.nds-blog-content img { max-width:100%; border-radius:12px; margin:18px 0; box-shadow:0 6px 20px rgba(0,0,0,0.05); transition: transform 0.4s; }
.nds-blog-content img:hover { transform:scale(1.03); }
.nds-blog-content blockquote { border-left:5px solid #7c47d7; padding:12px 18px; font-family: 'Nunito', sans-serif;
 color:#ffffff; background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
background-color: rgb(62 41 107 / 45%);
 border-radius:6px; margin:24px 0; }

/* Tags */
.nds-blog-tags { margin-top:30px; display:flex; flex-wrap:wrap; gap:10px; }
.nds-blog-tags span { font-family: 'Nunito', sans-serif;
 background: linear-gradient(0deg, #9353ff 0%, #3d296b 100%) !important;
 color:white; padding:6px 12px; border-radius:999px; font-size:13px; cursor:pointer; transition:0.3s; }
.nds-blog-tags span:hover { background:#3f4ed8; }

/* Related Posts */
.nds-related-posts { margin-top:50px; }
.nds-related-posts h3 { font-family: 'Nunito', sans-serif;
 font-size:22px; margin-bottom:20px; color:#ffffff; }
.nds-related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.nds-related-card { background:#fefefe; border-radius:12px; overflow:hidden; box-shadow:0 6px 20px rgba(0,0,0,0.05); transition: transform 0.3s; }
.nds-related-card img { width:100%; height:150px; object-fit:cover; }
.nds-related-card:hover { transform:translateY(-6px); }
.nds-related-card h4 { font-family: 'Nunito', sans-serif;
 font-size:16px; font-weight:600; margin:12px; }
.nds-related-card p { font-family: 'Nunito', sans-serif;
 font-size:14px; color:#6b7280; margin:0 12px 12px; }

/* Links */
.nds-blog-post a { color:#7c47d7; text-decoration:none; } 
.nds-blog-post a:hover { text-decoration:underline; }

/* Responsive */
@media(max-width:1000px){ .nds-related-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:640px){ 
  .nds-post-title{font-size:26px;} 
  .nds-blog-content h2{font-size:20px;} 
  .nds-related-grid{ grid-template-columns:1fr; }
  .nds-post-content{padding:30px 20px;}
}

/* FAQ Section */
.nds-faq-section { margin-top:50px; }
.nds-faq-section h3 { font-family: 'Nunito', sans-serif; font-size:22px; margin-bottom:20px; color:#ffffff; }
.nds-faq-accordion { display:flex; flex-direction:column; gap:12px; }
.nds-faq-item { background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)); background-color: rgb(62 41 107 / 45%); border-radius:10px; overflow:hidden; border:1px solid rgba(255,255,255,0.1); transition:0.3s; }
.nds-faq-item:hover { border-color:rgba(124,71,215,0.4); }
.nds-faq-question { display:flex; justify-content:space-between; align-items:center; padding:18px 20px; cursor:pointer; user-select:none; }
.nds-faq-question span:first-child { font-family: 'Nunito', sans-serif; font-size:16px; font-weight:600; color:#ffffff; flex:1; padding-right:15px; }
.nds-faq-icon { font-size:24px; color:#7c47d7; font-weight:700; width:24px; text-align:center; transition:transform 0.3s; }
.nds-faq-answer { max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
.nds-faq-answer p { font-family: 'Nunito', sans-serif; font-size:15px; color:#e5e7eb; padding:0 20px 18px 20px; margin:0; line-height:1.6; }
.nds-faq-item.active .nds-faq-answer { max-height:500px; }
.nds-faq-item.active .nds-faq-icon { transform:rotate(45deg); }
