/* Global Variables */
:root {
    --primary-color: #4361ee;
    --primary-color-rgb: 67, 97, 238;
    --secondary-color: #f72585;
    --secondary-color-rgb: 247, 37, 133;
    --accent-color: #ffbe0b;
    --dark-color: #2b2d42;
    --light-color: #f8f9fa;
    --text-color: #333;
    --white: #ffffff;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eef2ff 0%, #fdf2f8 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto 30px;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
    animation-delay: -1s;
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-text .dot {
    color: var(--secondary-color);
    font-size: 3rem;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}


a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.highlight {
    color: var(--secondary-color);
}

.text-white {
    color: var(--white);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--light-color);
}

.section-dark {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    max-width: 600px;
    margin: -2rem auto 3rem;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #3046b5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo .dot {
    color: var(--secondary-color);
    font-size: 2.5rem;
    line-height: 0;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-color);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.btn-contact {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
}

.nav-link.btn-contact:hover {
    background-color: #d61a6c;
    color: var(--white);
}

.nav-link.btn-contact::after {
    display: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--dark-color);
}

/* Hero Section */
.hero {
    padding: 0;
    background: linear-gradient(135deg, #eef2ff 0%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
    /* Ensure slider has height */
    height: 100vh;
    min-height: 700px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    /* Padding to account for fixed navbar and bottom wave */
    padding-top: 80px;
    padding-bottom: 100px;
    box-sizing: border-box;
}

.swiper-pagination-bullet {
    background: var(--dark-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
    width: 20px;
    border-radius: 5px;
    transition: var(--transition);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--white);
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 50px;
    width: 100%;
    /* Ensure content takes full width */
}

/* Slide Content Animation States */
.hero-text h1,
.hero-text .subtitle,
.hero-text .description,
.hero-text .hero-btns,
.hero-image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active Slide Animations with Stagger */
.swiper-slide-active .hero-text h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.swiper-slide-active .hero-text .subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.swiper-slide-active .hero-text .description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.swiper-slide-active .hero-text .hero-btns {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.swiper-slide-active .hero-image {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.avatar-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 5s ease-in-out infinite;
}

.icon-1 {
    top: 0;
    left: 20px;
    color: var(--secondary-color);
    animation-delay: 0s;
}

.icon-2 {
    bottom: 50px;
    right: 0;
    color: var(--primary-color);
    animation-delay: 1s;
}

.icon-3 {
    top: 50px;
    right: -20px;
    color: var(--accent-color);
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    border-top: 5px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: #eef2ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Literature Section */
.stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.view-all-container {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

.story-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.story-img {
    position: relative;
    height: 200px;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.story-content {
    padding: 25px;
}

.story-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.story-excerpt {
    color: #666;
    margin-bottom: 15px;
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
}

.full-story {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.full-story p {
    margin-bottom: 10px;
}

.hidden {
    display: none;
}

/* History & Geography Section */
.geo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.fact-list {
    margin: 20px 0;
}

.fact-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    background: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 10px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.fact-list li:hover {
    transform: translateX(10px);
    background: var(--light-color);
    border-left-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.fact-list li i {
    color: var(--accent-color);
    font-size: 1.4rem;
    animation: pulse-icon 2s infinite ease-in-out;
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(255, 190, 11, 0));
    }

    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 8px rgba(255, 190, 11, 0.5));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(255, 190, 11, 0));
    }
}

.map-container {
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background-color: #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #adb5bd;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Sports Section */
.sports-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.circular-progress {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-color) 3.6deg, rgba(255, 255, 255, 0.1) 0deg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    position: relative;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8);
    opacity: 0;
}

.circular-progress.animated {
    transform: scale(1);
    opacity: 1;
}

.circular-progress:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 190, 11, 0.3);
}

.inner-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.stat-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.5s;
}

.circular-progress.animated~h4,
.stat-item:has(.circular-progress.animated) h4 {
    opacity: 1;
    transform: translateY(0);
}

.activity-log h3 {
    margin-bottom: 20px;
    color: var(--white);
}

.activity-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.activity-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.activity-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 190, 11, 0.3);
}

.activity-card .day {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.activity-card:hover .day {
    opacity: 1;
    transform: scale(1.1);
    color: var(--accent-color);
}

.activity-card i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.activity-card:hover i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 10px var(--accent-color));
}

.activity-card .activity {
    transition: all 0.3s ease;
}

.activity-card:hover .activity {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
    filter: grayscale(0.5);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(var(--primary-color-rgb), 0.3);
    filter: grayscale(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.2) rotate(3deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-color-rgb), 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: circle(0% at 0% 0%);
    transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    clip-path: circle(150% at 0% 0%);
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--white);
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Contact Section */
.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    z-index: 1;
    transition: var(--transition);
}

.input-group textarea+.input-icon {
    top: 20px;
    transform: translateY(0);
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: #fafafa;
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 16px;
}

.input-group label {
    position: absolute;
    left: 50px;
    top: 16px;
    color: #999;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
}

/* Floating label animation */
.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label,
.input-group textarea:focus+label,
.input-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 45px;
    font-size: 0.75rem;
    color: var(--primary-color);
    background: var(--white);
    padding: 0 5px;
    font-weight: 600;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.1);
}

.input-group input:focus~.input-icon,
.input-group textarea:focus~.input-icon {
    color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.submit-btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn span,
.submit-btn i {
    position: relative;
    z-index: 1;
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0 10px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Media Queries */
@media (max-width: 991px) {
    .container {
        max-width: 900px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .geo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-link {
        display: inline-block;
        margin: 10px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 50px;
    }

    .hero-btns {
        justify-content: center;
    }

    .avatar-container {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .avatar-container {
        width: 250px;
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}