  body {
      font-family: "Segoe UI", sans-serif;
    }
 
      .marquee {
      background-color: #4e8397;
      color: white;
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    .marquee-content {
      display: inline-block;
      white-space: nowrap;
      animation: marquee 15s linear infinite;
      padding: 10px 0;
    }

    @keyframes marquee {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    /* Sidebar */
    .side-drawer {
      position: fixed;
      top: 0;
      right: -260px;
      width: 260px;
      height: 100%;
      background-color: #111;
      color: white;
      padding: 2rem 1rem;
      transition: right 0.3s ease;
      z-index: 1050;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .side-drawer.open {
      right: 0;
    }

    .side-drawer a {
      color: white;
      text-decoration: none;
      font-size: 1.2rem;
      transition: color 0.3s ease;
    }

    .side-drawer a:hover {
      color: #0dcaf0;
    }

    .close-btn {
      font-size: 2rem;
      cursor: pointer;
      align-self: flex-end;
    }
    #toggleDrawerBtn {
  background-color: #0dcaf0;
  border: none;
  color: white;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#toggleDrawerBtn:hover {
  background-color: #31d2f2;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

    @media (min-width: 992px) {
      #toggleDrawerBtn {
        display: none;
      }
    }

    .btn-plan {
      border: 1px solid white;
      padding: 6px 16px;
      border-radius: 25px;
      color: white;
      transition: 0.3s;
    }

    .btn-plan:hover {
      background-color: #0dcaf0;
      color: #000;
    }

    .navbar-nav .nav-link {
      color: white !important;
    }

    .dropdown-menu {
      background-color: #222;
    }

    .dropdown-item {
      color: white;
    }

    .dropdown-item:hover {
      background-color: #0dcaf0;
      color: black;
    }
  
   .navbar {
    background-color: #021c27;
  }

  .navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: #00a8cc !important;
  }


  .side-drawer {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.85); /* or use 0.4 with blur */
    backdrop-filter: blur(10px); /* optional */
    color: white;
    padding: 2rem 1rem;
    transition: left 0.3s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .side-drawer.open {
    left: 0;
  }

  .close-btn {
    font-size: 2rem;
    cursor: pointer;
    align-self: flex-end;
  }

  .side-drawer a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }

  .side-drawer a:hover {
    color: #0dcaf0;
  }


  .navbar-nav .nav-link {
    color: #d1d9e6;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    transition: color 0.3s ease;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    color: #00a8cc;
    text-decoration: none;
  }

  .btn-plan {
    background: linear-gradient(135deg, #ff4c60, #ff8a00);
    border: none;
    font-weight: 700;
    font-size: 16px;
    padding: 0.45rem 1.4rem;
    border-radius: 30px;
    color: white;
    transition: all 0.3s ease;
  }

  .btn-plan:hover {
    background: linear-gradient(135deg, #ff8a00, #ff4c60);

  }
  @media (max-width: 991px) {
    .navbar-nav {
      flex-direction: column;
      align-items: center;
    }

    .navbar-nav .nav-link {
      padding: 0.5rem 0.5rem;
    }

    .btn-plan {
      display: none !important;
    }

    .btn-outline-light,
    .btn-info {
      margin-top: 10px;
      width: 100%;
      text-align: center;
    }
  } 
  /* sidebar */
 
   

/* hero */
.pricing-hero {
      background-color: #00bbf9;
      /* background: url('https://images.unsplash.com/photo-1531497865144-0464ef8fb9a1?auto=format&fit=crop&w=1470&q=80') no-repeat center center / cover; */
      min-height: 100vh;
      padding: 80px 20px;
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
    }

    .pricing-hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: -1;
    }

    .pricing-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      width: 100%;
      gap: 40px;
    }

    .pricing-content {
      flex: 1 1 500px;
      color: #ffffff;
    }

    .pricing-content h1 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 1rem;
      color: white;
      text-shadow: 1px 1px 6px #000;
    }

    .pricing-content p {
      font-size: 1.1rem;
      color: #d1e8ff;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .cta-btn, .next-btn {
      background: linear-gradient(135deg, #00f5d4, #00bbf9);
      padding: 0.75rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      border-radius: 40px;
      color: #000;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(0, 255, 200, 0.3);
      transition: all 0.3s ease;
      display: inline-block;
      cursor: pointer;
      margin-right: 10px;
    }

    .cta-btn:hover, .next-btn:hover {
      background: linear-gradient(135deg, #00bbf9, #00f5d4);
      box-shadow: 0 8px 25px rgba(0, 255, 200, 0.6);
    }

    .pricing-image {
      flex: 1 1 400px;
      text-align: center;
    }

    .pricing-image img {
      width: 100%;
      max-width: 450px;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      transition: all 0.4s ease;
    }

    @media (max-width: 768px) {
      .pricing-hero {
        padding: 40px 20px;
        align-items: flex-start;
      }

      .pricing-container {
        flex-direction: column;
        text-align: center;
      }

      .pricing-content h1 {
        font-size: 2rem;
      }

      .pricing-content p {
        font-size: 1rem;
      }

      .pricing-image img {
        max-width: 100%;
      }
    }
    @media (max-width: 768px) {
  .pricing-hero {
    padding: 20px 15px; /* reduce padding */
    align-items: flex-start;
  }

  .pricing-container {
    flex-direction: column;
    text-align: center;
    gap: 20px; /* reduce gap between elements */
  }

  .pricing-content {
    flex: none; /* prevent growing */
    max-width: 100%;
    padding: 0 10px; /* add some side padding */
  }

  .pricing-content h1 {
    font-size: 1.75rem; /* slightly smaller */
    margin-bottom: 0.75rem;
  }

  .pricing-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }

  .pricing-image {
    flex: none;
    max-width: 100%;
    padding: 0 10px;
  }

  .pricing-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
  }

  .cta-btn, .next-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    margin-right: 8px;
  }
}
/* about us */

.about-section {
      background: linear-gradient(to right, #f8f9fa, #e0f7fa);
      padding: 60px 0;
    }
    .about-img {
      border-radius: 1rem;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .section-title {
      font-weight: bold;
      margin-bottom: 20px;
      color:  #021c27;
    }
    .about-text {
      font-size: 1.1rem;
      color: #555;
    }
    .about-highlight-box {
      background-color: #fff;
      border-left: 5px solid  #4e8397;
      padding: 20px;
      border-radius: 0.5rem;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }
    .about-highlight-box:hover {
      transform: translateY(-5px);
    }

    /* matrix */
  .highlight-box {
    background-color: #4e8397;
    color: white;
    padding: 3.5rem 1rem;
    
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .highlight-box h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
  }

  .highlight-box p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.25);
  }

  /* Responsive spacing tweaks */
  @media (max-width: 575.98px) {
    .highlight-box .col-6 {
      margin-bottom: 1.5rem;
    }
  }
    .sale-container {
    background: #f5f9ff;
    border: 2px solid #007bff;
    border-radius: 15px;
    padding: 1.8rem 2rem;
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
    font-family: 'Poppins', sans-serif;
  }

  .sale-tag {
    display: inline-block;
    background: #ff4c4c;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 8px rgba(255, 76, 76, 0.5);
    margin-bottom: 0.8rem;
    user-select: none;
  }

  .sale-container p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.5;
    margin: 0;
  }

  .old-price {
    text-decoration: line-through;
    color: #888;
    margin: 0 0.6rem 0 0.4rem;
    font-weight: 600;
    font-size: 1rem;
  }

  .discounted-price {
    color:#004b64;
    font-weight: 800;
    font-size: 1.5rem;
    margin-left: 0.3rem;
  }

  /* Responsive tweaks */
  @media (max-width: 480px) {
    .sale-container {
      padding: 1.3rem 1rem;
    }
    .discounted-price {
      font-size: 1.3rem;
    }
  }


    .cta-section {
    background: #e0f2fe; /* Light sky blue */
    padding: 3rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 8px 25px rgba(33, 158, 188, 0.25);
   
    margin: 3rem auto;
  }

  .cta-section h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #023047;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
  }

  .cta-section p {
    font-size: 1.2rem;
    color: #034a63;
    margin-bottom: 2rem;
    font-weight: 500;
  }

  .cta-section .btn {
    min-width: 180px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 40px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: none;
  }

  .cta-section .btn:first-child {
    background-color: #023047;
    color: white;
  }

  .cta-section .btn:first-child:hover {
    background-color: #03527a;
    box-shadow: 0 6px 20px rgba(2, 48, 71, 0.5);
  }

  .cta-section .btn:last-child {
    background-color: #219ebc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-section .btn:last-child i {
    font-size: 1.3rem;
  }

  .cta-section .btn:last-child:hover {
    background-color: #1687a7;
    box-shadow: 0 6px 20px rgba(33, 158, 188, 0.5);
  }

  @media (max-width: 480px) {
    .cta-section h2 {
      font-size: 1.9rem;
    }
    .cta-section p {
      font-size: 1rem;
    }
    .cta-section .btn {
      min-width: 140px;
      font-size: 1rem;
      padding: 0.5rem 1.2rem;
    }
  }
  /* feature */
     
.feature-icon {
  width: 50px;
  transition: transform 0.3s ease;
}

.feature-card {
  border: 1px solid #023047;
  transition: all 0.3s ease;
 box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.feature-card:hover {
  border-color: #007bff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.1);
}

.feature-card h5 {
  font-weight: 600;
  color:  #023047;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}
.relabel-title {
  font-weight: bold;
  color: red;
  text-transform: uppercase;
}

  .hover-link:hover {
    color: #0d6efd !important;
    text-decoration: underline;
  }


  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Montserrat', sans-serif;
    }

  
    .contact-section {
      background-color: #b5cfea;
      /* background: url('image/bg-img.avif') no-repeat center/cover; */
      padding: 70px 20px;
    }

    .contact-container {
      max-width: 1200px;
      margin: auto;
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }


    .contact-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 40px;
    }

    .contact-col {
      background-color: #004b64;
      border-radius: 12px;
      padding: 30px 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      flex: 1 1 calc(33.333% - 20px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 100%;
      color: #fff;
    }

    .contact-col img {
      width: 50px;
      height: 50px;
      margin-bottom: 15px;
      align-self: center;
    }

    .contact-col h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
      color: #ffffff;
      text-align: center;
    }

    .contact-col p {
      font-size: 0.95rem;
      color: #ccc;
      margin-bottom: 20px;
      text-align: center;
    }

    .contact-col button {
      background-color: #ffffff;
      color: #021c27;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      align-self: center;
      font-weight: bold;
    }

    .contact-col form {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 15px;
    }

    .contact-col input,
    .contact-col textarea {
      padding: 10px;
      font-size: 0.95rem;
      border: none;
      border-radius: 6px;
      background-color: #fff;
      color: #000;
    }

    .form-btn {
      background-color: #ffffff;
      color: #021c27;
      border: none;
      padding: 10px;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      font-weight: bold;
    }

    @media (max-width: 992px) {
      .contact-col {
        flex: 1 1 100%;
      }

      h1 {
        font-size: 2rem;
      }
    }



  /* footer */
    footer.custom-footer {
    background:#4e8397 ;
    color: #d0d6e3;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 -4px 10px rgb(10 31 68 / 0.4);
  }

  footer.custom-footer a {
    color: #a8b4d1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  footer.custom-footer a:hover,
  footer.custom-footer a:focus {
    color: #66b3ff;
    text-decoration: underline;
  }

  footer.custom-footer h6 {
    font-weight: 700;
    color: #f0f4ff;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
  }

  footer.custom-footer ul {
    padding-left: 0;
    list-style: none;
  }
  footer.custom-footer ul li {
    margin-bottom: 0.7rem;
  }

  footer.custom-footer .payment-logos img,
  footer.custom-footer .security-logos img {
    height: 32px;
    margin: 0 8px 8px 0;
   
    transition: filter 0.3s ease;
  }
  footer.custom-footer .payment-logos img:hover {
    filter: brightness(1) invert(0.3);
  }

  footer.custom-footer .logo-section img {
    height: 70px;
    filter: drop-shadow(0 0 5px #66b3ff);
    margin-bottom: 0.8rem;
  }

  footer.custom-footer p {
    font-size: 0.875rem;
    color: #a1a9c0;
  }
.payment-card {
  transition: transform 0.3s ease;
}
.payment-card:hover {
  transform: translateY(-5px);
}

  /* Responsive center alignment on small screens */
  @media (max-width: 767px) {
    footer.custom-footer .text-md-start,
    footer.custom-footer .text-md-end {
      text-align: left !important;
      margin-bottom: 2rem;
    }
  }


  /* privacy & policy */
      .buy-website-section {
       background: linear-gradient(to right, #f8f9fa, #e0f7fa);
      padding: 60px 20px;
    }

    .privacy-card {
      background-color: #fff;
      border: 2px solid rgba(0, 0, 0, 0.08);
      border-radius: 12px;
      padding: 40px 30px;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease-in-out;
    }

    .privacy-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .privacy-heading {
      font-size: 1.25rem;
      font-weight: 600;
      margin-top: 30px;
      color: #021c27;
    }

    .privacy-icon {
      color: #4e8397;
      margin-right: 8px;
    }
  /* product */

      .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      max-width: 1200px;
      margin: auto;
    }

    .project-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .project-card:hover {
      transform: translateY(-6px);
    }

    .project-icon {
      background: linear-gradient(135deg,#4e8397, #021c27);
      border-radius: 50%;
      width: 80px;
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .project-icon img {
      width: 40px;
      height: 40px;
    }

    .project-title {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 8px;
      color: #333;
    }

    .stars {
      color: #ff9800;
      font-size: 1rem;
      margin-bottom: 12px;
    }

    .live-demo-btn {
      background:#021c27;
      color: #fff;
      border: none;
      border-radius: 30px;
      padding: 10px 20px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .live-demo-btn:hover {
      background: #4e8397;
    }

    /* MODAL STYLES */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: none;
      background: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .modal-content {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      width: 350px;
      position: relative;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .modal-header {
      background-color: #021c27;
      color: #fff;
      font-size: 1.2rem;
      font-weight: bold;
      padding: 10px 15px;
      border-radius: 8px 8px 0 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .close-btn {
      background: none;
      border: none;
      font-size: 1.2rem;
      color: #fff;
      cursor: pointer;
    }

    .modal-body {
      margin-top: 20px;
    }

    .demo-btn {
      background-color: #4e8397;
      color: white;
      border: none;
      padding: 10px 15px;
      border-radius: 6px;
      margin-bottom: 12px;
      display: inline-block;
      text-align: center;
      cursor: pointer;
    }

    .demo-info {
      background: #f9f9f9;
      padding: 10px 15px;
      border-radius: 8px;
      margin-top: 15px;
      font-size: 14px;
      color: #333;
      border-left: 4px solid #021c27;
    }

    /* how to buy */

  .buy-website-section {
  background: linear-gradient(to right,  #f6f8f8, #e0f7fa);
  padding: 60px 20px;
  }

  .buy-step-card {
  background-color: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.buy-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #343a40;
}

.buy-step-icon {
  font-size: 2.5rem;
  color: #198754;
  margin-bottom: 15px;
}

.buy-step-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #343a40;
}

.buy-step-card p {
  color: #555;
  font-size: 15px;
}
