/* FEATURES SECTION */

.features-section {
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  
  .features-heading {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
  }
  
  .features-subheading {
    font-size: 18px;
    color: #333;
    margin-bottom: 50px;
  }
  
  .features-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1150px;
    margin: 0 auto;
    background: linear-gradient(90deg, #1e1c5c, #060b28);
    padding: 30px;
    border-radius: 40px;
  }
  
  .feature-box {
    background-color: #fff;
    flex: 1;
    min-width: 280px;
    border-radius: 25px;
    padding: 25px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
  }
  
  .feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f4f5fb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }
  
  .feature-title {
    color: #423cbe;
    font-size: 18px;
    margin: 0 0 8px 0;
  }
  
  .feature-description {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin: 0;
  }
  
  .contact-bar-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
  }
  
  .contact-bar {
    display: flex;
    align-items: center;
    border-radius: 60px;
    overflow: hidden;
    background: linear-gradient(90deg, #0c1450, #020b2d);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }
  
  .contact-left {
    display: flex;
    align-items: center;
    background-color: #243087;
    padding: 15px 25px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
  }
  
  .contact-dot {
    width: 28px;
    height: 28px;
    background-color: #c7caf7;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .contact-middle {
    padding: 15px 30px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
  }
  
  .contact-right {
    background-color: #b3d13a;
    color: #111;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 18px;
  }

  .name-card-container {
    width: 100%;
    height: 100%;
    max-width: 700px;
    margin: 40px auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .name-card-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ABOUT SECTION */

  .about-container {
    background-color: #f9f9f9;
  }
  .about-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }

  .about-left {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }

  .about-title {
    font-size: 36px;
    color: #2a1f5d;
    font-weight: 700;
    margin: 0;
  }

  .about-image-container {
    width: 420px;
    height: 550px;
    overflow: hidden;
    border-radius: 12px;
  }

  .about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-right {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .about-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #8cb32d;
    font-style: italic;
    text-align: right;
    margin-bottom: 50px;
    width: 100%;
  }

  /* Timeline Container */
  .timeline-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 0; /* Gives space for line at top/bottom */
  }

  /* Dotted Line - Strictly Behind */
  .timeline-line {
    position: absolute;
    left: 4%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(
      to bottom,
      #D58002 0px,
      #D58002 10px,
      transparent 10px,
      transparent 20px
    );
    z-index: 0; /* Behind everything */
  }

  /* Each Timeline Item */
  .timeline-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
  }

  .timeline-marker {
    background: #86b72e;
    color: #fff;
    border: 4px solid #2a1f5d;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    margin-right: 30px;
    z-index: 2; /* Above the line */
    position: relative;
    background-clip: padding-box;
  }

  /* Card - White background covers the line */
  .timeline-content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1;
    max-width: 480px;
    position: relative;
    z-index: 1; /* Above the line */
  }

  .timeline-content h4 {
    margin: 0 0 4px 0;
    color: #000;
    font-size: 18px;
  }

  .features-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .features-grid ul {
    margin: 0;
    padding-left: 20px;
    flex: 1;
    font-size: 16px;
    color: #555;
    list-style: none;
  }

  .single-column {
    margin: 10px 0 0 20px;
    padding: 0;
    font-size: 14px;
    color: #555;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .timeline-marker {
      margin-right: 20px;
    }
  }

  @media (max-width: 768px) {
    .timeline-line{
        left: 50%;
    }
    .about-section {
      flex-direction: column;
      padding: 60px 8%;
    }

    .about-right {
      align-items: center;
    }

    .about-subtitle {
      text-align: center;
    }

    .timeline-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .timeline-marker {
      margin-right: 0;
      margin-bottom: 20px;
    }

    .timeline-content {
      max-width: 100%;
      width: 100%;
    }

    .features-grid {
      flex-direction: column;
    }

    .features-grid ul {
      margin-bottom: 10px;
    }
  }

  @media (max-width: 480px) {
    .about-image-container {
      width: 280px;
      height: 360px;
    }

    .about-title {
      font-size: 32px;
    }
  }


  /* CARDS GALLERY */

  .bicd-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Header */
  .bicd-header {
    border-radius: 24px;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
  }
  
  .bicd-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
  }
  
  /* Cards Grid */
  .bicd-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
  }
  
  /* Card Wrapper */
  .bicd-card-wrapper {
    display: flex;
    flex-direction: column;
  }
  
  /* Card */
  .bicd-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .bicd-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  /* Card Image Container */
  .bicd-card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
  }
  
  .bicd-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .bicd-card:hover .bicd-card-image img {
    transform: scale(1.1);
  }
  
  /* Card Overlay */
  .bicd-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 27, 75, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .bicd-card:hover .bicd-card-overlay {
    opacity: 1;
  }
  
  /* Card Title */
  .bicd-card-title {
    text-align: center;
    padding: 20px 0;
  }
  
  .bicd-card-title h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #312e81;
  }
  
  /* Responsive Design */
  
  /* Tablets and Small Laptops (768px - 1024px) */
  @media (max-width: 1024px) {
    .bicd-header h1 {
      font-size: 2rem;
    }
  
    .bicd-cards-grid {
      gap: 30px;
    }
  
    .bicd-card-image {
      height: 280px;
    }
  
    .bicd-card-title h2 {
      font-size: 1.3rem;
    }
  }
  
  /* Tablets (768px and below) */
  @media (max-width: 768px) {
    body {
      padding: 15px;
    }
  
    .bicd-header {
      padding: 40px 20px;
      margin-bottom: 40px;
    }
  
    .bicd-header h1 {
      font-size: 1.75rem;
    }
  
    .bicd-cards-grid {
      gap: 25px;
    }
  
    .bicd-card-image {
      height: 250px;
    }
  }
  
  /* Mobile Devices (600px and below) */
  @media (max-width: 600px) {
    body {
      padding: 10px;
    }
  
    .bicd-header {
      padding: 30px 20px;
      margin-bottom: 30px;
      border-radius: 16px;
    }
  
    .bicd-header h1 {
      font-size: 1.5rem;
    }
  
    .bicd-cards-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 40px;
    }
  
    .bicd-card-image {
      height: 220px;
    }
  
    .bicd-card-title {
      padding: 15px 0;
    }
  
    .bicd-card-title h2 {
      font-size: 1.25rem;
    }
  }
  
  /* Small Mobile Devices (400px and below) */
  @media (max-width: 400px) {
    .bicd-header h1 {
      font-size: 1.3rem;
    }
  
    .bicd-card-image {
      height: 200px;
    }
  
    .bicd-card-title h2 {
      font-size: 1.1rem;
    }
  }

  /* TESTIMONIAL SLIDER */

  /* Testimonial Slider Styles */
.testimonial-section {
    text-align: center;
    background: #ffffff;
    padding: 40px 5%;
    position: relative;
  }
  
  .testimonial-container {
    background: #f8f9ff;
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
  }
  
  .arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #6b63ff;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    user-select: none;
  }
  
  .arrow-left {
    left: -25px;
  }
  
  .arrow-right {
    right: -25px;
  }
  
  .arrow-btn:hover {
    background: #392d91;
    transform: translateY(-50%) scale(1.1);
  }
  
  .slider-content {
    transition: all 0.5s ease;
    min-height: 200px;
  }
  
  .slider-content h3 {
    color: #2a1f5d;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
  }
  
  .slider-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 10px;
    font-style: italic;
  }
  
  .dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9eaff;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .dot.active {
    background: #6b63ff;
  }

  /* DIVIDER SECTION */
  .services-section {
    text-align: center;
    margin: 80px 0 40px 0;
  }
  
  .services-title {
    font-size: 28px;
    font-weight: 700;
    color: #2a1f5d;
    margin-bottom: 60px;
  }
  
  .services-images-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  
  .service-img {
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  /* Base small circle (100x100) */
  .circle-small {
    width: 100px;
    height: 100px;
    border: 4px solid #e9eaff;
  }
  
  /* Active / highlighted circle */
  .circle-active {
    width: 100px;
    height: 100px;
    border: 4px solid #6b63ff;
  }
  
  /* Larger middle circle (120x120) */
  .circle-large {
    width: 120px;
    height: 120px;
    border: 4px solid #e9eaff;
  }
  
  .circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* AWARENESS SECTION */

  /* Awareness Section */
.awareness-section {
    padding: 60px 5%;
    background-color: #ffffff;
  }
  
  /* Section Header */
  .section-header {
    text-align: center;
    position: relative;
  }
  
  .section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 40px;
  }
  
  .arrow-left {
    font-size: 22px;
    margin-right: 8px;
  }
  
  .arrow-right {
    font-size: 22px;
    margin-left: 8px;
  }
  
  /* Content Wrapper */
  .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Image Container */
  .image-container {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  
  /* Circle Slider */
  .circle-slider {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #f2f2ff;
    position: relative;
    margin: 0 auto;
  }
  
  /* Slider Images */
  .slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  .slider-image.active {
    opacity: 1;
  }
  
  /* Decorative Triangles */
  .triangle-primary {
    position: absolute;
    top: 45%;
    left: -35px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 20px solid #6b63ff;
  }
  
  .triangle-secondary {
    position: absolute;
    top: 52%;
    left: -50px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 20px solid #b2aaff;
  }
  
  /* College List Container */
  .college-list-container {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  
  /* College List */
  .college-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  /* College Item */
  .college-item {
    background: #0d1667;
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Arrow Icons */
  .arrow-up,
  .arrow-down {
    font-size: 18px;
  }

  /* Reviews Section */
.reviews-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 12px;
    background: #ffffff;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 28px;
    color: #1c1c1c;
    margin-bottom: 8px;
    font-weight: 700;
}

.section-title p {
    font-size: 16px;
    color: #555;
}

/* Review Cards Container */
.review-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

/* Individual Review Card */
.review-card {
    background: #f8f9ff;
    border-radius: 12px;
    padding: 25px;
    width: 330px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.review-card p {
    font-size: 16px;
    color: #2a2a7f;
    font-weight: 600;
    margin: 0;
}

/* Feedback Tip */
.feedback-tip {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
    color: #333;
}

.warning-icon {
    font-size: 18px;
}

/* Feedback Form */
.feedback-form {
    background: #1a1b57;
    color: white;
    border-radius: 12px;
    padding: 30px 20px;
    width: 100%;
    margin: 0 auto;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

/* Form Left Section */
.form-left {
    flex: 1;
    min-width: 250px;
}

.form-left label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-left input {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: none;
    outline: none;
    font-size: 14px;
}

.form-left input[type="email"] {
    margin-bottom: 15px;
}

/* Form Middle Section */
.form-middle {
    flex: 2;
    min-width: 200px;
}

.form-middle label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-middle textarea {
    width: 100%;
    height: 120px;
    border-radius: 20px;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 14px;
    resize: none;
}

/* Form Right Section */
.form-right {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.form-right label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Stars */
.stars {
    font-size: 28px;
    color: #ffc107;
    cursor: pointer;
    margin-bottom: 25px;
}

/* Submit Button */
.submit-btn {
    background: #8bc34a;
    color: #1a1b57;
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
}

.submit-btn:hover {
    background: #7cb342;
}

/* Result Box */
.result-box {
    max-width: 1000px;
    margin: 20px auto;
    background: #f0f0ff;
    padding: 20px;
    border-radius: 10px;
    color: #1a1b57;
    font-size: 16px;
    display: none;
}
  