/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui;
    line-height: 1.6;
    color: #333;
}

.app {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #e0f2fe 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(90deg, #1e3a8a 0%, #1e40af 50%, #3730a3 100%);
    color: white;
    padding: 5rem 1rem;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.0rem;
}

.hero-icons .img-bx {
    display:flex;
}
.hero-icons .img-bx img{
    width:100%;
}
.hero-icons svg{
    color: rgb(250 204 21);
    display:none;
}
.trophy-icon {
    width:48px;
    height:48px;
}
.star-icon {
    width:32px;
    height:32px;
}
.target-icon {
    width:40px;
    height:40px;
}

.hero-title {
    font-size: 72px;
    line-height:normal;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fde047, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
        line-height: normal;
    margin-bottom: 1rem;
    color: #dbeafe;
}

.highlight {
    font-weight: 600;
    color: #fde047;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #bfdbfe;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 18px;
}

.stat-dot {
    width: 12px;
    height: 12px;
    background: #fbbf24;
    border-radius: 50%;
}

/* Achievers Section */
.achievers-section {
    padding: 5rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
        font-size: 48px;
            line-height: normal;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, #2563eb, #3730a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #6b7280;
    max-width: 750px;
    margin: 0 auto;
}

.achievers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Achiever Cards */
.achiever-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #f3f4f6;
    transition: all 0.5s ease;
    cursor: pointer;
}

.achiever-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.rank-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.achiever-photo {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.achiever-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.achiever-card:hover .achiever-photo img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achiever-card:hover .photo-overlay {
    opacity: 1;
}

.achiever-content {
    padding: 1.5rem;
}

.exam-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.achiever-card:hover .exam-name {
    color: #1d4ed8;
}

.achiever-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.quote-section {
    position: relative;
}

.quote-icon {
    color: #93c5fd;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.quote-text {
    color: #6b7280;
    font-style: italic;
    line-height: 1.6;
    font-size: 0.875rem;
    display: -webkit-box;
  -webkit-line-clamp: 4;  
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  max-height: 6.5rem;
}
.quote-text.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}
.card-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 1rem;
    transition: border-color 0.3s ease;
}

.achiever-card:hover .card-border {
    border-color: #bfdbfe;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(90deg, #eff6ff, #e0f2fe);
    padding: 5rem 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    background: linear-gradient(90deg, #2563eb, #3730a3);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon i {
    color: white;
    font-size: 2rem;
}

.stat-number, .stat-number1 {
    font-size: 3rem;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: #6b7280;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.cta-description {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: linear-gradient(90deg, #2563eb, #3730a3);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    background: linear-gradient(90deg, #1d4ed8, #312e81);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        font-size: 0.8rem;
    }
    
    .achievers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .cta-card {
        padding: 1.5rem;
    }
    .hero-title{
        font-size: 48px;
    }
    .hero-subtitle{
        font-size: 20px;
    }
    .section-title{
        font-size: 32px;
    }
    .section-description{
        font-size: 16px;
    }
    .hero-icons .img-bx {
        width: 166px;
        height: unset;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
    }
    
    .achievers-section,
    .trust-section {
        padding: 3rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
}
.read-toggle {
  margin-top: 5px;
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-weight: bold;
  padding: 0;
      position: relative;
          z-index: 1050;
}
.sec-yt-cards{
    margin-bottom: 40px;
}
.sec-yt-cards .section-title{
    text-align: center;
}
.sec-yt-cards .card-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.sec-yt-cards .card-container .card{
    cursor: pointer;
    width: calc(33.333% - 16px);
    min-width:260px;
    position: relative;
    transition: transform 0.2s;
    max-width: 400px;
}
.sec-yt-cards .card-container .card img{
    width: 100%;
    display: block;
    border-radius: 8px;
}
.sec-yt-cards .card-container .card iframe{
    border:none;
}
/* Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}
.airmodal {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    aspect-ratio: 16 / 9;
}
.airmodal iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}
.close-modal {
    position: absolute;
    top: -62px;
    right: 0;
    font-size: 52px;
    color: white;
    cursor: pointer;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button::before {
    content: '';
    display: inline-block;
    margin-left: 5px;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
.card:hover .play-button {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
    transition: 0.2s ease;
}
