:root {
    /* Color Palette */
    --primary-accent: #0FA4AF;     /* Vibrant Turquoise/Cyan */
    --primary-dark: #003135;       /* Deep Teal */
    --secondary-accent: #964734;   /* Terracotta */
    --success-tone: #0FA4AF;       /* Vibrant Turquoise */
    
    --bg-slate: #AFDDE5;           /* Pale Sky Blue */
    --bg-white: #F3FAF9;           /* Very soft Light Sky/Cyan tint */
    
    --bg-form: #ECF5F6;            /* Light Cyan/Sky tint for forms */
    
    --text-charcoal: #003135;      /* Deep Teal */
    --text-muted: #024950;         /* Dark Teal */
    --text-light: #AFDDE5;         /* Pale Sky Blue */

    /* Typography */
    --font-header: 'Inter', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Animations */
    --transition-smooth: all 0.3s ease;
    --spring-curve: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-charcoal);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    color: var(--text-charcoal);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bg-slate {
    background-color: var(--bg-slate);
}

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

/* Animations & Micro-interactions */
@keyframes pulseBright {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.15); }
}

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

@keyframes checkmarkPop {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.slide-up-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-up-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left-anim {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
.slide-left-anim.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Base Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-header);
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-accent));
    color: white;
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-accent);
}

.secondary-btn:hover {
    background-color: var(--bg-slate);
}

/* Cards Hover */
.hover-card {
    transition: transform 0.4s var(--spring-curve), border-color 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid transparent;
}

.hover-card:hover {
    transform: scale(1.02);
    border-color: var(--primary-accent);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Section 1: Announcement Ribbon */
.announcement-ribbon {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-accent));
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 100;
    animation: pulseBright 3s infinite;
    overflow: hidden;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .announcement-ribbon p {
        display: inline-block;
        animation: slideTicker 15s linear infinite;
    }
}

/* Section 2: Header */
.main-header {
    background: rgba(243, 250, 249, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 40px; /* Below ribbon */
    z-index: 99;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.brand-logo img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-charcoal);
    cursor: pointer;
}

@media (max-width: 900px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .main-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Section 3: Hero */
.hero-section {
    padding: 6rem 0;
    background: radial-gradient(circle at top right, var(--secondary-accent) 0%, var(--bg-white) 100%);
    overflow: hidden;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-charcoal);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.live-proof-badges {
    display: flex;
    gap: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge i {
    font-size: 2rem;
    color: var(--success-tone);
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-charcoal);
}

.badge-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 960px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-actions, .live-proof-badges {
        justify-content: center;
    }
    .live-proof-badges {
        flex-wrap: wrap;
    }
}

/* General Sections */
section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subhead {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.title-underline {
    height: 4px;
    width: 60px;
    background: var(--primary-accent);
    border-radius: 2px;
}

.title-underline.center {
    margin: 0 auto;
}

/* Section 4: About Us */
.about-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.mission-box {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-accent);
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 1rem;
}

.mission-box h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* Section 5: Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-slate);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Section 6: Subjects */
.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.subject-card {
    background: var(--bg-white);
    border: 1px solid var(--bg-slate);
    border-radius: 1rem;
    padding: 2rem;
}

.subject-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bg-slate);
}

.subject-header i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.subject-header h3 {
    font-size: 1.25rem;
}

.subject-list li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.subject-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--success-tone);
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

/* Section 7: Why Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.feature-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-content p {
    color: var(--text-muted);
}

/* Section 8: Modern Process Timeline */
.modern-timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
}

.modern-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-accent), var(--secondary-accent));
    border-radius: 2px;
}

.modern-timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 3rem;
}

.modern-timeline-item.right-side {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.modern-timeline-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border: 4px solid var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-accent);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.4s var(--spring-curve), background 0.4s, color 0.4s;
}

.modern-timeline-item:hover .modern-timeline-icon {
    transform: translate(-50%, -5px) scale(1.1);
    background: var(--primary-accent);
    color: white;
}

.modern-timeline-content {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    width: 90%;
    position: relative;
}

/* Arrow for left items */
.modern-timeline-item:not(.right-side) .modern-timeline-content::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent var(--bg-white);
}

/* Arrow for right items */
.modern-timeline-item.right-side .modern-timeline-content::after {
    content: '';
    position: absolute;
    top: 15px;
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent var(--bg-white) transparent transparent;
}

.modern-timeline-content .step-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-slate);
    color: var(--primary-accent);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modern-timeline-content h3 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.modern-timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Slide Right Animation */
.slide-right-anim {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right-anim.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .modern-timeline::before {
        left: 25px;
        transform: none;
    }
    
    .modern-timeline-item {
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 70px;
    }
    
    .modern-timeline-item.right-side {
        padding-left: 70px;
    }
    
    .modern-timeline-icon {
        left: 0;
        transform: none;
    }
    
    .modern-timeline-item:hover .modern-timeline-icon {
        transform: scale(1.1);
    }
    
    .modern-timeline-content {
        width: 100%;
    }
    
    .modern-timeline-item:not(.right-side) .modern-timeline-content::after {
        right: auto;
        left: -10px;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--bg-white) transparent transparent;
    }
}

/* Section 10: Footer */
.main-footer {
    background: var(--text-charcoal);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    color: white;
    margin-bottom: 1rem;
    display: inline-flex;
}

.tagline {
    color: var(--text-light);
}

.footer-links h3, .footer-contact h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: white;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-accent);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: white;
}

.footer-contact i {
    color: var(--success-tone);
    font-size: 1.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Section 9: Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-form);
    width: 100%;
    max-width: 550px;
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    
    transform: scale(0.95);
    transition: transform 0.6s var(--spring-curve);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-charcoal);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--bg-slate);
    border-radius: 0.5rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg-white);
    color: var(--text-charcoal);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(15, 164, 175, 0.25);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
    gap: 0.75rem;
}

/* Success Checkmark Animation */
.form-success {
    text-align: center;
    padding: 2rem 0;
}

.form-success.hidden {
    display: none;
}

.success-icon-wrapper {
    font-size: 4rem;
    color: var(--success-tone);
    margin-bottom: 1rem;
    animation: checkmarkPop 0.6s var(--spring-curve) forwards;
}

.form-success h3 {
    color: var(--text-charcoal);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-muted);
}

/* Global Presence Section */
.global-presence-section {
    background-color: var(--bg-white);
}

.global-presence-section .section-subtitle {
    color: var(--secondary-accent);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.global-presence-section .section-title {
    font-size: 2.5rem;
    color: var(--text-charcoal);
    margin-bottom: 1rem;
}

.highlight-text {
    color: var(--primary-accent);
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    margin-top: 3rem;
    padding: 2rem 0;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-content img {
    height: 40px;
    margin: 0 3rem;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background-color: #25D366; /* Official WhatsApp color */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.3);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.rating {
    color: var(--secondary-accent);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.student-info {
    border-top: 1px solid var(--bg-slate);
    padding-top: 1rem;
}

.student-info h4 {
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.student-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Floating Hero Logo & Bobbing animation */
@keyframes bobbing {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.floating-hero-logo {
    position: absolute;
    bottom: -15px;
    left: -20px;
    background: rgba(243, 250, 249, 0.95);
    backdrop-filter: blur(12px);
    border: 4px solid var(--primary-accent);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: bobbing 4s ease-in-out infinite;
    z-index: 10;
    padding: 1.25rem;
    transition: transform 0.3s var(--spring-curve);
}

.floating-hero-logo:hover {
    transform: scale(1.1) rotate(-5deg);
    animation-play-state: paused;
    cursor: pointer;
}

.floating-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

@media (max-width: 960px) {
    .floating-hero-logo {
        width: 100px;
        height: 100px;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        animation: bobbingMobile 4s ease-in-out infinite;
    }
    
    .floating-hero-logo:hover {
        transform: translateX(-50%) scale(1.1) rotate(-5deg);
    }
    
    @keyframes bobbingMobile {
        0%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        50% {
            transform: translateX(-50%) translateY(-10px);
        }
    }
}

