:root {
    --primary-color: #002B5B;
    --secondary-color: #1D3B8F;
    --accent-color: #2E6BF2;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* Footer */
.site-footer {
    margin-top: 2rem;
    padding: 1rem 5%;
    background: var(--light-gray);
    border-top: 1px solid #e5e7eb;
    text-align: center;
}
.site-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}
.site-footer a:hover {
    text-decoration: underline;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tos {
    padding: 4rem 0;
    margin-top: -150px;
}

.tos .container {

    background-color: rgba(255, 255, 255, 0);
    padding: 3rem;
    border-radius: 15px;

}

.tos .last-updated {
    font-style: italic;
    color: #575c63;
    font-size: 0.9rem;
    text-align: center;
    display: block;
    margin-bottom: 10px;

}

.tos-content {
    font-family: 'Poppins', sans-serif;
}

.tos-content p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tos-header {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.tos-content ul.disc {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.tos-content ul li {
    margin-bottom: 0.75rem;
    color: #374151;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: navy;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 107, 255, 0.3);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 5rem;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.privacy h2 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.hero-content .btn-primary {
    margin: 0 1rem;
}

.features {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    opacity: 0.5;
    filter: blur(4px);
}

.features::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 107, 242, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 107, 242, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.feature-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 107, 242, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-hover {
    opacity: 1;
}

/* Add subtle animation for icons */
.feature-card:hover .feature-icon {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Animations */
.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.animate-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
        position: relative;
    }

    .hamburger {
        display: flex;
        order: 2;
    }

    .logo {
        order: 1;
    }

    .logo-image {
        height: 32px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--primary-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--secondary-color);
    }

    .cta-button {
        order: 3;
        display: none;
    }

    .nav-links.active + .cta-button {
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
        display: block;
    }

    .hero {
        padding-top: 6rem;
        flex-direction: column;
        min-height: auto;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        order: 1;
        padding: 2rem 0 3rem;
        margin: 0;
        background: var(--white);
        color: var(--text-color);
        border-radius: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        color: var(--primary-color);
        text-shadow: none;
        padding: 0 1rem;
    }

    .hero-content p {
        color: var(--text-color);
        text-shadow: none;
        opacity: 0.8;
        padding: 0 1rem;
    }

    .video-background {
        order: 2;
        position: relative;
        height: 50vh;
        min-height: 300px;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .features {
        padding: 60px 5%;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-content h3 {
        font-size: 1.3rem;
    }
}

.testimonials {
    padding: 100px 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(46, 107, 242, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.testimonials-wrapper {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 900px;
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    transition: transform 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-name {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.nav-btn {
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 5%;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-image {
        width: 80px;
        height: 80px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.did-you-know {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.did-you-know::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(46, 107, 242, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.did-you-know-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.did-you-know-content {
    background: var(--white);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 43, 91, 0.08);
    border: 1px solid rgba(46, 107, 242, 0.1);
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.did-you-know-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 107, 242, 0.03) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
}

.did-you-know-content h2 {
    color: var(--primary-color);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.question-mark {
    color: var(--accent-color);
    font-size: 4rem;
    margin-left: 0.2rem;
    animation: pulse 2s infinite;
    text-shadow: 2px 2px 4px rgba(46, 107, 242, 0.2);
}

.did-you-know-content p {
    color: var(--text-color);
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.learn-more-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: var(--white) !important;
    font-size: 1.1rem;
    padding: 1rem 2rem !important;
    transform-origin: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 43, 91, 0.15);
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(46, 107, 242, 0.2) !important;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments for Did You Know section */
@media (max-width: 768px) {
    .did-you-know {
        padding: 60px 5%;
    }

    .did-you-know-content {
        padding: 2rem;
    }

    .did-you-know-content h2 {
        font-size: 2.5rem;
    }

    .question-mark {
        font-size: 3rem;
    }

    .did-you-know-content p {
        font-size: 1.1rem;
    }
}

.pslf-section {
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 43, 91, 0.08);
}

.pslf-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.pslf-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pslf-info {
    padding-right: 2rem;
}

.pslf-description {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.pslf-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.pslf-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .pslf-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pslf-info {
        padding-right: 0;
    }

    .pslf-section h2 {
        font-size: 2rem;
    }

    .pslf-description {
        font-size: 1rem;
    }
}

/* Services Page Styles */
.services-hero {
    position: relative;
    height: 80vh;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: url('https://images.pexels.com/photos/7681078/pexels-photo-7681078.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}

.sls {color: rgb(255, 196, 0);
}

.pp-hero {
    position: relative;
    height: 50vh;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: url('pp.jpg') center/cover no-repeat;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 43, 91, 0.85), rgba(0, 43, 91, 0.9));
}

.services-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.services-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.services-hero-content p {
    font-size: 1.6rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.loan-programs {
    padding: 120px 5%;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.program-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 43, 91, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 107, 242, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(46, 107, 242, 0.1);
}

.program-card:hover::before {
    opacity: 1;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transform: rotate(-5deg);
    transition: transform 0.4s ease;
}

.program-card:hover .program-icon {
    transform: rotate(0deg);
}

.program-icon i {
    font-size: 2rem;
    color: var(--white);
}

.program-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.program-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.program-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.program-features i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.qualifications {
    padding: 120px 5%;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

.qual-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 30px rgba(0, 43, 91, 0.05);
    position: relative;
    overflow: hidden;
}

.qual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 107, 242, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.qual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(46, 107, 242, 0.1);
}

.qual-card:hover::before {
    opacity: 1;
}

.qual-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.qual-card:hover i {
    transform: scale(1.1);
}

.qual-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.qual-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

.cta-content .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-hero {
        height: 70vh;
    }

    .services-hero-content h1 {
        font-size: 2.8rem;
    }

    .services-hero-content p {
        font-size: 1.3rem;
    }

    .program-card {
        padding: 2rem;
    }

    .program-icon {
        width: 60px;
        height: 60px;
    }

    .program-card h3 {
        font-size: 1.5rem;
    }

    .qual-card {
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1.2rem;
    }
}

/* Animations */
.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.animate-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

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

.teacher-section {
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 43, 91, 0.08);
}

.teacher-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.teacher-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.teacher-info {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(46, 107, 242, 0.1);
}

.teacher-info .program-features {
    margin: 2rem 0;
}

.teacher-info .program-features li {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.teacher-qualifications {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(46, 107, 242, 0.1);
}

.teacher-qualifications h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.qualifications-list li {
    background: var(--white);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 43, 91, 0.05);
}

.qualifications-list li:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

@media (max-width: 1024px) {
    .teacher-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .teacher-section h2 {
        font-size: 2rem;
    }

    .teacher-qualifications h2 {
        font-size: 1.8rem;
    }
}

/* About Page Styles */
.about-hero {
    position: relative;
    height: 70vh;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: url('https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 43, 91, 0.8), rgba(0, 43, 91, 0.9));
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.about-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.6rem;
    opacity: 0.9;
}

.mission-section {
    padding: 100px 5%;
    background: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text {
    padding-right: 2rem;
}

.mission-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(46, 107, 242, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.mission-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 43, 91, 0.1);
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.mission-image:hover img {
    transform: scale(1.05);
}

.values-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

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

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 43, 91, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 107, 242, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.journey-section {
    padding: 100px 5%;
    background: var(--white);
}

.journey-timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 43, 91, 0.05);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.team-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 43, 91, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1.5rem;
    font-weight: 600;
}

.team-role {
    color: var(--accent-color);
    font-size: 1rem;
    margin: 0 1.5rem;
    font-weight: 500;
}

.team-bio {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1rem 1.5rem 1.5rem;
}

@media (max-width: 1024px) {
    .about-hero-content h1 {
        font-size: 3rem;
    }

    .about-hero-content p {
        font-size: 1.3rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-text {
        padding-right: 0;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .journey-timeline::before {
        left: 0;
    }

    .timeline-item {
        justify-content: flex-start;
    }

    .timeline-dot {
        left: 0;
    }

    .timeline-content {
        width: 90%;
        margin-left: 30px !important;
    }

    .team-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

.simple-about-section {
    padding: 80px 5%;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 2rem;
}

.about-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-overview {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

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

.service-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 43, 91, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-item p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 5%;
    background: var(--white);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 2rem;
    text-align: center;
}

.contact-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.contact-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(46, 107, 242, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .service-item {
        padding: 1.5rem;
    }
    
    .service-item i {
        font-size: 2rem;
    }
    
    .service-item h3 {
        font-size: 1.3rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    height: 50vh;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: url('https://images.pexels.com/photos/7681081/pexels-photo-7681081.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}

.tos-hero {
    position: relative;
    height: 50vh;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: url('tos.jpg') center/cover no-repeat;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 43, 91, 0.85), rgba(0, 43, 91, 0.9));
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-info-section {
    padding: 80px 5%;
    background: var(--white);
}

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

.contact-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 43, 91, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 107, 242, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.form-container {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 43, 91, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(46, 107, 242, 0.2);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.faq-section {
    padding: 80px 5%;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(46, 107, 242, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(46, 107, 242, 0.02);
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
}

.faq-answer {
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    height: auto;
}

.faq-answer p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
        position: relative;
    }

    .hamburger {
        display: flex;
        order: 2;
    }

    .logo {
        order: 1;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--primary-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--secondary-color);
    }

    .cta-button {
        order: 3;
        display: none;
    }

    .nav-links.active + .cta-button {
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
        display: block;
    }

    .hero {
        padding-top: 0rem;
        flex-direction: column;
        min-height: auto;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .btn-primary {
        background: white;
        color: #1D3B8F;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        order: 1;
        padding: 2rem 0 3rem;
        margin: 0;
        background: #1D3B8F;
        color: white;
        border-radius: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        color: white;
        text-shadow: none;
        padding: 0 1rem;
    }

    .hero-content p {
        color: white;
        text-shadow: none;
        opacity: 0.8;
        padding: 0 1rem;
    }

    .video-background {
        order: 2;
        position: relative;
        height: 50vh;
        min-height: 300px;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .features {
        padding: 60px 5%;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-content h3 {
        font-size: 1.3rem;
    }
} 
