
/* Hero Section */
.hero {
    background-color: #1a3965;
    color: #fff;
    text-align: center;
    padding: 100px 0;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Info Section */
  .info-section {
    position: relative;
    padding: 100px 0;
    background-color: #f0f4f8;
  }
  
  .info-section .info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .info-section .shapes {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .shape-circle {
    width: 200px;
    height: 200px;
    background-color: rgba(26, 57, 101, 0.2);
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: -50px;
    animation: rotateCircle 5s infinite linear;
  }
  
  .shape-triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 200px solid rgba(26, 57, 101, 0.2);
    position: absolute;
    bottom: -50px;
    right: -50px;
    animation: floatTriangle 5s infinite ease-in-out;
  }
  
  @keyframes rotateCircle {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes floatTriangle {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  .info-section .info-text {
    max-width: 600px;
  }
  /* Info Section */
.info-section {
    position: relative;
    padding: 100px 0;
    background-color: #f0f4f8;
  }
  
  .info-section .info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .info-section .info-image {
    flex-basis: 40%;
    max-width: 400px;
    margin-right: 30px;
  }
  
  .info-section .info-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .info-section .info-text {
    flex-basis: 60%;
    max-width: 600px;
  }
  
  .info-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a3965;
  }
  
  .info-section p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .info-section .info-content {
      flex-direction: column;
      text-align: center;
    }
  
    .info-section .info-image {
      margin-bottom: 20px;
      margin-right: 0;
    }
  }
  .info-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a3965;
  }
  
  .info-section p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }
  
  /* File ITR Section */
  .file-itr-section {
    padding: 100px 0;
    background-color: #1a3965;
    color: #fff;
    text-align: center;
  }
  
  .file-itr-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .file-itr-section ul {
    list-style-type: none;
  }
  
  .file-itr-section ul li {
    font-size: 1.1rem;
    padding: 10px;
    background-color: #4caf50;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    display: inline-block;
  }


/* Benefits Section */
.benefits-section {
    background-color: #1a3965;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
  }
  
  .benefits-section h3 {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  
  .benefits-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .benefits-cards .card {
    background-color: #fff;
    color: #333;
    width: 30%;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .benefits-cards .card:hover {
    transform: translateY(-10px);
  }
  
  .benefits-cards .card h4 {
    font-size: 1.5rem;
    color: #1a3965;
  }
  
  .benefits-cards .card p {
    color: #666;
    font-size: 1rem;
  }
  
  @media (max-width: 768px) {
    .benefits-cards .card {
      width: 100%;
    }
  }
  /* Section Styling */
.documents-section {
    background-color: #f4f8fb;
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #1a3965;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-in-out;
}

/* Documents Cards Styling */
.documents-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 1s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 40px;
    color: #1a3965;
    margin-bottom: 15px;
}

.card h4 {
    font-size: 18px;
    color: #333;
}

/* Fade In Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Make it responsive */
@media (max-width: 768px) {
    .documents-cards {
        flex-direction: column;
        gap: 15px;
    }

    .card {
        width: 100%;
    }
}

  
  /* FAQ Section */
  .faq-section {
    background-color: #add0f3;
    padding: 100px 20px;
    text-align: center;
  }
  
  .faq-section h3 {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  
  .faq {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    text-align: left;
    margin-bottom: 30px;
  }
  
  .faq-item h4 {
    font-size: 1.5rem;
    color: #1a3965;
  }
  
  .faq-item p {
    font-size: 1rem;
    color: #666;
  }
  
  @media (max-width: 768px) {
    .faq-section h3 {
      font-size: 1.8rem;
    }
    .faq-item h4 {
      font-size: 1.3rem;
    }
  }