.elementor-1024 .elementor-element.elementor-element-6863bdc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1024 .elementor-element.elementor-element-a302f91{width:100%;max-width:100%;}.elementor-1024 .elementor-element.elementor-element-8debd8c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1024 .elementor-element.elementor-element-8a48cca{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1024 .elementor-element.elementor-element-891191b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1024 .elementor-element.elementor-element-df13726{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1024 .elementor-element.elementor-element-f89667f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d24bcd0 *//* Swimming Hero Section - Elementor Ready CSS */

.swimming-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Background Styling */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 1;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

/* Main Container */
.hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 80px 20px 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Content */
.hero-content {
    text-align: center;
    margin-bottom: 40px;
    z-index: 15;
    position: relative;
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.hero-cta {
    margin-top: 40px;
}

.cta-button {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    transform: translateY(0);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
}

.cta-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.cta-discount {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 12;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Circular Image Container */
.hero-image-container {
    position: relative;
    width: clamp(400px, 50vw, 600px);
    height: clamp(400px, 50vw, 600px);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}


/* 3D Pool Sphere Container */
.pool-sphere-container {
    position: relative;
    z-index: 15; /* Higher than background, lower than main content */
    margin: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

/* Pool Sphere */
.pool-sphere {
    position: relative;
    width: clamp(400px, 50vw, 600px);
    height: clamp(400px, 50vw, 600px);
    border-radius: 50%;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 20px 40px rgba(255, 255, 255, 0.1),
        inset 0 -20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateX(10deg) rotateY(5deg);
    animation: poolFloat 8s ease-in-out infinite;
    overflow: hidden;
}

/* Pool Water/Image */
.pool-water {
    position: absolute;
    top: 0;
    left: 0;
    width: 105%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pool-image {
    width: 110%;
    height: 110%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.95;
    position: relative;
    transform: translate(-5%, -5%);
    min-width: 100%;
    min-height: 100%;
}

/* Pool Reflection */
.pool-reflection {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    transform: skewX(-10deg) skewY(-5deg);
}

/* Pool Highlight */
.pool-highlight {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at 30% 30%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-person {
    width: 110%;
    height: 110%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    transform: translate(-5%, -5%);
    min-width: 100%;
    min-height: 100%;
}

/* Floating Elements Container */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 11;
}

.floating-item {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

/* Certificate Styling */
.certificate-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 240px;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
    font-size: 0.9em;
}

.certificate-card:hover {
    transform: rotate(-2deg) scale(1.05);
}

.certificate-header {
    text-align: center;
    margin-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 12px;
}

.certificate-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.certificate-header h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.05em;
}

.certificate-content {
    text-align: center;
    margin-bottom: 16px;
}

.certificate-content p {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 4px 0;
}

.certificate-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 8px 0;
}

.certificate-content h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    margin: 4px 0;
}

.signature-line {
    height: 1px;
    background: #d1d5db;
    width: 100px;
    margin: 16px auto;
}

/* Elegant Certificate (Right) */
.certificate-elegant {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    transform: rotate(3deg);
}

.certificate-border {
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    padding: 16px;
    position: relative;
}

.certificate-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    text-align: center;
    font-style: italic;
}

.certificate-subtitle {
    font-size: 0.875rem;
    color: #374151;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.certificate-body p {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin: 4px 0;
}

.certificate-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin: 8px 0;
}

.certificate-body h5 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #3b82f6;
    text-align: center;
}

/* Stats Bubbles */
.stats-bubble {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 25px;
    padding: 20px 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    min-width: 200px;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Positioning */
.certificate-left {
    top: 45%;
    left: -45%;
    animation-delay: 0s;
}

.stats-left {
    top: 65%;
    left: 1%;
    animation-delay: 2s;
}

.certificate-right {
    top: 40%;
    right: -45%;
    animation-delay: 1s;
}

.stats-right {
    top: 60%;
    right: 1%;
    animation-delay: 3s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(var(--rotation, 0deg));
    }
}

@keyframes poolFloat {
    0%, 100% {
        transform: perspective(1000px) rotateX(10deg) rotateY(5deg) translateY(0px);
    }
    50% {
        transform: perspective(1000px) rotateX(10deg) rotateY(5deg) translateY(-15px);
    }
}

.certificate-left {
    --rotation: -5deg;
}

.certificate-right {
    --rotation: 3deg;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .certificate-card {
        width: 200px;
        padding: 16px;
        font-size: 0.8em;
    }
    
    .certificate-left {
        top: 40%;
        left: 1%;
    }
    
    .certificate-right {
        top: 35%;
        right: 1%;
    }
    
    .stats-left, .stats-right {
        display: none;
    }
    
    .hero-container {
        padding: 60px 20px 0 20px;
    }
}

@media (max-width: 900px) {
    .floating-item {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .hero-image-container {
        width: clamp(300px, 60vw, 450px);
        height: clamp(300px, 60vw, 450px);
    }
    
    .pool-sphere {
        width: clamp(300px, 60vw, 450px);
        height: clamp(300px, 60vw, 450px);
    }
    
    .cta-button {
        padding: 16px 32px;
    }
    
    .hero-content {
        margin-bottom: 20px;
    }
    
    .hero-container {
        padding: 40px 20px 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 40px 15px 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description br {
        display: none;
    }
    
    .cta-button {
        padding: 14px 28px;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-discount {
        font-size: 0.8rem;
    }
    
    .hero-image-container {
        width: clamp(250px, 70vw, 350px);
        height: clamp(250px, 70vw, 350px);
    }
    
    .pool-sphere {
        width: clamp(250px, 70vw, 350px);
        height: clamp(250px, 70vw, 350px);
    }
}

/* Additional floating animation for larger screens */
@media (min-width: 1201px) {
    .floating-item:nth-child(1) { animation-duration: 6s; }
    .floating-item:nth-child(2) { animation-duration: 8s; }
    .floating-item:nth-child(3) { animation-duration: 7s; }
    .floating-item:nth-child(4) { animation-duration: 9s; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-aa7f5b7 *//* About Section - Modern UI Design */

.about-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Background Styling */
.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 1;
}

.about-background .grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
}

.about-background .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}

/* Main Container */
.about-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Column - Content */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Section Badge */
.about-badge {
    align-self: flex-start;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

/* Main Title */
.about-title {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Introduction */
.about-intro {
    margin-bottom: 8px;
}

.intro-text {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Experience Grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 8px 0;
}

.experience-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.experience-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.experience-icon {
    font-size: 2rem;
    filter: grayscale(0.3);
}

.experience-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.experience-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.3;
}

/* Highlights Section */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 8px 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-bullet {
    color: #3b82f6;
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Philosophy Section */
.philosophy-section {
    background: rgba(59, 130, 246, 0.08);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(15px);
}

.philosophy-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.philosophy-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* Right Column - Video */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.5),
        0 20px 50px rgba(0, 0, 0, 0.4);
}

.about-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.play-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 8px 16px;
    backdrop-filter: blur(10px);
}

.play-text {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-container {
        gap: 50px;
        padding: 60px 40px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .about-container {
        gap: 40px;
        padding: 60px 30px;
    }
    
    .about-content {
        gap: 28px;
    }
    
    .experience-card {
        padding: 16px;
    }
    
    .philosophy-section {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 25px;
        text-align: left;
    }
    
    .about-content {
        order: 1;
        gap: 24px;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 14px;
    }
    
    .experience-card {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .experience-content h4 {
        font-size: 0.95rem;
    }
    
    .experience-content p {
        font-size: 0.8rem;
    }
    
    .about-highlights {
        gap: 14px;
    }
    
    .highlight-item p {
        font-size: 0.95rem;
    }
    
    .philosophy-section {
        padding: 20px;
    }
    
    .philosophy-title {
        font-size: 1.25rem;
    }
    
    .philosophy-text {
        font-size: 0.95rem;
    }
    
    .video-container {
        max-width: 100%;
        border-radius: 20px;
    }
}

@media (max-width: 640px) {
    .about-container {
        padding: 40px 20px;
        gap: 32px;
    }
    
    .about-content {
        gap: 20px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .experience-card {
        flex-direction: row;
        text-align: left;
        padding: 14px;
    }
    
    .badge-text {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .philosophy-section {
        padding: 18px;
    }
    
    .video-container {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 30px 15px;
        min-height: auto;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .intro-text {
        font-size: 0.95rem;
    }
    
    .experience-card {
        padding: 12px;
    }
    
    .philosophy-section {
        padding: 16px;
    }
    
    .philosophy-title {
        font-size: 1.1rem;
    }
    
    .philosophy-text {
        font-size: 0.9rem;
    }
}

/* Animation for scroll reveal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content {
    animation: fadeInUp 0.8s ease-out;
}

.about-image {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.experience-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.experience-card:nth-child(1) { animation-delay: 0.1s; }
.experience-card:nth-child(2) { animation-delay: 0.2s; }
.experience-card:nth-child(3) { animation-delay: 0.3s; }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5874603 *//* Students Section - Elementor Ready CSS */

.students-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Background Styling */
.students-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 1;
}

.students-background .grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.students-background .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

/* Main Container */
.students-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Section */
.students-header {
    text-align: center;
    margin-bottom: 80px;
}

.students-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.students-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0 auto 40px auto;
    max-width: 700px;
    text-align: center;
}

/* Video Player Section */
.video-player-section {
    margin: 60px 0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.swimming-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: all 0.3s ease;
}



.video-caption {
    margin-top: 24px;
    text-align: center;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.video-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* CTA Button */
.students-cta {
    margin-top: 40px;
    text-align: center;
}

.students-section .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    transform: translateY(0);
}

.students-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
}

.students-section .cta-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

/* Students Avatar Grid */
.students-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 50px auto;
}

/* Individual Avatar */
.student-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.student-avatar:hover {
    transform: scale(1.1);
}

/* Avatar Image */
.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Highlighted Avatars */
.student-avatar.highlighted {
    position: relative;
}

.student-avatar.highlighted::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.8;
}

.student-avatar.highlighted .avatar-image {
    border: 3px solid #ffffff;
}

/* Bottom Center Avatar */
.student-avatar.bottom-center {
    margin-top: 20px;
    width: 100px;
    height: 100px;
}

.student-avatar.bottom-center .avatar-image {
    border: 3px solid rgba(255, 255, 255, 0.2);
}

/* Animation for avatars */
@keyframes avatarFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.student-avatar:nth-child(even) {
    animation: avatarFloat 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.student-avatar:nth-child(odd) {
    animation: avatarFloat 3s ease-in-out infinite;
    animation-delay: 1s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .students-container {
        padding: 80px 30px;
    }
    
    .students-header {
        margin-bottom: 60px;
    }
    
    .student-avatar {
        width: 70px;
        height: 70px;
    }
    
    .student-avatar.bottom-center {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .students-container {
        padding: 60px 20px;
    }
    
    .students-header {
        margin-bottom: 40px;
    }
    
    .students-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .students-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .students-description br {
        display: none;
    }
    
    .video-player-section {
        margin: 40px 0;
    }
    
    .video-title {
        font-size: 1.25rem;
    }
    
    .video-description {
        font-size: 0.9rem;
    }
    
    .students-grid {
        gap: 15px;
        max-width: 100%;
    }
    
    .student-avatar {
        width: 60px;
        height: 60px;
    }
    
    .student-avatar.bottom-center {
        width: 75px;
        height: 75px;
        margin-top: 15px;
    }
    
    .students-section .cta-button {
        padding: 14px 28px;
    }
    
    .students-section .cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .students-container {
        padding: 40px 15px;
    }
    
    .students-title {
        font-size: 2rem;
    }
    
    .students-description {
        font-size: 0.95rem;
    }
    
    .video-player-section {
        margin: 30px 0;
    }
    
    .video-container {
        border-radius: 15px;
    }
    
    .swimming-video {
        border-radius: 15px;
    }
    
    .video-title {
        font-size: 1.125rem;
    }
    
    .video-description {
        font-size: 0.85rem;
    }
    
    .students-grid {
        gap: 12px;
    }
    
    .student-avatar {
        width: 50px;
        height: 50px;
    }
    
    .student-avatar.bottom-center {
        width: 65px;
        height: 65px;
    }
    
    .students-section .cta-button {
        padding: 12px 24px;
    }
    
    .students-section .cta-text {
        font-size: 0.95rem;
    }
}

/* Hover effects for better interaction */
@media (hover: hover) {
    .student-avatar:hover .avatar-image {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    }
    
    .student-avatar.highlighted:hover::before {
        opacity: 1;
        transform: scale(1.1);
    }
}/* End custom CSS */