/* Custom CSS (custom.css) */
body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: linear-gradient(90deg, #001d3c, #010808, #010b0c, #020208);
    background-size: 800% 800%;
    animation: gradientAnimation 15s ease infinite;
    min-height: 100vh;
    margin: 0;
    padding-top: 80px;
    
  }

  
  @media (max-width: 768px) {
    body {
      padding-top: 140px; /* More space for expanded nav on mobile */
    }
  }
  .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  
  
  /* Adjusting spacing between content sections */
  .page-section {
    padding: 80px 0;
  }
  
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.6); /* translucent dark background */
    backdrop-filter: blur(90px);     /* blur effect behind navbar */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* optional line */
  }
  
  
  
  .landing-banner {
    background: linear-gradient(135deg, #00274d, #001833);
    color: #ffffff;
    padding: 70px 0;
    display: flex;
    align-items: center;
    min-height: 80vh; /* Take up most of the viewport height */
    
  }
  
  /* Headline and subheadline spacing */
  .headline {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .subheadline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #d0d0d0;
  }
  .btn-download {
    background: linear-gradient(90deg, #ff7043, #ff5722);
    border: none;
    color: white;
    font-weight: 600;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.4);
    margin-bottom: 30px;
  }
  .btn-download:hover {
    background: linear-gradient(90deg, #ff5722, #e64a19);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
  }
  .btn-container {
    display: flex;
    justify-content: start; /* Align button properly */
  }
  .os-icons {
    font-size: 1rem;
    color: #cccccc;
  }
  .partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    margin-top: 20px; /* Extra spacing on smaller screens */
    justify-content: space-evenly; /* Horizontal alignment */
  }
  .partner-logo {
    width: 100px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
    margin-top: auto; /* Push logos to the bottom */
    gap: 20px; /* Space between logos */
  }
  .partner-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1); /* Slight zoom on hover */
  }
  .landing-image {
    width: 100%;
    animation: fadeInUp 1.5s ease;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
  }
  .landing-image:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
  }
  
  /* Animation */
  @keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  .card-service {
    background: #ffffff;
    color: #333;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  .card-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  }
  .footer {
    background: #001833;
    padding: 30px 0;
    color: #cccccc;
  }
  
  .spaced-element {
    margin-bottom: 30px; /* Consistent margin for spacing */
  }
  
  .available-for {
    margin-top: 10px;
    font-size: 1rem;
  }
  
  /* Ensure uniform carousel image size */
  .carousel-image {
      width: 100%; /* Ensure image fills the width */
      height: 400px; /* Set fixed height */
      object-fit: cover; /* Ensure images are scaled uniformly */
    }
  
    /* Adjust carousel positioning */
    .carousel {
      margin-top: -60px; /* Move carousel upwards */
    }
  
  /* Adjust for smaller screens */
  @media (max-width: 768px) {
      .landing-banner .col-md-6 {
        margin-bottom: 30px;
      }
    }
  
    .amplified-space {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  
  
  
  .card {
      border-radius: 12px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
  
    .card:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
  
    .card-img-top {
      height: 200px;
      object-fit: cover;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }
  
    @media (max-width: 768px) {
      .card-img-top {
        height: 150px;
      }
    }
  
    .row-cols-md-3 > .col {
      display: flex;
      justify-content: center;
    }
  
    .card-body {
      text-align: center;
    }
  
  
    .cta-section {
      height: 70vh; /* Adjust height as needed */
      background: linear-gradient(90deg, #001d3c, #71ced8, #027d8a, #5e61e6);
      background-size: 400% 400%;
      animation: gradientAnimation 15s ease infinite;
      border-radius: 15px; /* Optional rounded corners */
      color: white;
      padding: 50px 20px;
    }
  
    .cta-title {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.4;
    }
  
    .cta-description {
      font-size: 1.2rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }
  
    .btn-primary {
      background-color: #4cc9f0;
      border: none;
      padding: 15px 30px;
      border-radius: 30px;
      transition: none;
      transform: none;
      box-shadow: none;
    }
  
    .btn-primary:hover {
      background-color: #3aaff0;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
      transform: none;
      box-shadow: none;
    }
  
    .cta-note {
      font-size: 0.9rem;
      color: #cfd8dc;
      margin-top: 10px;
    }
  
  
    .bg-dark {
      background-color: black !important;
    }
  
    .text-white {
      color: white !important;
    }
  
    .features {
      background-color: #1c1c1c;
      border-radius: 8px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
  
    .features:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
  
    .header span {
      font-size: 2rem;
      color: #4cc9f0;
    }
  
    .divider {
      width: 60px;
      height: 4px;
      background-color: #4cc9f0;
      margin: 20px auto;
    }
  
    @media (max-width: 768px) {
      .features {
        margin-bottom: 20px;
      }
    }
  
    .bg-white {
      background-color: white !important;
    }
  
    .text-black {
      color: black !important;
    }
  
    .bg-orange {
      background-color: #075d97; /* Bright orange background */
    }
  
    .card-pricing {
      background-color: transparent;
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
  
    .card-pricing:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
  
    .header .pricing-type {
      font-size: 1.5rem;
      font-weight: 700;
    }
  
    .header h1 {
      font-size: 3rem;
      font-weight: 700;
    }
    .body p {
      font-size: 1rem;
      margin-bottom: 5px;
    }
    .footer .btn-pricing {
      background-color: white;
      color: #ff7043;
      font-weight: bold;
      border-radius: 30px;
      transition: all 0.3s ease;
    }
  
    .footer .btn-pricing:hover {
      background-color: #ff5722;
      color: white;
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
  
    @media (max-width: 768px) {
      .body p {
        font-size: 0.9rem;
      }
    }
  
  /* Feature Section Styling */
  .feature-section {
    background-color: #0a163c;
    color: #ffffff;
    border-radius: 10px;
    padding: 50px 0;
  }
  
  .feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .feature-subtext {
    font-size: 1rem;
    color: #cfd8dc;
    margin-bottom: 30px;
  }
  
  .feature-card {
    background: linear-gradient(145deg, #001a38, #112c54);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .feature-card p {
    font-size: 1rem;
    color: #b0bec5;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  /* Adjust columns for smaller screens */
  @media (max-width: 768px) {
    .feature-card h3 {
      font-size: 2rem;
    }
  
    .feature-title {
      font-size: 2rem;
    }
  }
  
  
  
  /* General Styling */
  .writixai-section {
    background-color: #f8fafc;
    padding: 50px 0;
  }
  
  .title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .description {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 40px;
  }
  
  /* Service Card Styling */
  .service-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #6c757d;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  /* CTA Card Styling */
  .cta-card {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .cta-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .cta-card .btn-primary {
    background-color: #ff5722;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
  }
  
  .cta-card .btn-primary:hover {
    background-color: #e64a19;
  }
  
  .cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive Layout */
  @media (max-width: 768px) {
    .cta-card h4 {
      font-size: 1.2rem;
    }
  }
  
  
  
  .faq-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  .faq-section p {
    font-size: 1.1rem;
    color: #6c757d;
  }
  
  .accordion-button {
    background-color: #e6f7f9;
    color: #333;
    font-weight: 600;
    border: none;
  }
  
  .accordion-button:focus {
    box-shadow: none;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: #c8e9ec;
    color: #007b8f;
  }
  
  .accordion-item {
    border: none;
    border-bottom: 1px solid #e5e5e5;
  }
  
  .accordion-body {
    font-size: 1rem;
    color: #555;
  }

  