/* Base Styles */
:root {
    --primary: #6C63FF;
    --secondary: #4DAAF8;
    --dark: #2D3748;
    --light: #F7FAFC;
    --success: #48BB78;
    --warning: #ED8936;
    --danger: #E53E3E;
    --text: #4A5568;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: #5a52e0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 8px 16px;
    font-size: 14px;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title span {
    color: var(--primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Loader Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader p {
    margin-top: 20px;
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 600;
}

.atom {
    position: relative;
    width: 100px;
    height: 100px;
}

.nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: 2;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(108, 99, 255, 0.5);
    border-radius: 50%;
}

.o1 {
    width: 60px;
    height: 60px;
    animation: spin 6s linear infinite;
}

.o2 {
    width: 80px;
    height: 80px;
    animation: spin 8s linear infinite reverse;
}

.o3 {
    width: 100px;
    height: 100px;
    animation: spin 10s linear infinite;
}

.electron {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--secondary);
    border-radius: 50%;
    z-index: 1;
}

@keyframes spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: white;
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-nav.scrolled {
    top: 0;
    border-radius: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
}

.nav-logo .ql {
    background-color: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-content .title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-animation {
    flex: 1;
    position: relative;
    height: 100%;
}

.flask {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 250px;
    background-color: rgba(108, 99, 255, 0.1);
    border: 3px solid var(--primary);
    border-radius: 10px 10px 50px 50px;
    transform: translate(-50%, -50%);
}

.flask::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 20px;
    height: 50px;
    background-color: rgba(108, 99, 255, 0.1);
    border: 3px solid var(--primary);
    border-right: none;
    border-radius: 10px 0 0 10px;
}

.flask::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background-color: rgba(77, 170, 248, 0.2);
    border-radius: 0 0 50px 50px;
    animation: bubble 4s ease-in-out infinite;
}

@keyframes bubble {
    0%, 100% {
        transform: translateY(0);
        height: 80%;
    }
    50% {
        transform: translateY(-20px);
        height: 70%;
    }
}

.molecule {
    position: absolute;
    top: 30%;
    left: 30%;
    width: 100px;
    height: 100px;
    background-color: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    border: 2px dashed var(--primary);
    animation: float 6s ease-in-out infinite;
}

.molecule::before, .molecule::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
}

.molecule::before {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.molecule::after {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.planet {
    position: absolute;
    top: 70%;
    left: 70%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, var(--primary), #4a42d6);
    border-radius: 50%;
    box-shadow: inset -20px -20px 40px rgba(0, 0, 0, 0.3);
    animation: rotate 20s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--dark);
    border-radius: 15px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background-color: var(--dark);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

.arrow {
    width: 15px;
    height: 15px;
    border-right: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Features Section */
.features {
    padding: 80px 5%;
    background-color: white;
}

.feature-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

/* Courses Section */
.courses {
    padding: 80px 5%;
    background-color: var(--light);
}

.course-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.1);
}

.course-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.physics {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.chemistry {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
}

.biology {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particles::before, .particles::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.7;
}

.particles::before {
    top: 20%;
    left: 30%;
    animation: particle 4s ease-in-out infinite;
}

.particles::after {
    top: 60%;
    left: 70%;
    animation: particle 5s ease-in-out infinite 1s;
}

@keyframes particle {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -10px);
    }
    50% {
        transform: translate(10px, 20px);
    }
    75% {
        transform: translate(-15px, 5px);
    }
}

.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bubbles::before, .bubbles::after, .bubbles span {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.5;
    animation: bubble-up 4s ease-in-out infinite;
}

.bubbles::before {
    bottom: -20px;
    left: 20%;
    animation-delay: 0s;
}

.bubbles::after {
    bottom: -20px;
    left: 50%;
    animation-delay: 1s;
}

.bubbles span {
    bottom: -20px;
    left: 80%;
    animation-delay: 2s;
}

@keyframes bubble-up {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-150px) scale(1.2);
        opacity: 0;
    }
}

.dna {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dna::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 120px;
    background-color: white;
    animation: dna-rotate 4s linear infinite;
}

.dna::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    animation: dna-ball 4s linear infinite;
}

@keyframes dna-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dna-ball {
    0%, 100% {
        transform: rotate(0deg) translateX(30px);
    }
    25% {
        transform: rotate(90deg) translateX(30px);
    }
    50% {
        transform: rotate(180deg) translateX(30px);
    }
    75% {
        transform: rotate(270deg) translateX(30px);
    }
}

.course-content {
    padding: 20px;
}

.course-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.course-content p {
    margin-bottom: 15px;
    color: var(--text);
}

.course-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text);
    font-size: 0.9rem;
}

.course-details i {
    margin-right: 5px;
    color: var(--primary);
}

/* Faculty Section */
.faculty {
    padding: 80px 5%;
    background-color: white;
}

.faculty-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faculty-card {
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.1);
}

.faculty-img {
    height: 300px;
    position: relative;
}

.faculty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(108, 99, 255, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faculty-card:hover .faculty-bg {
    opacity: 1;
}

.faculty-info {
    padding: 20px;
    text-align: center;
}

.faculty-info h3 {
    margin-bottom: 5px;
}

.faculty-info .subject {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.faculty-info .bio {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* Results Section */
.results {
    padding: 80px 5%;
    background-color: var(--light);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: var(--text);
    font-size: 1rem;
}

.testimonials {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.quote::before, .quote::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
}

.quote::before {
    position: absolute;
    top: -15px;
    left: -10px;
}

.quote::after {
    position: absolute;
    bottom: -30px;
    right: -10px;
}

.student {
    display: flex;
    align-items: center;
}

.student img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary);
}

.student-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.student-info p {
    color: var(--text);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 80px 5%;
    background-color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.1);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card h4 {
    margin-bottom: 10px;
}

.contact-form {
    background-color: var(--light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.footer-links h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 20px;
}

.footer-links a:hover::before {
    width: 8px;
}

.footer-newsletter h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-newsletter p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-family: 'Montserrat', sans-serif;
}

.footer-newsletter button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: #5a52e0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.back-to-top {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(108, 99, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(108, 99, 255, 0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-animation {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content .title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content .title {
        font-size: 2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
}