        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }

        /* Top Header Bar */
        .top-header {
            background: linear-gradient(135deg, #4a90e2, #357abd);
            color: white;
            padding: 12px 0;
            font-size: 14px;
        }

        .top-header .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 30px;
        }

        .contact-info span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: white;
            font-size: 16px;
            transition: opacity 0.3s ease;
        }

        .social-links a:hover {
            opacity: 0.8;
        }

        /* Main Navigation */
        .main-nav {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            border-top: #03bef7 3px solid;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            width: 100px;
            height: 70px;
            padding: 8px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-container img {
            width: 170px;
            height: 90px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .active {
            color: #4a90e2 !important;
        }

        .nav-menu li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 10px 5px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu li a:hover {
            color: #4a90e2;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #4a90e2;
            transition: width 0.3s ease;
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

        .dropdown-arrow::after {
            content: '▼';
            font-size: 10px;
            margin-left: 5px;
            opacity: 0.7;
        }

        /* Hamburger styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.nav-toggle .bar {
    width: 28px;
    height: 3px;
    background: #357abd;
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

        .enquire-btn {
            background: linear-gradient(135deg, #28a745, #20c457);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .enquire-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
        }



.hero {
    position: relative;
    min-height:550px;
    padding: 80px 0;
    background: url('graduation.jpg') center center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(44, 65, 104, 0.55); /* semi-transparent gray overlay */
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-content {
    color: #fff;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-family: 'Times New Roman', Times, serif;
    color: #03bef7;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.hero-content p {
    color:rgb(255, 255, 255);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #f3f3f3;
    font-size: 1rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

.checkmark {
    background: linear-gradient(135deg, #28a745, #20c457);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

        /* Process Section */
.process-section {
    background: linear-gradient(135deg,rgb(10, 91, 184) 0%,rgb(78, 53, 189) 100%);
    padding: 70px 0 60px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-header {
    max-width: 900px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

        .free-enquire-btn {
            background: linear-gradient(135deg, #28a745, #20c457);
            color: white;
            padding: 12px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            margin-bottom: 30px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .free-enquire-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
        }

.process-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.process-container {
    max-width: 1100px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 36px;
}

.process-card {
    background: rgba(255,255,255,0.13);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.97);
    padding: 48px 28px 38px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.81);
    transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s forwards;
}


.process-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 40px rgba(44, 62, 80, 0.18);
    z-index: 2;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px auto;
    background: linear-gradient(135deg, #28a745 60%, #20c457 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 4px 18px rgba(40,167,69,0.18);
    transition: transform 0.3s;
    animation: iconPop 1.2s infinite alternate;
}

.process-card:hover .process-icon {
    animation: iconPulse 0.7s;
    transform: scale(1.12) rotate(-6deg);
}

.process-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #070707;
    letter-spacing: 0.5px;
}

.process-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #eaf6ff;
    margin-bottom: 0;
}

.process-card p strong {
    color: #fff;
    font-weight: 700;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconPop {
    0% { transform: scale(1);}
    100% { transform: scale(1.08);}
}

@keyframes iconPulse {
    0% { transform: scale(1.12) rotate(-6deg);}
    50% { transform: scale(1.22) rotate(6deg);}
    100% { transform: scale(1.12) rotate(-6deg);}
}

/* Staggered animation for cards */
.process-card.animated:nth-child(1) { animation-delay: 0.1s; }
.process-card.animated:nth-child(2) { animation-delay: 0.3s; }
.process-card.animated:nth-child(3) { animation-delay: 0.5s; }
.process-card.animated:nth-child(4) { animation-delay: 0.7s; }

        .process-card p strong {
            color: white;
            font-weight: 700;
        }

        .reviews-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .reviews-badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 15px 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .excellent-text {
            font-weight: 700;
            font-size: 1.1rem;
            color: white;
        }

        .stars {
            display: flex;
            gap: 5px;
        }

        .stars i {
            color: #ffd700;
            font-size: 18px;
        }

        .reviews-count {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* ...existing code... */

.fields-section {
    background: linear-gradient(0deg,rgb(160, 201, 248) 60%, #f8fbff 100%);
    padding: 50px 0 80px 0;
    text-align: center;
}

.fields-title {
    font-size: 2.1rem;
    font-family: 'Times New Roman', Times, serif;
    color:rgb(7, 24, 173);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.fields-description {
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color:rgb(4, 51, 109);
    line-height: 1.7;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
}

/* Main Programs Grid */
.main-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.main-program-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.15);
    border: 2px solid rgb(6, 59, 231);
    padding: 40px 25px 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s;
    opacity: 0;
    transform: translateY(40px);
}

.main-program-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.main-program-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 16px 40px rgba(44, 62, 80, 0.25);
}

.main-program-icon {
    font-size: 3.5rem;
    color: #4a90e2;
    margin-bottom: 20px;
    transition: color 0.3s, transform 0.3s;
}

.main-program-card:hover .main-program-icon {
    color: #357abd;
    transform: scale(1.1);
}

.main-program-card h3 {
    font-size: 1.4rem;
    color: rgb(7, 24, 173);
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Times New Roman', Times, serif;
}

.main-program-card p {
    font-size: 1rem;
    color: #23406e;
    line-height: 1.6;
    margin: 0;
}

/* STEM Breakdown Section */
.stem-breakdown {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(74, 144, 226, 0.2);
}

.stem-title {
    font-size: 1.8rem;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(7, 24, 173);
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 0.3px;
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 950px;
    margin: 0 auto;
}

.field-card {
    background: rgba(255,255,255,0.85);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.38);
    border:rgb(6, 59, 231) 1px solid;
    padding: 38px 18px 28px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s;
    opacity: 0;
    transform: translateY(40px);
}

.field-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.field-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 32px rgba(44, 62, 80, 0.16);
}

.field-icon {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 18px;
    transition: color 0.2s;
}

.field-card:hover .field-icon {
    color: #4a90e2;
}

.field-card span {
    font-size: 1.13rem;
    color: #23406e;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.main-program-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.main-program-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Add a subtle indicator that the card is clickable */
.main-program-link .main-program-card {
    cursor: pointer;
}

.main-program-link .main-program-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 16px 40px rgba(44, 62, 80, 0.25);
}


/* Animation for fields */
.animated-field {
    transition: opacity 0.8s cubic-bezier(.34,1.56,.64,1), transform 0.8s cubic-bezier(.34,1.56,.64,1);
}

/* Staggered animation for main programs */
.main-programs-grid .main-program-card:nth-child(1) { transition-delay: 0.1s; }
.main-programs-grid .main-program-card:nth-child(2) { transition-delay: 0.3s; }
.main-programs-grid .main-program-card:nth-child(3) { transition-delay: 0.5s; }

/* Staggered animation for STEM fields */
.fields-grid .field-card:nth-child(1) { transition-delay: 0.1s; }
.fields-grid .field-card:nth-child(2) { transition-delay: 0.2s; }
.fields-grid .field-card:nth-child(3) { transition-delay: 0.3s; }
.fields-grid .field-card:nth-child(4) { transition-delay: 0.4s; }
.fields-grid .field-card:nth-child(5) { transition-delay: 0.5s; }
.fields-grid .field-card:nth-child(6) { transition-delay: 0.6s; }

@media (max-width: 700px) {
    .fields-title { 
        font-size: 1.8rem; 
        font-family: 'Times New Roman', Times, serif;
    }
    
    .main-programs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .main-program-card {
        padding: 30px 20px 25px 20px;
    }
    
    .main-program-icon {
        font-size: 3rem;
    }
    
    .stem-title {
        font-size: 1.5rem;
    }
    
    .fields-grid {  
        padding: 0 10px; 
    }
    
    .field-card { 
        padding: 28px 8px 18px 8px; 
        border:rgb(51, 231, 6) 1px solid; 
    }
    
    .field-icon { 
        font-size: 2rem; 
    }
}


.about-section {
    background: #f9fbfd;
    padding: 64px 0;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    max-width: 1000px;
    margin: 0 auto;
    flex-direction: row;
}

.about-content {
    flex: 1 1 0;
    max-width: 540px;
}

.about-content h2 {
    font-size: 2.2rem;
    color:rgb(58, 120, 221);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.about-content p {
    color: #3a4a5d;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.course-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 28px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.course-list li a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.course-list li a:hover {
    color: #357abd;
    text-decoration: underline;
}

.get-started-btn {
    background: linear-gradient(90deg, #4a90e2 60%, #357abd 100%);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(74, 144, 226, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
}

.get-started-btn:hover {
    background: linear-gradient(90deg, #357abd 60%, #4a90e2 100%);
    box-shadow: 0 4px 24px rgba(74, 144, 226, 0.15);
}

.about-image {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.about-image img {
    width: 420px;
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(34, 64, 110, 0.10);
    background: #f0f0f0;
    display: block;
}

.animated-about {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(.34,1.56,.64,1), transform 0.9s cubic-bezier(.34,1.56,.64,1);
}

.animated-about.visible {
    opacity: 1;
    transform: translateY(0);
}

        /* Why Apply Section */
        .why-apply-section {
            background: rgb(191, 231, 243);
            padding: 80px 0;
        }

        .why-apply-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .why-apply-content h2 {
            font-family: 'Times New Roman', Times, serif;
            font-size: 2.5rem;
            color: #333333;
            margin-bottom: 30px;
            line-height: 1.2;
            font-weight: 700;
        }

        .why-apply-point {
            margin-bottom: 25px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            transition: background 0.3s ease;
            font-style: italic;
        }

        .why-apply-point:last-child {
            border-bottom: none;
        }

        .why-apply-point p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
            margin: 0;
        }

        .why-apply-point p strong {
            color: #333;
            font-weight: 600;
        }

        .why-apply-image {
            position: relative;
            height: 750px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .why-apply-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

 .animated-why-apply {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(.34,1.56,.64,1), transform 0.9s cubic-bezier(.34,1.56,.64,1);
}

.animated-why-apply.visible {
    opacity: 1;
    transform: translateY(0);
}

        .celebration-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                rgba(74, 144, 226, 0.2), 
                rgba(255, 193, 7, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .why-apply-image:hover .celebration-overlay {
            opacity: 1;
        }

        .celebration-overlay i {
            font-size: 4rem;
            color: #ffc107;
            background: rgba(255, 255, 255, 0.9);
            padding: 25px;
            border-radius: 50%;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            animation: bounce 2s infinite;
        }

        
        /* Proven Method Section */
        .proven-method-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .proven-method-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .proven-method-image {
            position: relative;
            height: 600px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .proven-method-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .fields-list li {
            margin-bottom: 15px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            transition: background 0.3s ease;
        }

        
        .animated-proven-method {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(.34,1.56,.64,1), transform 0.9s cubic-bezier(.34,1.56,.64,1);
}

.animated-proven-method.visible {
    opacity: 1;
    transform: translateY(0);
}

        .success-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                rgba(40, 167, 69, 0.2), 
                rgba(255, 193, 7, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .proven-method-image:hover .success-overlay {
            opacity: 1;
        }

        .success-overlay i {
            font-size: 2rem;
            color: #ffc107;
            background: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .proven-method-content h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 25px;
            line-height: 1.2;
            font-weight: 700;
        }

        .text-highlight {
            color: #4a90e2;
        }

        .proven-method-content p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .proven-method-content p strong {
            color: #333;
            font-weight: 600;
        }

        .link-highlight {
            color: #4a90e2;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .link-highlight:hover {
            color: #357abd;
            text-decoration: underline;
        }

        /* Internships & Conferences Section */
.internships-section {
    background: #badcfdff;
    padding: 80px 0;
}

.internships-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.internships-content {
    flex: 1 1 0;
    max-width: 540px;
}

.internships-content h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2.2rem;
    color: rgba(18, 104, 241, 1);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.internships-content p {
    color: #3a4a5d;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.internships-content p strong {
    color: #333;
    font-weight: 600;
}

.opportunities-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 28px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.opportunities-list li {
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: background 0.3s ease;
}

.internships-image {
            position: relative;
            height: 600px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.internships-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
}

.animated-internships {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(.34,1.56,.64,1), transform 0.9s cubic-bezier(.34,1.56,.64,1);
}

.animated-internships.visible {
    opacity: 1;
    transform: translateY(0);
}

.opportunity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(74, 144, 226, 0.2), 
        rgba(255, 193, 7, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.internships-image:hover .opportunity-overlay {
    opacity: 1;
}

.opportunity-overlay i {
    font-size: 2rem;
    color: #ffc107;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 900px) {
    .internships-container {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 18px;
    }
    
    .internships-content {
        max-width: 100%;
        text-align: center;
        order: 2; /* Content comes after image on mobile */
    }
    
    .internships-image {
        justify-content: center;
        order: 1; /* Image comes first on mobile */
        height: 400px;
    }
    
    .internships-content h2 {
        font-size: 1.8rem;
    }
    
    .internships-image img {
        width: 100%;
        max-width: 340px;
    }
    
    .opportunities-list {
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .internships-content h2 {
        font-size: 1.6rem;
    }
    
    .internships-content p {
        font-size: 1rem;
    }
    
    .internships-image {
        height: 300px;
    }
}


       .testimonials-section {
            background-color:rgb(217, 233, 250);
            padding: 90px 0 100px 0;
            position: relative;
            overflow: hidden;
        }


        .testimonials-slider {
        position: relative;
        max-width: 950px;
        margin: 0 auto;
}
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 20px;
        text-align: center;
        position: relative;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 60px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

 .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin-bottom: 0;
    transition: transform 0.5s cubic-bezier(.34,1.56,.64,1);
}

.testimonial-card {
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    padding: 38px 28px 32px 28px;
    text-align: left;
    border: 1.5px solid rgba(74, 144, 226, 0.10);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.34,1.56,.64,1), transform 0.8s cubic-bezier(.34,1.56,.64,1);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    box-shadow: 0 16px 40px rgba(44, 62, 80, 0.18);
    transform: translateY(-8px) scale(1.03);
    border-color: #4a90e2;
}

.star-rating {
    display: flex;
    margin-bottom: 18px;
    gap: 2px;
    animation: stars-glow 2s infinite alternate;
}


.star {
    color: #ffd700;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #23406e;
    margin-bottom: 28px;
    font-style: italic;
    min-height: 80px;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.student-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2 60%, #357abd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(74,144,226,0.12);
    border: 2px solid #fff;
}

.student-name {
    font-weight: 700;
    color: #357abd;
    font-size: 1.08rem;
    letter-spacing: 0.5px;
}

.testimonial-nav {
    display: none;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}

.testimonial-nav button {
    background: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(74,144,226,0.15);
    transition: background 0.2s, transform 0.2s;
}

.testimonial-nav button:hover {
    background: #357abd;
    transform: scale(1.08);
}

        /* Add this CSS to your style.css file */

/* Don't forget to add Font Awesome to your HTML head: */
/* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> */

/* About Our Founders Section */
.founders-section {
    background: linear-gradient(120deg, #f8fbff 60%, #e3f0ff 100%);
    padding: 80px 0;
}

.founders-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.founders-intro {
    flex: 1 1 350px;
    min-width: 260px;
}

.founders-intro .section-title {
    color: #357abd;
    font-size: 2.3rem;
    margin-bottom: 18px;
    font-weight: 800;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 0.5px;
    text-align: left;
}

.founders-intro .section-description {
    color: #23406e;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: left;
}

.founders-highlight {
    flex: 1 1 350px;
    min-width: 260px;
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255,255,255,0.7);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.10);
    padding: 32px 28px;
    position: relative;
}

.founders-logo-glass {
    width: 110px;
    height: 110px;
    background: rgba(74, 144, 226, 0.10);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(74,144,226,0.08);
    margin-right: 18px;
    flex-shrink: 0;
    border: 2px solid #e3f0ff;
}

.founders-logo-glass img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}

.support-text {
    color: #357abd;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
    text-align: left;
    max-width: 350px;
}

@media (max-width: 900px) {
    .founders-flex {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }
    .founders-highlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 18px;
    }
    .support-text {
        max-width: 100%;
        text-align: center;
        margin-top: 18px;
    }
    .founders-intro .section-title,
    .founders-intro .section-description {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .founders-section {
        padding: 50px 0;
    }
    .founders-highlight {
        padding: 18px 8px;
    }
    .founders-logo-glass {
        width: 80px;
        height: 80px;
    }
    .founders-logo-glass img {
        width: 48px;
        height: 48px;
    }
    .founders-intro .section-title {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #e8f4f8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text {
    font-size: 0.9rem;
    color: #e8f4f8;
    max-width: 600px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .founders-content {
        grid-template-columns: 2fr;
        gap: 40px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .founders-section {
        padding: 60px 15px;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .founder-image-placeholder {
        width: 80px;
        height: 80px;
    }

    .payment-icons {
        justify-content: center;
    }
}
        @media (max-width: 768px) {
            .testimonials-section {
                padding: 60px 15px;
            }

            .section-title {
                font-size: 2rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .testimonial-card {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            .testimonial-card {
                padding: 20px;
            }
        }

        /* Responsive Design for New Sections */
        @media (max-width: 768px) {
            .why-apply-container,
            .proven-method-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .why-apply-content h2,
            .proven-method-content h2 {
                font-size: 2rem;
            }

            .why-apply-image,
            .proven-method-image {
                height: 300px;
            }

            .why-apply-point {
                text-align: left;
                padding: 15px 0;
            }

            .proven-method-content {
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .why-apply-content h2,
            .proven-method-content h2 {
                font-size: 1.7rem;
            }

            .why-apply-point p,
            .proven-method-content p {
                font-size: 1rem;
            }

            .celebration-overlay i,
            .success-overlay i {
                font-size: 2.5rem;
                padding: 15px;
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
    .top-header {
        display: none !important;
    }


            .nav-menu {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: left;
            }

            .hero-content h1 {
                font-size: 2.6rem;
            }
            .hero-content p {
                font-size: 1rem;
                font-style: italic;
            }
            .hero-image {
                height: 350px;
            }

            .features-list {
                grid-template-columns: 1fr;
                gap: 10px;
                text-align: left;
                padding: 10px 0;
            }

            .process-header h2 {
                font-size: 1.8rem;
            }

            .process-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .process-card {
                padding: 30px 20px;
            }

            .process-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .reviews-section {
                flex-direction: column;
                gap: 15px;
            }
        }

        /* Responsive menu */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        display: none;
        z-index: 1001;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 15px 30px;
        color: #23406e;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    .enquire-btn {
        display: none;
    }
    .nav-container {
        position: relative;
    }
}

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .contact-info {
                flex-direction: column;
                gap: 5px;
            }

            .process-container {
                grid-template-columns: 1fr;
            }

            .process-header h2 {
                font-size: 1.5rem;
            }
            .fields-description {
                font-size: 1rem;
                margin-bottom: 20px;
                font-family: 'Times New Roman', Times, serif;
                font-style: italic;
                padding: 10px 0 0 0;
            }
        }

        @media (max-width: 600px) {
            .fields-description {
                font-size: 1rem;
                margin-bottom: 20px;
                font-family: 'Times New Roman', Times, serif;
                font-style: italic;
                padding: 20px;
            }
            
        }

        /* Responsive: Stack on mobile */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column-reverse;
        gap: 36px;
        padding: 0 18px;
    }
    .about-content {
        max-width: 100%;
        text-align: center;
    }
    .about-image {
        justify-content: center;
    }
    .about-content h2 {
        font-size: 1.5rem;
    }
    .about-image img {
        width: 100%;
        max-width: 340px;
    }
    .course-list {
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* FAQ Hero */
.faq-hero {
    position: relative;
    min-height: 400px;
    padding: 100px 0 80px 30px;
    background: url('graduation.jpg') center center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    z-index: 1;
    overflow: hidden;
}

.faq-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(44, 65, 104, 0.55); /* semi-transparent gray overlay */
    z-index: 1;
}
.faq-hero-content {
    color: #fff;
    position: relative;
    font-family: 'Times New Roman', Times, serif;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(.34,1.56,.64,1), transform 1s cubic-bezier(.34,1.56,.64,1);
    z-index:    2;
}
.faq-hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}
.faq-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.faq-hero p {
    font-size: 1.5rem;
    color:rgb(221, 223, 221);
    margin-bottom: 0;
}

/* FAQ Accordion */
.faq-section {
    background: #f8fbff;
    padding: 60px 0 80px 0;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
    margin-bottom: 22px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item.open {
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.18rem;
    font-weight: 700;
    color: #357abd;
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}
.faq-item.open .faq-question {
    background: linear-gradient(90deg, #e3f0ff 60%, #f8fbff 100%);
}
.faq-toggle-icon {
    margin-left: 18px;
    transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}
.faq-item.open .faq-toggle-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f8fbff;
    color: #23406e;
    font-size: 1.08rem;
    padding: 0 28px;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(.34,1.56,.64,1), opacity 0.5s cubic-bezier(.34,1.56,.64,1), padding 0.5s;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding: 18px 28px 28px 28px;
}

/* Responsive */
@media (max-width: 700px) {
    .faq-hero h1 { font-size: 2rem; }
    .faq-hero p { font-size: 1.3rem; }
    .faq-list { padding: 0 10px; }
    .faq-question, .faq-answer { 
        padding-left: 14px; 
        padding-right: 14px; }
}

/* ...existing code... */




.progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f0f0f0;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: #4a90e2;
    color: white;
}

.progress-step.completed {
    background: #28a745;
    color: white;
}

.progress-step i {
    font-size: 1rem;
}

/* Simple WhatsApp Button */
.simple-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.simple-whatsapp-btn:hover {
    background: #20b954;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.simple-whatsapp-btn i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .simple-whatsapp-btn span {
        display: none;
    }
    
    .simple-whatsapp-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .simple-whatsapp-btn i {
        font-size: 24px;
    }
}
