:root {
    --primary: #2563EB; /* Bright blue */
    --primary-light: #3B82F6;
    --secondary: #10B981; /* Emerald green */
    --accent: #F59E0B; /* Amber */
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --gray-light: #F3F4F6;
    --gray-medium: #E5E7EB;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.logo {
    height: 90px;
    filter: brightness(0);
    transition: filter 0.3s ease;
    margin-right: 20px;
}

.logo:hover {
    filter: brightness(0.7);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    height: 80px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #D97706;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pattern.svg') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.section-title {
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

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

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Tracks Overview */
.tracks-overview {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
}

.tracks-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.track-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: 0;
}

.track-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.data-science-card {
    border-top: 5px solid var(--primary);
}

.tpm-card {
    border-top: 5px solid var(--secondary);
}

.track-card h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.track-card p {
    margin-bottom: 35px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.track-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.track-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

.data-science-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.tpm-button {
    background: linear-gradient(135deg, var(--secondary) 0%, #059669 100%);
    color: var(--white);
}

.track-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.track-button:active {
    transform: translateY(1px);
}

/* Track Details Sections */
.track-details {
    padding: 80px 0;
    background: #f8f9fa;
}

.track-details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.track-details-content {
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.track-details h2 {
    color: #2563eb;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.track-details h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #f59e0b;
    margin-top: 10px;
}

.track-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.track-grid-item.curriculum {
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.track-grid-item.curriculum h3 {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.track-grid-item.curriculum ul {
    list-style: none;
    padding: 0;
}

.track-grid-item.curriculum li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 24px;
}

.track-grid-item.curriculum li:before {
    content: '•';
    color: #2563eb;
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 1;
}

.track-grid-item.details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.track-info-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}

.track-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.track-info-card h3 {
    color: #1e40af;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.track-info-card p {
    color: #4b5563;
    line-height: 1.6;
}

/* Animated Placeholder */
.placeholder-animation {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Data Science Animation */
.data-science-animation {
    background: linear-gradient(135deg, rgba(0, 109, 119, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 3px solid var(--primary);
}

.data-science-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 109, 119, 0.1) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

/* TPM Animation */
.tpm-animation {
    background: linear-gradient(135deg, rgba(231, 111, 81, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 3px solid var(--secondary);
}

.tpm-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(231, 111, 81, 0.1) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Data Science specific styles */
.data-science-details .track-details-content {
    border-left: 5px solid var(--primary);
}

/* TPM specific styles */
.tpm-details .track-details-content {
    border-left: 5px solid var(--secondary);
}

.track-grid-item.curriculum.tpm {
    border-left: 4px solid var(--secondary);
}

.track-grid-item.curriculum.tpm h3 {
    color: var(--secondary);
}

.track-grid-item.curriculum.tpm li:before {
    color: var(--secondary);
}

.track-grid-item.details.tpm .track-info-card h3 {
    color: var(--secondary);
}

.track-grid-item.details.tpm .track-info-card {
    border-left: 3px solid var(--secondary);
}

.track-grid-item.details.tpm .track-info-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.1);
}

/* Override the default blue color for TPM section */
.tpm-details .track-details h2 {
    color: var(--secondary);
}

.tpm-details .track-details h2:after {
    background: var(--secondary);
}

.tpm-details .track-details-content {
    border-left: 5px solid var(--secondary);
}

/* Responsive styles for track details */
@media (max-width: 992px) {
    .track-details-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .placeholder-animation {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .track-details-content {
        padding: 20px;
    }

    .track-details-content h2 {
        font-size: 2.2rem;
    }

    .track-details-content h3 {
        font-size: 1.6rem;
    }

    .placeholder-animation {
        height: 300px;
    }

    .track-grid {
        grid-template-columns: 1fr;
    }
    
    .track-grid-item.curriculum,
    .track-info-card {
        padding: 20px;
    }

    .header-container {
        padding: 15px 20px;
    }
    
    .logo {
        height: 70px;
    }
    
    .nav-links {
        top: 100px;
    }
}

/* Instructors Section */
.instructors {
    padding: 100px 0;
    background-color: var(--white);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.instructor-card {
    text-align: center;
}

.instructor-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.instructor-card:hover .instructor-image {
    filter: grayscale(0);
}

.instructor-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.instructor-card p {
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pattern.svg') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: 0;
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.testimonial-text::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    left: -20px;
    top: -20px;
    opacity: 0.1;
    font-family: 'Georgia', serif;
    z-index: -1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.testimonial-author::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
    margin-right: 15px;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--text-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #121212;
    color: var(--white);
}

body.dark-mode header {
    background-color: #1E1E1E;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body.dark-mode .nav-links a {
    color: var(--white);
}

body.dark-mode .about,
body.dark-mode .testimonials,
body.dark-mode .contact {
    background-color: #1E1E1E;
}

body.dark-mode .track-card,
body.dark-mode .testimonial-card,
body.dark-mode .contact-form {
    background-color: #2D2D2D;
}

body.dark-mode .dark-mode-toggle {
    background-color: var(--white);
    color: var(--text-dark);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .track-details-container,
    .admissions-container,
    .contact-container,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .tracks-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .nav-links {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        margin: 15px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        height: auto;
        padding: 150px 0 100px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    body.dark-mode .nav-links {
        background-color: #1E1E1E;
    }
}

@media (max-width: 576px) {
    .hero-logo {
        height: 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

    .track-card,
    .contact-form {
        padding: 25px;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-section {
    padding: 0 1rem;
}

.footer-logo {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #007bff;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

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

.social-link i {
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Specific social media hover colors */
.social-link:hover .fa-linkedin {
    color: #0077b5;
}

.social-link:hover .fa-x-twitter {
    color: #000000;
}

.social-link:hover .fa-instagram {
    color: #e4405f;
}

.social-link:hover .fa-youtube {
    color: #ff0000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* Admissions Section */
.admissions {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
    overflow: hidden;
}

.admissions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pattern.svg') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.admissions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.admissions-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.admissions-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.admissions-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.admissions-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.admissions-text ol,
.admissions-text ul {
    margin-left: 25px;
    margin-bottom: 30px;
}

.admissions-text li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    position: relative;
    padding-left: 10px;
}

.admissions-text ol li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: -30px;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.admissions-text ul li::before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.admissions-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.5s ease;
}

.admissions-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.admissions-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-details {
    margin: 30px 0;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .admissions-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }
}

.apply-now {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.apply-now-container {
    max-width: 800px;
    margin: 0 auto;
}

.apply-now-content {
    padding: 60px 40px;
}

.apply-now h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.apply-now p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.apply-now .cta-button {
    background-color: var(--white);
    color: var(--primary);
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.apply-now .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: var(--white);
    color: var(--primary);
}

@media (max-width: 768px) {
    .apply-now {
        padding: 60px 0;
    }

    .apply-now-content {
        padding: 40px 20px;
    }

    .apply-now h2 {
        font-size: 2.5rem;
    }

    .apply-now p {
        font-size: 1.1rem;
    }

    .apply-now .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }
} 