        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
            line-height: 1.6;
            color: #2d3748;
            background-color: #ffffff;
            overflow-x: hidden;
            align-items: center;
            justify-content: center;
        }

        /* Top Info Bar */
        .info-bar {
            background: #1a202c;
            color: white;
            padding: 10px 0;
            font-size: 13px;
        }

        .info-bar-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-item i {
            color: #fbbf24;
        }

        /* Header */
        header {
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            max-width: 1280px;
            margin: 0 auto;
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo {
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 800;
            gap: 8px;
        }


        .logo-text p {
            font-size: 11px;
            color: #718096;
            font-weight: 500;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center;
        }

        .nav-menu a {
            color: #4a5568;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.2s;
        }

        .nav-menu a:hover {
            color: #FF8C00;
        }

        .header-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .btn-primary {
            padding: 10px 24px;
           background: linear-gradient(135deg, #FFC000 0%, #FF8C00 100%);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
            transition: all 0.3s;
            margin-left: 80px; 
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 192, 0, 0.4);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 14px;
            color: #2d3748;
            cursor: pointer;
            margin-right: 10px; 
        }

        /* Hero Section */
        .hero {
            background-color:rgba(0,0,0,0.5);
            z-index: 2;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

          .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/Hero-pic1.png') center center no-repeat;
  background-size: cover; /* ya 'contain' agar full image chahiye bina crop */
  z-index: -1; /* optional: image ko background me rakhne ke liye */
   }

        .hero-content {
            max-width: 1280px;
            background-color:rgba(0,0,0,0.5);
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 20px 20px;
            border-radius: 10px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .hero h2 {
            font-size: 52px;
            color: white;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 20px;
            color: rgba(255,255,255,0.95);
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 60px auto 0;
        }

        .stat-box {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
        }

        .stat-box i {
            font-size: 32px;
            color: #fbbf24;
            margin-bottom: 12px;
        }

        .stat-box h3 {
            font-size: 18px;
            color: white;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .stat-box p {
            font-size: 14px;
            color: rgba(255,255,255,0.9);
            margin: 0;
        }

        /* Foundation Section */
        .foundation {
            padding: 40px 20px;
            background: white;
        }

        .foundation-content {
            max-width: 1280px;
            margin: 0 auto;
        }

        .foundation-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  overflow: hidden;
  border-radius: 12px;
  margin: 10PX 0 20px 0;
}

.foundation-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

        .course-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    /* Tab Navigation */
    .tab-navigation {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding: 10px 0;
      margin-bottom: 30px;
      scrollbar-width: thin;
    }

    .tab-navigation::-webkit-scrollbar {
      height: 4px;
    }

    .tab-navigation::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }

    .tab-navigation::-webkit-scrollbar-thumb {
      background: #FFC000;
      border-radius: 10px;
    }

    .tab-btn {
      padding: 12px 24px;
      background: white;
      border: 2px solid #e5e7eb;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      color: #4b5563;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .tab-btn:hover {
      border-color: #FFC000;
      color: #FFC000;
      transform: translateY(-2px);
    }

    .tab-btn.active {
      background: linear-gradient(135deg, #FFD700 0%, #FFB200 50%, #FF8C00 100%);

      color: white;
      border-color: #FFC000;
    }

    /* Course Grid */
    .course-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 30px;
    }

    .course-grid.show-all {
      grid-template-columns: repeat(4, 1fr);
    }

    /* Course Card */
    .course-card {
      background: white;
      border-radius: 12px;
      padding: 16px;
      box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      border: 1px solid #f3f4f6;
    }

    .course-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #FFC000, #FF8C00);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .course-card:hover {
      box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
      transform: translateY(-4px);
      border-color: #e0e7ff;
    }

    .course-card:hover::before {
      transform: scaleX(1);
    }

    /* Badge */
    .course-badge {
      display: inline-block;
      padding: 4px 10px;
      background: #ede9fe;
      color: #FFC000;
      font-size: 10px;
      font-weight: 600;
      border-radius: 12px;
      margin-bottom: 10px;
    }

    .badge-green {
      background: #d1fae5;
      color: #059669;
    }

    .badge-blue {
      background: #dbeafe;
      color: #2563eb;
    }

    .badge-orange {
      background: #fed7aa;
      color: #ea580c;
    }

    /* Course Icon */
    .course-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #FFD700 0%, #FFB200 50%, #FF8C00 100%);

      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }

    .course-icon img {
      width: 28px;
      height: 28px;
      filter: brightness(0) invert(1);
    }

    /* Course Name */
    .course-name {
      font-size: 14px;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 6px;
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1.3;
    }

    /* Course Price */
    .course-price {
      font-size: 12px;
      color: #6b7280;
      margin-bottom: 10px;
    }

    /* Inquire Button */
    .inquire-btn {
      padding: 8px 16px;
      background: linear-gradient(135deg, #FFD700 0%, #FFB200 50%, #FF8C00 100%);

      color: white;
      border: none;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .inquire-btn:hover {
     background: linear-gradient(135deg, #FFC000 0%, #FF8C00 100%);
      transform: scale(1.02);
    }

    .inquire-btn:active {
      transform: scale(0.98);
    }

    /* View All Button */
    .view-all-container {
      text-align: center;
      margin-top: 30px;
    }

    .view-all-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 28px;
      background: white;
      color: #FFC000;
      border: 2px solid #FFC000;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .view-all-btn:hover {
      background: linear-gradient(135deg, #FFD700 0%, #FFB200 50%, #FF8C00 100%);

      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    }

    .view-all-btn.hide {
      display: none;
    }

    /* Hidden courses */
    .course-card.hidden {
      display: none;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .course-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .course-grid.show-all {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .course-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .course-grid.show-all {
        grid-template-columns: repeat(2, 1fr);
      }

      .course-card {
        padding: 12px;
      }

      .course-name {
        font-size: 12px;
        min-height: 34px;
      }

      .course-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
      }

      .course-icon img {
        width: 24px;
        height: 24px;
      }

      .inquire-btn {
        padding: 7px 12px;
        font-size: 11px;
      }

      .tab-btn {
        padding: 8px 14px;
        font-size: 12px;
      }

      .course-badge {
        font-size: 9px;
        padding: 3px 8px;
      }

      .course-price {
        font-size: 10px;
      }
    }
    

    @media (max-width: 480px) {

      .tab-navigation {
        margin-bottom: 20px;
      }
    }

        .section-header {
            text-align: center;
    
        }

        .section-badge {
            display: inline-block;
            background: #fffbe6;
            color: #FFC000  ;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 42px;
            color: #1a202c;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #867157;
        }

        .foundation-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .foundation-text h3 {
            font-size: 32px;
            color: #1a202c;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .foundation-text p {
            font-size: 16px;
            color: #4a5568;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .foundation-highlight {
            background: linear-gradient(135deg, #FF8C00 0%, #FFC000 100%);
            color: white;
            padding: 30px;
            border-radius: 16px;
            margin-top: 30px;
        }

        .foundation-highlight h4 {
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .foundation-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .feature-item {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s;
        }

        .feature-item:hover {
            border-color: #FF8C00;
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }

        .feature-item i {
            font-size: 32px;
            color: #FF8C00;
            margin-bottom: 12px;
        }

        .feature-item h4 {
            font-size: 18px;
            color: #1a202c;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .feature-item p {
            font-size: 14px;
            color: #718096;
            margin: 0;
        }

        /* ICMAI Section */
        .icmai-section {
            padding: 80px 20px;
            background: #f7fafc;
        }

        .icmai-content {
            max-width: 1280px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            padding: 60px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .icmai-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .icmai-badge {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #FF8C00 0%, #FFC000 100%);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .icmai-badge i {
            font-size: 80px;
            margin-bottom: 20px;
        }

        .icmai-badge h3 {
            font-size: 28px;
            font-weight: 800;
        }

        /* Programs Section */
        .programs {
            padding: 40px 20px;
            background: white;
        }

        .programs-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }

        .program-card {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .program-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: #FF8C00;
        }

        .program-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #FF8C00 0%, #FFC000 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            margin-bottom: 20px;
        }

        .program-card h3 {
            font-size: 20px;
            color: #1a202c;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .program-card p {
            font-size: 15px;
            color: #718096;
            line-height: 1.7;
        }

        /* Universities Section */
        .universities {
            padding: 80px 20px;
            background: #f7fafc;
        }

        .uni-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .uni-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
        }

        .uni-card {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
        }

        .uni-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            border-color: #FF8C00;
        }

        .uni-card h4 {
            font-size: 16px;
            color: #1a202c;
            font-weight: 600;
        }
        .uni-card img {
            max-width: 100px;
            width: 100%;/* logo height */
  object-fit: conain;
}

        /* Certifications Section */
        .certifications {
            padding: 60px 20px;
            background: white;
        }

        .cert-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .cert-badge {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            padding: 32px 40px;
            text-align: center;
            transition: all 0.3s;
        }

        .cert-badge:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }

        .cert-badge i {
            font-size: 48px;
            color: #FF8C00;
            margin-bottom: 12px;
        }

        .cert-badge h4 {
            font-size: 16px;
            color: #1a202c;
            font-weight: 700;
        }

        /* Expert Mentors Section */
        .mentors {
            padding: 80px 20px;
            background: linear-gradient(135deg, #FF8C00 0%, #FFC000 100%);
            text-align: center;
            color: white;
        }

        .mentors h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .mentors p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Partner Program Section */
        .partner-program {
            padding: 80px 20px;
            background: white;
        }

        .partner-content {
            max-width: 1280px;
            margin: 0 auto;
        }

        .partner-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }
        .partner-card-link{
  text-decoration:none;
  color:inherit;
}

        .partner-card {
            background: linear-gradient(to bottom, white, #f7fafc);
            border: 2px solid #e2e8f0;
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .partner-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: #FF8C00;
        }

        .partner-card h3 {
            font-size: 28px;
            color: #1a202c;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .partner-card ul {
            list-style: none;
            margin: 24px 0;
        }

        .partner-card li {
            padding: 12px 0;
            padding-left: 32px;
            position: relative;
            font-size: 15px;
            color: #4a5568;
        }

        .partner-card li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #FF8C00;
            font-weight: bold;
            font-size: 18px;
        }

        .partner-ideal {
            background: #f7fafc;
            padding: 20px;
            border-radius: 12px;
            margin-top: 24px;
        }

        .partner-ideal strong {
            color: #FF8C00;
        }

        /* Memory Shark & Bagless India Section */
        .initiatives {
            padding: 80px 20px;
            background: #f7fafc;
        }

        .initiatives-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .initiative-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .initiative-card h3 {
            font-size: 28px;
            color: #1a202c;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .initiative-card ul {
            list-style: none;
            margin: 20px 0;
        }

        .initiative-card li {
            padding: 10px 0;
            padding-left: 32px;
            position: relative;
            font-size: 15px;
            color: #4a5568;
        }

        .initiative-card li:before {
            content: '→';
            position: absolute;
            left: 0;
            color: #FF8C00;
            font-weight: bold;
        }
  .testimonial-section {
    max-width: 1400px;
    margin: 20px auto;
    text-align: center;
    padding: 40px 20px;
  }

  .section-label {
    color: #FFC000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
  }

  .section-title {
    color: #1f2937;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
  }

  .carousel-wrapper {
    position: relative;
  }

  .carousel-container {
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #f3f4f6;
    border-radius: 16px;
    padding: 40px 30px 30px;
    position: relative;
    transition: all 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .quote-icon {
    font-size: 56px;
    color: #d1d5db;
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
  }

  .testimonial-text {
    color: #1f2937;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 80px;
  }

  .author-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .author-name {
    color: #1f2937;
    font-weight: 600;
    font-size: 14px;
  }

  .author-handle {
    color: #6b7280;
    font-size: 13px;
  }

  .carousel-button {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e5e7eb;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
  }

  .carousel-button:hover {
    background: #f9fafb;
    transform: translateY(-50%) scale(1.1);
  }

  .carousel-button.prev { left: -25px; }
  .carousel-button.next { right: -25px; }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dot.active {
    background: #1f2937;
    width: 24px;
    border-radius: 4px;
  }

  @media (max-width: 992px) {
    .testimonial-card { flex: 0 0 calc(50% - 20px); }
  }

  @media (max-width: 640px) {
    .testimonial-card { flex: 0 0 100%; }
    .section-title { font-size: 28px; margin-bottom: 40px; }
    .carousel-button { width: 36px; height: 36px; font-size: 16px; }
  }

        .news-section {
    max-width: 1400px;
    margin: 30px auto;
    text-align: center;
    padding: 0 20px;
  }

  .section-label {
    color: #FFC000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .section-title {
    color: #1f2937;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .carousel-container {
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
  }

  .news-card {
    flex: 0 0 calc(25% - 15px);
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }

  .news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .news-content {
    padding: 20px;
    text-align: left;
  }

  .news-logo {
    height: 30px;
    margin-bottom: 12px;
    object-fit: contain;
  }

  .news-title {
    color: #1f2937;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
    min-height: 60px;
  }

  .read-more {
    color: #FFC000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
  }

  .read-more:hover {
    text-decoration: underline;
  }

  .carousel-button {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #1f2937;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
  }

  .carousel-button:hover {
    background: #374151;
    transform: translateY(-50%) scale(1.1);
  }

  .carousel-button.prev {
    left: -20px;
  }

  .carousel-button.next {
    right: -20px;
  }

  .explore-media {
    margin-top: 30px;
    text-align: right;
  }

  .explore-link {
    color: #ef4444;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
  }

  .explore-link:hover {
    text-decoration: underline;
  }
    .swiper{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex
;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}
.initiative-logo {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.initiative-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.initiative-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

  @media (max-width: 1200px) {
    .news-card { flex: 0 0 calc(33.333% - 14px); }
  }

  @media (max-width: 900px) {
    .news-card { flex: 0 0 calc(50% - 10px); }
    .section-title { font-size: 30px; }
  }

  @media (max-width: 600px) {
    .news-card { flex: 0 0 100%; }
    .section-title { font-size: 26px; }
    .carousel-button { width: 38px; height: 38px; font-size: 18px; }
    .carousel-button.prev { left: 0; }
    .carousel-button.next { right: 0; }
  }
        /* Contact Section */
        .contact {
            padding: 100px 20px;
            background: linear-gradient(135deg, #FF8C00 0%, #FFC000 100%);
            text-align: center;
            color: white;
        }

        .contact h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .contact p {
            font-size: 20px;
            margin-bottom: 40px;
        }

        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .contact-btn {
            padding: 16px 40px;
            background: white;
            color: #FF8C00;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }

        .contact-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.3);
        }

        /* Footer */
        footer {
            background: #1a202c;
            color: #a0aec0;
            padding: 60px 20px 30px;
        }

        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
            align-items: center;
        }

        .footer-section h4 {
            font-size: 18px;
            color: white;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-section p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1280px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 14px;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 8px 16px rgba(0,0,0,0.1);
                gap: 0;
                z-index: 999;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                width: 100%;
                padding: 12px 0;
                border-bottom: 1px solid #e2e8f0;
            }

            .mobile-toggle {
                display: block;
            }

            .logo-icon {
                width: 42px;
                height: 42px;
                font-size: 20px;
            }

            .logo-text h1 {
                font-size: 18px;
            }

            .logo-text p {
                font-size: 10px;
            }

            nav {
                padding: 12px 20px;
            }

            .info-bar {
               display: none;
            }

            .info-item {
                font-size: 12px;
            }

            .hero {
                padding: 50px 20px;
            }

            .hero h2 {
                font-size: 28px;
                line-height: 1.3;
            }

            .hero p {
                font-size: 15px;
            }

            .hero-badge {
                font-size: 11px;
                padding: 6px 14px;
                margin-bottom: 16px;
            }

            .hero-stats {
                grid-template-columns: repeat(4, 1fr);
                gap: 15px;
                margin-top: 40px;
            }

            .stat-box {
                padding: 20px 15px;
            }

            .stat-box i {
                font-size: 24px;
                margin-bottom: 8px;
            }

            .stat-box h3 {
                font-size: 15px;
            }

            .stat-box p {
                font-size: 12px;
            }

            .foundation,
            .programs,
            .universities,
            .partner-program,
            .initiatives,
            .testimonials {
                padding: 20px 20px;
            }

            .icmai-section {
                padding: 60px 20px;
            }

            .icmai-content {
                padding: 40px 24px;
                border-radius: 16px;
            }

            .section-header {
                margin-bottom: 20px;
            }

            .section-badge {
                font-size: 11px;
                padding: 5px 12px;
            }

            .section-title {
                font-size: 26px;
                line-height: 1.3;
            }

            .section-subtitle {
                font-size: 15px;
            }

            .foundation-grid,
            .icmai-grid,
            .partner-grid,
            .initiatives-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .foundation-text h3 {
                font-size: 26px;
            }

            .foundation-text p {
                font-size: 15px;
            }

            .foundation-features {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .feature-item {
                padding: 20px;
            }

            .feature-item i {
                font-size: 28px;
            }

            .feature-item h4 {
                font-size: 16px;
            }

            .feature-item p {
                font-size: 13px;
            }

            .foundation-highlight {
                padding: 24px;
            }

            .foundation-highlight h4 {
                font-size: 17px;
            }

            .foundation-highlight p {
                font-size: 14px;
            }

            .icmai-badge {
                height: 200px;
                border-radius: 12px;
            }

            .icmai-badge i {
                font-size: 60px;
                margin-bottom: 15px;
            }

            .icmai-badge h3 {
                font-size: 22px;
            }

            .icmai-grid h3 {
                font-size: 24px;
            }

            .icmai-grid p {
                font-size: 15px;
            }

            .programs-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .program-card {
                padding: 28px;
            }

            .program-icon {
                width: 56px;
                height: 56px;
                font-size: 24px;
            }

            .program-card h3 {
                font-size: 18px;
            }

            .program-card p {
                font-size: 14px;
            }

            .cert-grid {
                gap: 20px;
            }

            .cert-badge {
                padding: 24px 30px;
            }

            .cert-badge i {
                font-size: 36px;
            }

            .cert-badge h4 {
                font-size: 14px;
            }

            .certifications {
                padding: 50px 20px;
            }

            .mentors {
                padding: 60px 20px;
            }

            .mentors h2 {
                font-size: 28px;
                line-height: 1.3;
            }

            .mentors p {
                font-size: 15px;
            }

            .uni-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 15px;
            }

            .uni-card {
                padding: 20px;
            }

            .uni-card h4 {
                font-size: 13px;
            }

            .partner-card {
                padding: 30px 24px;
            }

            .partner-card h3 {
                font-size: 22px;
            }

            .partner-card li {
                font-size: 14px;
                padding: 10px 0;
                padding-left: 28px;
            }

            .partner-ideal {
                padding: 16px;
                font-size: 14px;
            }

            .initiative-card {
                padding: 30px 24px;
            }

            .initiative-card h3 {
                font-size: 22px;
            }

            .initiative-card p {
                font-size: 14px;
            }

            .initiative-card li {
                font-size: 14px;
                padding: 8px 0;
                padding-left: 28px;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .testimonial-card {
                padding: 28px;
            }

            .testimonial-card p {
                font-size: 14px;
            }

            .contact {
                padding: 70px 20px;
            }

            .contact h2 {
                font-size: 28px;
                line-height: 1.3;
            }

            .contact p {
                font-size: 16px;
                margin-bottom: 30px;
            }

            .contact-methods {
                flex-direction: column;
                gap: 12px;
                align-items: stretch;
            }

            .contact-btn {
                padding: 14px 24px;
                font-size: 14px;
                justify-content: center;
            }

            .contact > div p {
                font-size: 14px;
            }

            footer {
                padding: 50px 20px 24px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
                margin-bottom: 32px;
            }

            .footer-section h4 {
                font-size: 16px;
            }

            .footer-section p,
            .footer-links li,
            .footer-links a {
                font-size: 13px;
            }

            .footer-bottom {
                padding-top: 24px;
                font-size: 12px;
            }

            .footer-bottom p {
                font-size: 12px;
            }
        }

        @media (max-width: 640px) {
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .hero h2 {
                font-size: 24px;
            }

            .hero p {
                font-size: 14px;
            }

            .section-subtitle {
                font-size: 14px;
            }

            .stat-box {
                padding: 18px 12px;
            }

            .uni-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cert-grid {
                gap: 15px;
            }

            .cert-badge {
                padding: 20px 24px;
            }

            .contact-methods {
                padding: 0 10px;
            }
        }

        @media (max-width: 480px) {
            .hero h2 {
                font-size: 22px;
            }


            .logo-text h1 {
                font-size: 16px;
            }

            .info-bar-content {
                font-size: 11px;
            }
        }
        .promo-section {
            padding: 20px;
  display: flex;
  justify-content: center;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
}

.promo-card img {
  width: 180px;
  height: auto;
  border-radius: 10%;
}


.yellow-card {
  background: linear-gradient(135deg, #fff4d2, #ffe58f);
}

.blue-card {
  background: #f0f6ff;
}

.promo-text h2 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 10px;
}

.promo-text p {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.promo-btn {
  font-weight: 600;
  color: #000;
  text-decoration: none;
  background: transparent;
  border: none;
}

.promo-btn span {
  font-size: 1rem;
}

.promo-btn.green {
  color: #00a650;
}

.highlight {
  background-color: #c8ff99;
  padding: 3px 8px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .promo-card {
    text-align: left;
    padding: 15px;
  }
  .promo-text h2 {
      font-size: 1rem;
  }
  .promo-text p {
      font-size: 0.65rem;
  }
  .promo-btn {
      font-size: 0.75rem;
  }
  .promo-card img{
      width: 100px;
  }

}
.shiksha-banner {
  background-color: #ffa800; /* white background */
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}
.shiksha-banner_2 {
  background-color: #ffffff; /* white background */
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-container_2 {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-img_2 {
  width: 100%;
  max-width: 1100px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .banner-img {
    max-width: 95%;
    border-radius: 16px;
  }
  .testimonial-section {
    padding: 20px 10px;
  }
  
    .banner-img_2 {
    max-width: 95%;
    border-radius: 16px;
  }
  .testimonial-section {
    padding: 20px 10px;
  }
}