
/* Reset */
    * {box-sizing: border-box; margin: 0; padding: 0;}
html, body {
    overflow-x: hidden;
}
    /* Top Bar */
    .top-bar {
      background: linear-gradient(to right, #020f46, #0435b3);
      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 */
.top-bar .social-icons a {
  display: inline-block;
  width: 35px;              /* icon circle width */
  height: 35px;             /* icon circle height */
  line-height: 35px;        /* 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;
}

.top-bar .social-icons a:hover {
  background: #ff6200ec;      /* 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 {
      background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.7));
      color: white;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      position: relative;
      z-index: 1000;
	  
    }

    .logo img {
      height: 70px;
      width: auto;
      border-radius: 10px;
      max-width: 100%;
    }
	
header.sticky {
background: linear-gradient(rgb(255 255 255), rgb(255 255 255));
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  top: 0;
  left: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
	  position: fixed;
	  width: 100%;
}

    /* Navigation */
    nav {flex: 1 1 auto; text-align: right;}

    nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin: 0;
      padding: 0;
      justify-content: flex-end;
    }

    nav ul li a {
      color: #0433ad;
      text-decoration: none;
      font-weight: 650;
      font-size: 18px;
      padding: 8px 14px;
      transition: background 0.3s, color 0.3s;
    }

    nav ul li a:hover,
    nav ul li a.active {
      background-color: #f93a00;
      border-radius: 5px;
      color: #000000;
    }

    /* Dropdown */
    .dropdown {position: relative;}
    .dropdown-menu {
      display: none;
      position: absolute;
      background-color: white;
      min-width: 200px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      z-index: 999;
      top: 100%;
      left: 0;
      border-radius: 8px;
    }

    .dropdown-menu li {list-style: none;}
    .dropdown-menu li a {
      padding: 10px 15px;
      display: block;
      color: #333;
      text-decoration: none;
      border-bottom: 1px solid #eee;
      font-size: 15px;
    }
    .dropdown-menu li a:hover {background-color: #f2f2f2;}
    .dropdown:hover .dropdown-menu {display: block;}

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

    /* Overlay (Right Panel) */
    .overlay {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100%;
      background: linear-gradient(to bottom, #020f46, #0435b3);
      color: #fff;
      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: #f83c00;
    }

    .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(to right, #fa6800, #f83600);
      color: #000;
      padding: 10px;
      border-radius: 4px;
      margin-top: 20px;
      text-decoration: none;
      font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 991px) {
      nav ul li a {font-size: 16px; padding: 7px 12px;}
    }

    @media (max-width: 768px) {
      .top-bar {
        flex-direction: column;
        text-align: left;
        padding: 05px 05px;
		font-size: 13px;

      }
      .contact-info {
		  margin-top: 8px;}
      nav {
        width: 100%;
        display: none;
        margin-top: 10px;
        text-align: left;
      }
      nav ul {
        flex-direction: column;
        gap: 12px;
        background: #d4d9db;
        padding: 15px;
        border-radius: 10px;
      }
      .menu-toggle {display: block;}
      nav.show {display: block;}
      .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
      }
      .dropdown:hover .dropdown-menu {display: none;}
      .dropdown.open .dropdown-menu {display: block;}
      .social-icons {display: none;}
    }

    @media (max-width: 480px) {
      .logo img {height: 50px;}
      nav ul li a {font-size: 15px; padding: 8px;}
    }

    @media (max-width: 360px) {
      header {
        padding: 12px;
        
        align-items: flex-start;
      }
      .menu-toggle {align-self: flex-end; font-size: 28px;}
      nav ul {width: 100%;}
    }

	 /* Hero Section */ 

/* === Modern Creative Header Section === */
    .header.creative {
      background: url('https://nextgendigitalseo.in/assets/images/nextgendigitalseo-home-banner.webp') no-repeat center center;
      color: #fff;
      overflow: hidden;
      position: relative;
	  background-size: cover;
    }

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

    /* 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: #e0e0e0;
      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(45deg, #fa6800, #f83600);
      box-shadow: 0 4px 10px rgba(248, 54, 0, 0.4);
    }

    .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));
    }

    /* 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;
      }

      .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: 80px 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;
}

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

.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: #000000;
}

.feature-item i {
  color: #0066ff;
  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: linear-gradient(135deg, rgba(0, 92, 255, 0.95), rgba(0, 42, 120, 0.95));
      color: white;
    }

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

    }

    .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: rgba(255, 255, 255, 0.15);
      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: #000000;
    }

    .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: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      background: #fff;
      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;
    }

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

    .service-tab.active {
      border-color: #0073ff;
      background: #f8fbff;
      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: #fff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    }

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

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

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

    .service-text a {
      display: inline-block;
      background: #0073ff;
      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: url(https://nextgendigitalseo.in/assets/images/nextgendigitalseo-home-banner.webp) no-repeat center center / cover;
  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: #000000;
}

.btn.primary {
  background: #fff;
  color: #007bff;
}

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

.btn.dark {
  background: #000;
  color: #fff;
}

.btn.dark:hover {
  background: #333;
}

@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: #ffffff; /* 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;
}
.seo-modern-header p {
  font-size: 16px;
  color: #000000;
}

/* 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: #f8f9fc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: #333;
  transition: all 0.3s ease;
}
.modern-card:hover {
  background: #eef2f7;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Icon box */
.icon-box {
  width: 54px;
  height: 54px;
  background: #0056d2;
  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;
}
.card-info p {
  font-size: 15px;
  color: #555;
  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: linear-gradient(135deg, rgba(0, 92, 255, 0.95), rgba(0, 42, 120, 0.95));
  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: #fff;
  margin-bottom: 20px;
}



.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: #fff;
  color: #004aad;
  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: #fff;
  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: #111;
}
.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: #444;
  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 #2c08f4;
  transition: all 0.3s ease;
}
.benefit:last-child {
  border-bottom: none;
}
.benefit i {
  font-size: 32px;
  color: #0d61f7;
  min-width: 40px;
  transition: 0.3s;
}
.benefit:hover i {
  color: #ff5722;
  transform: scale(1.2);
}
.benefit h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #111;
}
.benefit p {
  margin: 0;
  font-size: 16px;
  color: #000000;
  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(to right, #020f46, #0435b3);
  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: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
  font-size: 16px;
  color: #f65421;
}

/* ===== 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: #ff5722;
  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: #fa5521;
  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: orange;
}

/* 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: #fff;
  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: linear-gradient(
    135deg,
    rgba(0, 92, 255, 0.95),
    rgba(0, 42, 120, 0.95)
  );
  padding: 70px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  font-family: "Nunito", sans-serif;
  color: #fff;
}

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

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

.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: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 162, 255, 0.1);
}

.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: #222;
}

.faq-question .icon {
  width: 35px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  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: #000000;
  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;
  }
}
   
	  
/* 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(135deg, rgba(0, 92, 255, 0.95), rgba(0, 42, 120, 0.95));
  z-index: 1;
}

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

.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: linear-gradient(135deg, rgba(0, 92, 255, 0.95), rgba(0, 42, 120, 0.95));
      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: #ffffff;
    }

    .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: rgb(255 255 255);
      backdrop-filter: blur(12px);
      padding: 35px 28px;
      border-radius: 20px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
      transition: all 0.35s ease;
      text-align: left;
      position: relative;
      overflow: hidden;
    }

    .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 */
    .icon::after {
      content: "";
      position: absolute;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      top: -15px;
      left: -15px;
      filter: blur(35px);
      opacity: 0.7;
      z-index: -1;
    }

    .red { background: linear-gradient(135deg, #ff4e4e, #ff7a7a); }

    .blue { background: linear-gradient(135deg, #2d9cdb, #56ccf2); }

    .green { background: linear-gradient(135deg, #27ae60, #6fcf97); }
    
    .yellow { background: linear-gradient(135deg, #f2c94c, #f2994a); }
    

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

    .service-box p {
      font-size: 16px;
      color: #000000;
      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;
    }
    }
    
    /* Service page seo List */

    .seo-section {
  background: #fff; /* 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: #000000;
  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: #ffffff;
  border-radius: 12px;
  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: #0077ff;
  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: #0073ff;
  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: #444;
}

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

    .nds-service-page {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, rgba(0, 92, 255, 0.95), rgba(0, 42, 120, 0.95));
      color: #333;
      font-family: 'Nunito', sans-serif;
    }

    .nds-service-page h2 {
      font-size: 35px;
      margin-bottom: 40px;
      color: #ffffff;
      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: #fff;
      padding: 25px;
      border-radius: 12px;
      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: #0f6cff;
      margin-bottom: 18px;
    }

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

    .nds-service-box p {
      font-size: 15px;
      color: #000000;
      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(135deg, rgba(0, 92, 255, 0.95), rgba(0, 42, 120, 0.95));
    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 #ff8a02;
    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(135deg, #00f2fe, #4facfe);
    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;
    height: 38px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    transition: 0.3s;
  }

  .nds-social-icons a:hover {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    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(0,242,254,0.5);
  }

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

  .nds-contact-form button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    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;
  }
  @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));
    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;
  }

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

  .nds-title-sm {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #06122b;
    transition: color 0.3s ease;
  }
  .nds-card:hover .nds-title-sm { color:#5b6bff; }

  .nds-excerpt {
    color: #6b7280;
    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:#6b7280; 
  }

  /* Read More Button */
  .nds-readmore {
    padding: 8px 16px;
    background: #5b6bff;
    color:#fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  .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; }

/* 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:#0f172a; }
 .nds-blog-content h3 { font-family: 'Nunito', sans-serif;
 font-size:20px; font-weight:700; margin:30px 0 12px; color:#0f172a; }
 .nds-blog-content h4 { font-family: 'Nunito', sans-serif;
 font-size:18px; font-weight:700; margin:30px 0 12px; color:#0f172a; }
.nds-blog-content p { font-family: 'Nunito', sans-serif;
 font-size:16px; margin-bottom:18px; color:#000000; }

 .nds-blog-content li { font-family: 'Nunito', sans-serif; font-size:16px; margin-bottom:18px; color:#000000; 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 #5b6bff; padding:12px 18px; font-family: 'Nunito', sans-serif;
 color:#4b5563; background:rgba(91,107,255,0.05); 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:#5b6bff; 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:#0f172a; }
.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:#5b6bff; 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;}
}
