@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600&display=swap');
.dropdown-toggle::after {
  display: none !important;
}


@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1556px !important;
    }
}
body {
  padding: 0;
  margin: 0;
  background-color: #01071a;
  
}

h2{
  font-size: 58px;
  font-weight: 700 ;
}
.navbar {
  /*margin-top: 20px; */
  padding: 20px;
  background-color: transparent;
  /*background-color: #01071a;*/
}
/* Logo resizing */
.logo-img {
  height: 40px;
}

@media (max-width: 768px) {
  .logo-img {
    height: 30px; /* smaller logo in mobile view */
  }
}

/* Ensure navbar space for hamburger */
.navbar-toggler {
  padding: 0.25rem 0.5rem;
}

.navbar-nav {
  gap: 25px; /* space between menu items */
}
.navbar-nav .nav-link {
  color: white !important;
  padding: 10px 15px;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  padding: 0;
}
/* Remove caret icon */
.dropdown-toggle::after {
  display: none !important;
}
.navbar-nav .dropdown-menu {
  background-color: #003073 !important;
  border: none;
}
.navbar-nav .dropdown-item {
  color: white;
}
/* Dropdown item ke liye margin-bottom */
.dropdown-menu .dropdown-item {
  margin-bottom: 10px !important;
}

/* Last child par margin-bottom 0 */
.dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0 !important;
}
.navbar-nav .dropdown-item:hover {
  background-color: #105dd1;
}
.start-btn {
  border-radius: 12px !important;
  padding: 10px 20px; /* thoda aur balanced look ke liye */
  /* font-weight: 500; */
  color: #000;
}

.btn-primary {
  background-image: linear-gradient(37deg, #119CFF 0%, #97F8F4 100%) !important;
  border: none;
}


/* Default bootstrap collapse look on desktop */
@media (max-width: 991px) {
  /* Turn collapse into side panel */
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -250px; /* hidden initially */
    width: 250px;
    height: 100%;
    background: #003073;
    color: white; /* menu background */
    overflow-y: auto;
    padding: 1rem;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
  }

  /* When menu is open */
  .navbar-collapse.show {
    left: 0;
  }

  /* Make nav links stack */
  .navbar-nav {
    flex-direction: column;
  }
}

/* Hero (centered span + heading) */

/* small responsive tweaks */
@media (max-width: 992px) {
  .nav-center {
    position: static;
    transform: none;
    margin-top: 0.5rem;
  }
  .navbar .container {
    gap: 0.5rem;
  }
} /* Hero (centered span + heading) */

.hero {
  min-height: 60vh; /* Full viewport height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Vertical center */
  text-align: center;
}

.welcome-badge {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 0.6rem;
  color: #fff;
  background-image: linear-gradient(
    120deg,
    #119cff33 0%,
    #119cffad 100%
  ) !important;
}


.hero h1 {
  font-size: 4rem;
  margin: 0;
  color: #ffffff;
  word-spacing: -5px; /* decrease space between words */
}

.hero h1 .highlight {
  color: #119cff; /* highlight "digital agency" */
}

/* small responsive tweaks */
@media (max-width: 992px) {
  .nav-center {
    position: static;
    transform: none;
    margin-top: 0.5rem;
  }
  .navbar .container {
    gap: 0.5rem;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}

/* Client slider */
.logo-slider {
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.logo-track {
  display: flex;
  animation: scroll 20s linear infinite;
}

.logo-track img {
  flex-shrink: 0; /* prevent images from squishing */
  height: 80px;
  margin: 0 30px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Heading style */
/* h2 {
  font-size: 5rem;
} */

h2 .highlight {
  color: #2baefc;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .logo-track img {
    height: 60px;
    margin: 0 20px;
  }
  h2 {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .logo-track img {
    height: 45px;
    margin: 0 15px;
  }
  h2 {
    font-size: 2rem;
  }
}

/* testimonial */
.testimonial-section {
  font-size: 20px;
  font-family: 'Inter Tight', sans-serif !important;
}
.testimonial-section p {
  font-size: 21px;
  font-family: 'Inter Tight', sans-serif;
}



/* Section container start */
.services-section {
  padding: 4rem 1rem;
  /* background: #f8fbff; */
}

/* Badge with corner sticker */
.service-badge {
  display: inline-block;
  position: relative;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5e9, #0369a1);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(3, 37, 65, 0.08);
}
.service-badge .sticker {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff4757;
  color: #fff;
  font-size: 0.65rem;
  padding: 0.18rem 0.45rem;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  transform: rotate(8deg);
}

/* Headings */


.services-title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1.15;
  color: white;
}
.services-title span.for-you {
  color: #0ea5e9;
  display: inline-block;
}
span.for-you {
  color: #0ea5e9;
  display: inline-block;
}

.services-sub {
  text-align: center;
  color: #f1f1f1;
  margin-bottom: 2.2rem;
  font-size: 1.03rem;
}

/* Card / image area */
.service-card {
  /* background: #fff; */
  border-radius: .75rem;
  color: white;
  padding: 1rem;
  border: .5px solid #9fbfff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  height: 380px; /* fixed height */
  width: 100%;   /* takes full column width */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* push image to bottom */
}

.service-card:hover {
  border-color: #94a3b8;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.service-card .meta {
  text-align: left;
  margin-bottom: 0.8rem;
}

.service-card img {
  width: 100%;
  height: 200px; /* fixed image height */
  object-fit: cover;
  border-radius: .5rem;
}

/* Title text */
  .service-card .meta h6 {
      margin: 0;
      font-size: 1.2rem;
      font-weight: 400;
      line-height: 1.2;
    }
    .service-card .meta h6 .for-you {
      display: block;       /* new line */
      font-size: 2rem;    /* bigger font */
      font-weight: 700;
      color: #0ea5e9;
      margin-top: 2px;
    }
 /* Special background for selected cards */
.special-bg {
  background-color: #047be1 !important;
  color: #000 !important;
}

.special-bg .meta h6,
.special-bg .meta h6 .for-you {
  color: #000 !important;
}




/* Responsive tweaks */
@media (max-width: 575.98px) {
  .service-card img {
    height: 140px;
  }
  .services-title {
    font-size: 1.5rem;
    
  }
}
@media (min-width: 992px) {
  .service-card img {
    height: 255px;
  }
}

/* Hover zoom effect */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05); /* zoom slightly */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
/* servie end */



/* banner img and content  */

/* CSS */
.image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden; /* keeps overlay inside rounded corners */
  border-radius: 8px;
}

.zoom-img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  display: block;
}

/* Overlay always visible */
.image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4); /* overlay color */
  opacity: 1; /* always visible */
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.image-wrapper:hover .zoom-img {
  transform: scale(1.01);
}



section .left-col {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ffffff;
}

.text-large-bold {
  font-size: 2.25rem !important; /* bigger text */
  font-weight: 600;   /* semi-bold */
  line-height: 1.6;
  color: white;
}

strong{
  color: #ef9730 !important;
}
.custom-hr {
  border: none;
  height: 2px;
  background-color: #505770; /* accent color */
  opacity: 0.8;
}

/* banner img and content  end */



/* counter start */
.counter-row .counter-col {
  border-right: 1px solid #ddd; /* vertical border */
}

.counter-row .counter-col:last-child {
  border-right: none; /* remove last border */
}

.counter {
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
}

.counter + p {
  margin-top: 0.3rem;
  color: white;
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive: remove borders on small screens */
@media (max-width: 575.98px) {
  .counter-row .counter-col {
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .counter-row .counter-col:last-child {
    border-bottom: none;
  }
}
/* counter end */



/* portfolio start */
.portfolio-card {
  background: #0f172a; /* dark background like screenshot */
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: scale(1.03);
}

.portfolio-image {
  overflow: hidden;
  border-radius: 12px;
}

.portfolio-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-text {
  padding-top: 1rem;
}

.portfolio-text h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}

.portfolio-text p {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin: 0;
}

  .portfolio-section .badge {
    background-color: #047be1;
    /* font-weight: 600; */
    color: white;
    /* letter-spacing: 1px; */
  }

  /* .text-center h2{
    color: white;
    font-size: 20px !important;
  } */


  /* wave top */


/* about us    bc image*/

.about {
  min-height: 40vh; /* Full viewport height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Vertical center */
  text-align: center;
}

/* .welcome-badge {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 0.6rem;
  background: #119cff;
  color: white;
} */

.about h1 {
  font-size: 4rem;
  margin: 0;
  color: #ffffff;
  word-spacing: -5px; /* decrease space between words */
}

.about h1 .highlight {
  color: #119cff; /* highlight "digital agency" */
}

/* small responsive tweaks */
@media (max-width: 992px) {
  .nav-center {
    position: static;
    transform: none;
    margin-top: 0.5rem;
  }
  .navbar .container {
    gap: 0.5rem;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}


/* right content */



.right-content {
  font-size: 3rem !important; /* bigger text */
  font-weight: 300; 
  line-height: 1.6;
  color: white;
}


/* section */


    /* Section */
    .cost-section {
      padding: 80px 20px;
      /* background: #f8f9fa;  */
      color: white;
    }

    /* Heading */
    .cost-heading {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .cost-heading span {
      color: #0d6efd; /* Bootstrap primary color */
    }

    /* Paragraph */
    .cost-text {
      font-size: 1.1rem;
      color: #ffffff;
      line-height: 1.7;
    }

    /* Image */
    .cost-img {
      border-radius: 8px;
      width: 100%;
      height: auto;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    /* Responsive spacing */
    @media (max-width: 768px) {
      .cost-section {
        text-align: center;
      }
      .cost-heading {
        font-size: 1.6rem;
      }
    }



    /* contact  */
    

  h1 {
    font-size: 5rem;
    font-weight: 700;
    color: white;
  }
  h1 span {
    color: #2196f3;
  }
  /* p{
    color: white;
    font-size: 20px;
  } */
  .form-control, textarea {
    background-color: #1a1f2c;
    border: none;
    border-radius: 10px;
    color: #fff;
  }
  .form-control:focus, textarea:focus {
    background-color: #1a1f2c;
    outline: none;
    box-shadow: 0 0 5px #2196f3;
    color: #fff;
  }
  textarea {
    min-height: 180px;
    resize: none;
  }
  label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    color: white;
  }
  .btn-submit {
    background: linear-gradient(90deg, #2196f3, #42a5f5);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
  }
  .btn-submit:hover {
    opacity: 0.9;
  }
  .contact-info h5 {
    color: #fff;
    font-weight: 600;
    margin-top: 15px;
  }
  .contact-info p, .contact-info a {
    font-size: 0.95rem;
    color: #ccc;
    text-decoration: none;
  }
  .contact-info a:hover {
    color: #2196f3;
  }
  .icon {
    margin-right: 10px;
    color: #3cb5f9; 
  }




  /* serive page  */

  /* Default spacing for large screens */

  /* Mobile Friendly Styles */
  @media (max-width: 768px) {
    h2 {
      font-size: 26px;
      line-height: 1.4;
      text-align: center;
    }
    h3 {
      font-size: 22px;
      text-align: center;
    }
    .form-control, .form-select {
      font-size: 14px;
      padding: 12px;
    }
    .btn {
      width: 100%;
      font-size: 16px;
    }
    .badge {
      display: inline-block;
      margin: 0 auto;
      font-size: 12px;
    }
    .col-md-6 {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }

  @media (max-width: 480px) {
    h2 {
      font-size: 22px;
    }
    h3 {
      font-size: 20px;
    }
    .btn {
      font-size: 14px;
      padding: 10px;
    }
  }

 /* Tablet (≤768px) */
  @media (max-width: 768px) {
    .about {
      padding: 60px 15px;
    }
    .welcome-badge {
      font-size: 14px;
      padding: 8px 14px;
    }
    .about h1 {
      font-size: 32px;
      line-height: 1.4;
    }
  }

  /* Mobile (≤480px) */
  @media (max-width: 480px) {
    .about {
      padding: 50px 10px;
    }
    .welcome-badge {
      font-size: 12px;
      padding: 6px 12px;
    }
    .about h1 {
      font-size: 24px;
      line-height: 1.4;
    }
  }



  .cost-list {
    margin-top: 20px;
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
  }

  .cost-list li {
    margin-bottom: 10px;
    position: relative;
  }

  .cost-list li::before {
    /* content: "✔"; */
    color: #0d6efd;
    font-weight: bold;
    margin-right: 8px;
  }


  /* faqs */
  

 
    .faq-section {
      max-width: 1000px;
       color: #fff;
      margin: 20px auto;
      padding: 20px;
      
    }

    .faq-section .badge {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 12px;
      background: #0a1b35;
      color: #fff;
      font-size: 14px;
      letter-spacing: 1px;
      margin-bottom: 15px;
    }

    .faq-section .badge span {
      color: #3cb5f9;
      font-weight: bold;
    }

    .faq-section h2 {
      font-size: 34px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .faq-section h2 span {
      color: #3cb5f9;
    }

    .faq-section p {
      color: #aaa;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .faq {
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      padding: 20px 0;
      cursor: pointer;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
    }

    .faq-number {
      color: #aaa;
      margin-right: 15px;
      font-size: 18px;
      flex-shrink: 0;
    }

    .faq-content {
      flex: 1;
    }

    .faq-question {
      font-size: 30px;
      /* font-weight: 500; */
      margin: 0;
    }

    .faq-answer {
      display: none;
      margin-top: 10px;
      font-size: 20px;
      color: #ccc;
      line-height: 1.6;
    }

    .faq.active .faq-answer {
      display: block;
    }

    .faq-icon {
      font-size: 25px;
      color: #3cb5f9;
      margin-left: 20px;
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
    }


       .btn-dark{
      background-color: black;

    }

    .btn-dark:hover{
      background-color: black;

    }
    .brand-today{
      color: #0343e6;
    }




        .location-card {
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            border-radius: 1rem;
            padding: 3rem;
            border: 1px solid #4a5568;
           
            margin: 0 auto;
        }
        
        .location-title {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1rem;
        }
        
        .location-title .our {
            color: white;
        }
        
        .location-title .location {
            color: #3b82f6;
        }
        
        .subtitle {
            color: #a0aec0;
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
        }
        
        .get-directions-btn {
            background-color: #3b82f6;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: background-color 0.2s;
        }
        
        .get-directions-btn:hover {
            background-color: #2563eb;
            color: white;
        }
        
        .follow-us {
            color: #a0aec0;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }
        
        .social-icons {
            display: flex;
            gap: 0.75rem;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 0.375rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: transform 0.2s;
        }
        
        .social-icon:hover {
            transform: translateY(-2px);
            color: white;
        }
        
        .twitter {
            background-color: #1da1f2;
        }
        
        .youtube {
           background-color: #1da1f2;
        }
        
        .instagram {
           background-color: #1da1f2;
        }
        
        .map-container {
            border-radius: 0.5rem;
            overflow: hidden;
            height: 400px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        @media (max-width: 768px) {
            .location-card {
                padding: 2rem;
            }
            
            .location-title {
                font-size: 2.5rem;
            }
        }




        /* footer */
        
    .footer-gradient {
      background: linear-gradient(165deg, #01071a 0%, #010f3d 65%, #1d4ed8 100%);
      color: white;
      padding: 80px 0 40px 0;
    }

    .footer-title {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 30px;
    }

    .footer-title .highlight {
      color: #60a5fa;
    }

    .footer-description {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 40px;
      opacity: 0.9;
    }

    .connect-btn {
      background: transparent;
      /* border: 2px solid white; */
      color: white;
      padding: 12px 30px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    /* .connect-btn:hover {
            background: white;
            color: #1e3a8a;
        } */

    .section-title {
      background: rgba(255, 255, 255, 0.1);
      padding: 8px 20px;
      border-radius: 20px;
      font-weight: 600;
      margin-bottom: 30px;
      display: inline-block;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 15px;
    }

    .footer-links a {
      color: white;
      text-decoration: none;
      opacity: 0.8;
      transition: opacity 0.3s ease;
    }

    .footer-links a:hover {
      opacity: 1;
      color: #60a5fa;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 20px;
    }

    .contact-icon {
      width: 20px;
      height: 20px;
      background: #60a5fa;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .newsletter-form {
      margin: 30px 0;
    }

    .newsletter-input {
      background: transparent;
      border-bottom: 1px solid white !important;
      border: none;
      color: white;
      padding: 12px 15px;
      border-radius: 5px 0 0 5px;
      width: 70%;
    }

    .newsletter-input::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .newsletter-btn {
      background: #60a5fa;
      border: none;
      color: white;
      padding: 10px 15px;
      border-radius: 0 5px 5px 0;
      width: 20%;
    }

    .social-links {
      display: flex;
      gap: 20px;
      margin-top: 20px;
    }

    .social-links a {
      color: white;
      opacity: 0.8;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      opacity: 1;
      color: #60a5fa;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      margin-top: 60px;
      padding-top: 30px;
    }

    .footer-legal {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-bottom: 20px;
    }

    .footer-legal a {
      color: white;
      text-decoration: none;
      opacity: 0.8;
    }

    .footer-legal a:hover {
      opacity: 1;
    }

    .copyright {
      text-align: center;
      opacity: 0.7;
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      .footer-title {
        font-size: 2.5rem;
      }

      .footer-legal {
        flex-direction: column;
        gap: 15px;
        text-align: center;
      }

      .newsletter-input,
      .newsletter-btn {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
      }
    }


  .white {
    font-weight: bold;
    color: #Ececec;
  }

  h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #Ececec;
  }

  h4 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #fff;
  }

  /* p {
    color: white;
    line-height: 1.7;
    font-size: 18px;
  } */

  ul {
    margin: 0 0 20px 30px; /* indent lists */
    padding: 0;
  }

  ul li {
    margin-bottom: 10px;
    color: #dedede;
    line-height: 1.8; /* better readability */
    font-size: 17px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .container {
      padding: 15px;
    }

    h3 {
      font-size: 24px;
    }

    h4 {
      font-size: 20px;
    }

    p, ul li {
      font-size: 16px;
    }
  }

  @media (max-width: 480px) {
    h3 {
      font-size: 22px;
    }

    h4 {
      font-size: 18px;
    }

    p, ul li {
      font-size: 15px;
    }
  }

/* termn and condtion */
  .payment-terms {

    padding: 40px 20px;
    color: #fff;
    line-height: 1.7;
  }

  .payment-terms .container {
    max-width: 900px;
    margin: auto;
  }

  .payment-terms h4 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #ddd;
  }

  .payment-terms p {
    margin-bottom: 15px;
    color: #eee;
  }

  .payment-terms ul {
    margin: 0 0 20px 25px;
    padding: 0;
  }

  .payment-terms ul li {
    margin-bottom: 8px;

  }

  .payment-terms a {

    text-decoration: none;
  }

  .payment-terms a:hover {
    text-decoration: underline;
  }

  .highlight {
    color: #fff;
    font-weight: 600;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .payment-terms {
      padding: 30px 15px;
    }

    .payment-terms h4 {
      font-size: 20px;
    }
  }

  @media (max-width: 480px) {
    .payment-terms h4 {
      font-size: 18px;
    }
    .payment-terms p,
    .payment-terms li {
      font-size: 15px;
    }
  }
  .gray-text {
            color: #A5A5A5;
        }



        /* blog css */
        

        .blog-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: auto;
            margin-bottom: 3rem;
        }

        .blog-card {
            /* background: #0e1624; */
            border-radius: 10px;
            overflow: hidden;
            /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
        }

        .blog-card img {
            width: 100%;
            display: block;
            height: 200px;

        }

        .blog-content {
            padding: 20px;
        }

        .blog-content h3 {
            font-size: 18px;
            margin: 0 0 10px;
            color: #fff;
        }

        .blog-content p {
            font-size: 14px;
            line-height: 1.5;
            color: #bbb;
            margin-bottom: 15px;
        }

        .blog-content a {
            color: white;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s;
        }

        .blog-content a:hover {
            color: #fff;
        }



/* blog css */
     
    /* Hero Banner Section */
    .hero-banner {
      max-width: 1100px;
      margin: 40px auto;
      border-radius: 10px;
      overflow: hidden;
      /* keeps corners rounded */
    }

    .hero-banner img {
      width: 100%;
      height: auto;
      /* scales naturally */
      display: block;
      object-fit: cover;
      /* ensures image covers space neatly */
    }

    /* Article Content */
    .content {
      max-width: 1000px;
      margin: auto;
      padding: 20px;
    }

    .content h2 {
      font-size: 35px;
      margin-bottom: 15px;
      color: white;
      font-weight: 700;
    }

    .content p {
      font-size: 16px;
      margin-bottom: 20px;
      color: #ccc;
    }

    .content h3 {
      font-size: 30px;
      margin-top: 30px;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .content h4 {
      font-size: 25px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #ddd;
    }

    .content ul {
      list-style: disc;
      padding-left: 20px;
      margin-bottom: 20px;
    }

    .content ul li {
      margin-bottom: 10px;
      color: #bbb;
    }

    .highlight {
      font-weight: 600;
      color: #fff;
    }




/* blog table css */
 

    .section {
      max-width: 1100px;
      margin: 50px auto;
      padding: 20px;
    }

    /* .section h2 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 20px;
    } */

    table {
      width: 100%;
      border-collapse: collapse;
      background: #0f172a;
      border-radius: 8px;
      overflow: hidden;
    }

    table th, table td {
      border: 1px solid #1e293b;
      padding: 14px 16px;
      text-align: left;
      font-size: 15px;
      color: #e2e8f0;
    }

    table th {
      background: #111827;
      font-weight: bold;
      color: #fff;
    }

    table tr:nth-child(even) {
      background: #0f172a;
    }

    table tr:nth-child(odd) {
      background: #1e293b33;
    }



    /* sub banner blog */
     .sub-hero-banner {
      max-width: 900px;
      margin: 40px auto;
      border-radius: 10px;
      overflow: hidden;
      /* keeps corners rounded */
    }

    .sub-hero-banner img {
      width: 100%;
      height: auto;
      /* scales naturally */
      display: block;
      object-fit: cover;
      /* ensures image covers space neatly */
    }

    .sub-hero-banner-amazon{

        max-width: 400px;
      margin: 40px auto;
      border-radius: 10px;
      overflow: hidden;
    }
        /* Overlay behind sidebar */
  /*@media (max-width: 991px) {*/
  /*    .navbar-collapse {*/
  /*      position: fixed;*/
  /*      top: 0;*/
  /*      left: -250px;*/
  /*      width: 250px;*/
  /*      height: 100%;*/
  /*      background: #003073;*/
  /*      color: white;*/
  /*      overflow-y: auto;*/
  /*      padding: 1rem;*/
  /*      transition: left 0.3s ease;*/
  /*      box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);*/
  /*      z-index: 9999;*/
  /*    }*/

  /*    .navbar-collapse.show {*/
  /*      left: 0;*/
  /*    }*/

  /*    .navbar-nav {*/
  /*      flex-direction: column;*/
  /*    }*/
  /*  }*/

  /*      .navbar-collapse .close-btn {*/
  /*    position: absolute;*/
  /*    top: 15px;*/
  /*    right: 15px;*/
  /*    font-size: 1.8rem;*/
  /*    color: #fff;*/
  /*    cursor: pointer;*/
  /*  }*/

 .navbar-toggler .close-icon {
          font-size: 1.5rem;
        }

        .navbar-toggler .open-icon {
          font-size: 1.5rem;
        }
    

