/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d9488;          /* Vibrant Medical Teal */
    --secondary-color: #1b365d;        /* Deep Navy Blue */
    --accent-color: #10b981;           /* Emerald Green */
    --accent-light: #e6fbf7;           /* Soft mint green background */
    --text-dark: #0f172a;              /* Slate 900 */
    --text-light: #475569;             /* Slate 600 */
    --text-white: #ffffff;
    --bg-light: #f8fafc;               /* Slate 50 */
    --bg-white: #ffffff;
    --border-color: #e2e8f0;           /* Slate 200 */
    --shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
    --shadow-hover: 0 10px 25px rgba(15, 23, 42, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body[dir="rtl"] {
    font-family: 'Cairo', sans-serif;
}

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

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.language-toggle button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.language-toggle button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

body[dir="rtl"] .language-toggle {
    right: auto;
    left: 20px;
}

/* Header */
.header {
    background: linear-gradient(90deg, #1b365d 0%, #0d9488 50%, #10b981 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none;
    padding-bottom: 12px; /* Leave space for the wave overlays */
}

/* Dual Wavy Bottoms */
.header::before {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1200,0 L1200,95 Q900,65 600,95 Q300,125 0,95 Z' fill='%230ea5e9' opacity='0.35'/%3E%3C/svg%3E");
    background-size: 100% 24px;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -2;
}

.header::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%231b365d'/%3E%3Cstop offset='50%25' stop-color='%230d9488'/%3E%3Cstop offset='100%25' stop-color='%2310b981'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0,0 L1200,0 L1200,90 Q900,120 600,90 Q300,60 0,90 Z' fill='url(%23g)'/%3E%3C/svg%3E");
    background-size: 100% 20px;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
}

.navbar {
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    background: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 8px 4px;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.3);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    width: 100%;
}

.header .nav-link.active {
    color: #ffffff;
}

/* Scrolled Header State */
.header.scrolled {
    padding-bottom: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.header.scrolled .navbar {
    padding: 0.4rem 0;
}

.header.scrolled .nav-logo img {
    height: 38px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

/* Stats Section */
.stats {
    padding: 80px 20px;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    background: var(--bg-white);
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent-color);
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* About Us Home Section */
.about-us-home {
    padding: 80px 20px;
    background: var(--bg-white);
}

.about-us-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-us-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: justify;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.strength-item {
    margin-bottom: 2rem;
}

.strength-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.strength-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.learn-more-btn {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 12px 25px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1rem;
}

.learn-more-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-us .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

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

.feature-item {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(13, 148, 136, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-12px);
    border-color: rgba(13, 148, 136, 0.2);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.1);
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    z-index: 1;
}

.feature-item:hover .feature-icon {
    background-position: right center;
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 12px 28px rgba(13, 148, 136, 0.4), 0 0 0 6px rgba(13, 148, 136, 0.15);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.feature-item:hover .feature-icon::before {
    transform: translateX(100%);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .section-title {
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(10px);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.contact-item:hover i {
    color: white;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus+label,
.form-group input:valid+label,
.form-group textarea:focus+label,
.form-group textarea:valid+label {
    top: -10px;
    left: 10px;
    background: var(--bg-white);
    padding: 0 5px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    position: static;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section i {
    color: var(--accent-color);
    width: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #cccccc;
}

/* RTL Styles */
body[dir="rtl"] {
    text-align: right;
    direction: rtl;
}

body[dir="rtl"] .nav-menu {
    flex-direction: row;
}

body[dir="rtl"] .hero-container {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

body[dir="rtl"] .about-content {
    direction: rtl;
}

body[dir="rtl"] .contact-content {
    direction: rtl;
}

body[dir="rtl"] .contact-item:hover {
    transform: translateX(-10px);
}

body[dir="rtl"] .form-group label {
    left: auto;
    right: 15px;
}

body[dir="rtl"] .form-group input:focus+label,
body[dir="rtl"] .form-group input:valid+label,
body[dir="rtl"] .form-group textarea:focus+label,
body[dir="rtl"] .form-group textarea:valid+label {
    left: auto;
    right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .language-toggle {
        top: 10px;
        right: 10px;
    }

    body[dir="rtl"] .language-toggle {
        right: auto;
        left: 10px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 0.7;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Mission Vision Values */
.mission-vision {
    padding: 100px 0;
    background: var(--bg-light);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mvv-item {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mvv-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.mvv-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.mvv-item p,
.mvv-item ul {
    color: var(--text-light);
    line-height: 1.7;
}

.mvv-item ul {
    list-style: none;
    text-align: left;
}

.mvv-item ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.mvv-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Leadership Team */
.leadership {
    padding: 100px 0;
    background: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
}

/* Achievements */
.achievements {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.achievement-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.achievement-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.achievement-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Marketing Services */
.marketing-services {
    padding: 100px 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Marketing Process */
.marketing-process {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.process-step {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Success Stories */
.success-stories {
    padding: 100px 0;
    background: var(--bg-white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(13, 148, 136, 0.08);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(13, 148, 136, 0.2);
}

.story-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story-card:hover .story-image img {
    transform: scale(1.08);
}

.story-content {
    padding: 2rem;
}

.story-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.story-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.story-stats .stat {
    background: var(--accent-light);
    padding: 10px 14px;
    border-radius: 12px;
    flex: 1;
    min-width: 120px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(13, 148, 136, 0.12);
    transition: var(--transition);
}

.story-card:hover .story-stats .stat {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
}

.story-stats .stat small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 0.3rem;
}

/* Marketing Tools */
.marketing-tools {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.tool-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tool-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tool-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tool-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tool-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Partnership Styles */
.partnership-types {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.partnership-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.partnership-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.partnership-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.partnership-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.partnership-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.partnership-benefits li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.partnership-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.partnership-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.partnership-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Partnership Benefits Section */
.partnership-benefits-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

/* Current Partners */
.current-partners {
    padding: 80px 0;
    background: var(--bg-white);
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover img {
    opacity: 1;
}

/* Partnership Requirements */
.partnership-requirements {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.requirement-category {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.requirement-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.requirement-category ul {
    list-style: none;
}

.requirement-category ul li {
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.requirement-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Partnership Form */
.partnership-form-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.partnership-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Events Styles */
.event-categories {
    padding: 40px 20px;
    background: var(--bg-white);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid transparent;
    padding: 9px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Upcoming Events */
.upcoming-events {
    padding: 80px 20px;
    background: var(--bg-light);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.event-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.event-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-card:hover .event-image img {
    transform: scale(1.08);
}

.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    min-width: 55px;
}

.event-date .day {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.85rem;
    opacity: 0.95;
}

.event-content {
    padding: 25px;
}

.event-category {
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.event-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.event-details {
    margin-bottom: 18px;
}

.event-location,
.event-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.event-location i,
.event-time i {
    color: var(--primary-color);
    width: 16px;
}

.event-btn {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.9rem;
}

.event-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Past Events Grid */
.past-events {
    padding: 80px 20px;
    background: var(--bg-light);
}

.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.past-event-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.past-event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.past-event-card:hover .past-event-date-badge {
    background: var(--accent-color);
}

.past-event-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.past-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.past-event-card:hover .past-event-image img {
    transform: scale(1.08);
}

.past-event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.past-event-content {
    padding: 35px 25px;
    text-align: center;
}

.past-event-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.past-event-title {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 0 10px 0;
    line-height: 1.4;
}

.past-event-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.past-event-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.past-event-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 500;
}

/* Event Registration */
.event-registration {
    padding: 80px 20px;
    background: var(--bg-light);
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.registration-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.registration-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.registration-benefits {
    list-style: none;
}

.registration-benefits li {
    color: var(--text-light);
    margin-bottom: 15px;
    position: relative;
    padding-left: 28px;
    line-height: 1.6;
}

.registration-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.registration-form {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

/* Event Gallery */
.event-gallery {
    padding: 80px 20px;
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 126, 126, 0.95));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.contact-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-color);
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-info h2 {
    margin-bottom: 1.5rem;
}

.form-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

.contact-features .feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-form-container {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Departments Section */
.departments-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.department-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.department-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.department-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.department-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.department-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.department-contact i {
    color: var(--primary-color);
    width: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.map-placeholder {
    background: var(--bg-light);
    padding: 4rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.map-placeholder:hover {
    transform: scale(0.98);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.map-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.map-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Form Error Styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #f44336;
}

.form-group.error label {
    color: #f44336;
}

.field-error {
    color: #f44336;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

/* Text Center Utility */
.text-center {
    text-align: center;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .mvv-grid,
    .team-grid,
    .achievements-grid,
    .services-grid,
    .process-steps,
    .stories-grid,
    .tools-grid,
    .partnership-grid,
    .requirements-grid,
    .events-grid,
    .contact-info-grid,
    .departments-grid {
        grid-template-columns: 1fr;
    }

    .benefits-content,
    .registration-content,
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .registration-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-date {
        left: -55px;
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .past-events-timeline::before {
        left: 22px;
    }

    .timeline-item::before {
        left: 16px;
        width: 16px;
        height: 16px;
        border-width: 3px;
    }
}

/* Enhanced Phone and WhatsApp Links */
a[href^="tel:"],
a[href^="https://wa.me/"] {
    transition: all 0.3s ease;
    border-radius: 3px;
    padding: 2px 4px;
}

a[href^="tel:"]:hover {
    color: var(--primary-color) !important;
    background: rgba(13, 148, 136, 0.1);
}

a[href^="https://wa.me/"]:hover {
    color: #128C7E !important;
    background: rgba(37, 211, 102, 0.1);
}

/* Enhanced Contact Link Buttons */
.contact-link {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* WhatsApp Button Specific Styling */
.contact-link[style*="background: #25D366"] {
    color: white !important;
}

.contact-link[style*="background: #25D366"]:hover {
    background: #128C7E !important;
}

/* Enhanced Active Navigation */
.nav-link.active {
    position: relative;
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Mobile Navigation Active State */
@media (max-width: 768px) {
    .nav-link.active::after {
        bottom: -5px;
        width: 4px;
        height: 4px;
    }
}

/* Form Validation Enhancements */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
    outline: none;
}

.form-group.error input:focus,
.form-group.error select:focus,
.form-group.error textarea:focus {
    border-color: #f44336;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

/* Success State for Forms */
.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #4CAF50;
}

.form-group.success label {
    color: #4CAF50;
}

/* Loading State for Buttons */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    color: white;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 75px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Enhanced Page Transitions */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.page-transition.loaded {
    opacity: 1;
    transform: none;
}

/* Smooth Scrolling Enhancement */
html {
    scroll-behavior: smooth;
}

/* Loading Animation for Page Content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease forwards;
}

/* Enhanced Hover Effects for Cards */
.service-card:hover,
.feature-card:hover,
.team-member:hover,
.event-card:hover,
.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Improved Button Interactions */
.btn:active {
    transform: translateY(1px);
}

.contact-link:active {
    transform: translateY(-1px);
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--text-dark);
    font-size: 22px;
    margin: 0;
    font-weight: 600;
}

/* Opportunities Section */
.opportunities-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 15px;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    top: 0;
}

body[dir="rtl"] .timeline::before {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

.timeline-item {
    margin-bottom: 50px;
    width: 48%;
    position: relative;
}

.timeline-item.left {
    left: 0;
    text-align: right;
    padding-right: 50px;
}

.timeline-item.right {
    left: 52%;
    text-align: left;
    padding-left: 50px;
}

body[dir="rtl"] .timeline-item.left {
    left: auto;
    right: 0;
    text-align: left;
    padding-right: 0;
    padding-left: 50px;
}

body[dir="rtl"] .timeline-item.right {
    left: auto;
    right: 52%;
    text-align: right;
    padding-left: 0;
    padding-right: 50px;
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    width: 100px;
    text-align: center;
}

body[dir="rtl"] .timeline-date {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

.timeline-content {
    background: var(--primary-color);
    padding: 30px;
    border-radius: 8px;
    color: white;
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.timeline-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Operations Section */
.operations-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.operation-item {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.operation-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.operation-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.operation-item h3 {
    color: var(--text-dark);
    font-size: 22px;
    margin: 20px 0;
    font-weight: 600;
}

.operation-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Strength Section */
.strength-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.strength-item {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.strength-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.strength-item h3 {
    color: var(--text-dark);
    font-size: 20px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.strength-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Strength Timeline Grid */
.strength-timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.strength-timeline-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    position: relative;
}

.strength-timeline-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent-color);
}

.strength-date {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.strength-timeline-item:hover .strength-date {
    background: var(--accent-color);
}

.strength-content h4 {
    color: var(--text-dark);
    font-size: 18px;
    margin: 15px 0 10px 0;
    font-weight: 600;
}

.strength-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Partners Section */
.partners-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.partner-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.partner-logo {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.partner-logo img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: var(--transition);
}

.partner-card:hover .partner-logo img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .header {
        position: sticky;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo img {
        height: 45px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        left: 0;
        top: 100%;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        display: none;
        padding: 20px 0;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        padding: 10px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }

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

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

    .values-grid,
    .operations-grid,
    .strength-grid,
    .strength-timeline-grid,
    .partners-grid,
    .stats-grid,
    .events-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .stat-item {
        padding: 30px 20px;
    }

    .stat-icon {
        font-size: 3rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .timeline {
        padding: 20px;
    }

    .timeline::before {
        left: 30px;
        transform: translateX(-50%);
    }

    body[dir="rtl"] .timeline::before {
        left: auto;
        right: 30px;
        transform: translateX(50%);
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px !important;
        padding-right: 0 !important;
    }

    body[dir="rtl"] .timeline-item {
        padding-left: 0 !important;
        padding-right: 80px !important;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0 !important;
        right: auto !important;
    }

    body[dir="rtl"] .timeline-item.left,
    body[dir="rtl"] .timeline-item.right {
        left: auto !important;
        right: 0 !important;
    }

    .timeline-date {
        position: relative;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        display: inline-block;
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .language-toggle {
        top: 10px;
        right: 10px;
    }

    .language-toggle button {
        padding: 8px 12px;
        font-size: 12px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .container {
        padding: 0 15px;
    }

    .about-us-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .feature-item {
        padding: 20px 15px;
    }

    .feature-icon {
        font-size: 2.2rem;
    }

    .feature-item h3 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .contact-item {
        margin-bottom: 12px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .past-event-title {
        font-size: 1.1rem;
    }

    .past-event-description {
        font-size: 0.9rem;
    }

    .event-title {
        font-size: 1.1rem;
    }

    .event-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {

    .values-grid,
    .operations-grid,
    .strength-grid,
    .strength-timeline-grid,
    .partners-grid,
    .events-grid,
    .gallery-grid,
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    body {
        font-size: 14px;
    }

    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .stats {
        padding: 60px 15px;
    }

    .stat-item {
        padding: 25px 15px;
        border-radius: 10px;
    }

    .stat-icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .event-card {
        padding-bottom: 15px;
    }

    .event-image {
        height: 150px;
    }

    .event-content {
        padding: 20px 15px;
    }

    .event-category {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .event-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-grid {
        gap: 15px;
    }

    .past-event-card {
        padding: 25px 15px;
    }

    .past-event-icon {
        font-size: 40px;
    }

    .past-event-date-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .past-event-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .registration-content {
        grid-template-columns: 1fr;
    }

    .registration-form {
        padding: 25px 15px;
    }

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

    .submit-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        margin-top: 20px;
    }

    .form-info h2 {
        font-size: 1.5rem;
    }

    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float a {
        font-size: 24px;
    }

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

    .about-us-home {
        padding: 40px 15px;
    }

    .why-us {
        padding: 40px 15px;
    }

    .contact {
        padding: 40px 15px;
    }

    .past-events,
    .upcoming-events,
    .event-gallery {
        padding: 40px 15px;
    }

    .event-date .day {
        font-size: 1.2rem;
    }

    .event-date .month {
        font-size: 0.75rem;
    }

    .contact-item {
        flex-wrap: wrap;
    }

    .contact-item i {
        margin-right: 10px;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-section h3 {
        margin-bottom: 12px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

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

    .stat-icon {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .feature-item {
        padding: 15px 10px;
    }

    .feature-icon {
        font-size: 1.8rem;
    }

    .feature-item h3 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    .event-card {
        border-radius: 8px;
    }

    .event-image {
        height: 140px;
    }

    .event-title {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Antigravity Premium 3D Animations & Offline UI Fixes
   ========================================================================== */

/* 3D Navbar Logo Hover Effect */
.nav-logo {
    perspective: 500px;
}

.nav-logo img {
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
}

.nav-logo:hover img {
    transform: rotateY(15deg) rotateX(-10deg) scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(13, 148, 136, 0.35));
}

/* 3D Floating Corporate Logo (About Page) */
.logo-3d-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    padding: 1.5rem;
}

.logo-3d-wrapper {
    width: 100%;
    max-width: 320px;
    height: 320px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: floatLogo3D 6s ease-in-out infinite;
}

.logo-3d-interactive {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(13, 148, 136, 0.25));
}

.logo-3d-wrapper:hover {
    transform: rotateY(180deg) scale(1.05);
}

@keyframes floatLogo3D {

    0%,
    100% {
        transform: translateY(0) rotateY(0deg) rotateX(0deg);
    }

    25% {
        transform: translateY(-8px) rotateY(8deg) rotateX(4deg);
    }

    50% {
        transform: translateY(-16px) rotateY(0deg) rotateX(8deg);
    }

    75% {
        transform: translateY(-8px) rotateY(-8deg) rotateX(4deg);
    }
}

/* Snappy Page Transition speed-up */
.page-transition {
    opacity: 0 !important;
    transform: translateY(10px) !important;
    transition: opacity 0.25s ease-out, transform 0.25s ease-out !important;
}

.page-transition.loaded {
    opacity: 1 !important;
    transform: none !important;
}

/* 3D Event Card Hover & Image Ken Burns effect */
.past-event-card {
    perspective: 1000px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease;
}

.past-event-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.15);
}

.past-event-image {
    overflow: hidden;
    position: relative;
}

.past-event-image img {
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.past-event-card:hover .past-event-image img {
    transform: scale(1.1) translate(-1%, -1%);
}

/* Promotional Badge on Image */
.promo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #28a745 0%, var(--primary-color) 100%);
    color: white;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 25px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badgePulse 2s infinite alternate;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    100% {
        transform: scale(1.05);
        box-shadow: 0 6px 18px rgba(40, 167, 69, 0.4);
    }
}

body[dir="rtl"] .promo-badge {
    left: auto;
    right: 15px;
}

/* Floating labels bug fix - prevent overlap when input has content or value space */
.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -12px !important;
    left: 10px !important;
    font-size: 0.8rem !important;
    color: var(--primary-color) !important;
    background: var(--bg-white) !important;
    padding: 0 5px !important;
}

body[dir="rtl"] .form-group input:focus~label,
body[dir="rtl"] .form-group input:not(:placeholder-shown)~label,
body[dir="rtl"] .form-group textarea:focus~label,
body[dir="rtl"] .form-group textarea:not(:placeholder-shown)~label {
    left: auto !important;
    right: 10px !important;
}

