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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-accept, .btn-manage {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #ff6b35;
    color: white;
}

.btn-manage {
    background: transparent;
    color: white;
    border: 1px solid #fff;
}

.btn-accept:hover, .btn-manage:hover {
    opacity: 0.8;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px); /* Safari */
    backdrop-filter: blur(10px);
    z-index: 999;
    -webkit-transition: all 0.3s ease; /* Safari */
    -moz-transition: all 0.3s ease; /* Firefox */
    -ms-transition: all 0.3s ease; /* IE */
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: normal;
}

/* Fallback for older browsers */
.logo h1 {
    font-size: 28px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: -5px;
}

.logo span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Main Navigation - Desktop */
.main-nav {
    display: flex; /* Ensure navigation is visible on desktop */
}

/* Desktop Registration Link - Show on desktop, hide on mobile */
.desktop-registration {
    display: block;
}

/* Mobile Dropdown - Hide on desktop, show on mobile */
.mobile-dropdown {
    display: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

/* Show dropdown on hover for all screen sizes */
.dropdown:hover .dropdown-menu,
.mobile-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #ff6b35;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown > a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Rotate dropdown arrow on hover for all screen sizes */
.dropdown:hover > a i,
.mobile-dropdown:hover > a i {
    transform: rotate(180deg);
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ff6b35;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.location-icon {
    color: #ff6b35;
}

.btn-signin, .btn-create-account {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-signin {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
}

.btn-create-account {
    background: #ff6b35;
    color: white;
}

.btn-signin:hover, .btn-create-account:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video-container.video-fallback {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Ensure video doesn't cause layout shifts */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: -webkit-box; /* Safari fallback */
    display: -ms-flexbox; /* IE fallback */
    display: grid;
    -webkit-grid-template-columns: 2fr 1fr; /* Safari */
    -ms-grid-template-columns: 2fr 1fr; /* IE */
    grid-template-columns: 2fr 1fr;
    -webkit-box-align: center; /* Safari */
    -ms-flex-align: center; /* IE */
    align-items: center;
    gap: 60px;
    /* Safari grid gap fallback */
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
    -webkit-row-gap: 60px;
    -moz-row-gap: 60px;
    row-gap: 60px;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    background: #ff6b35; /* Fallback for older browsers */
    background: -webkit-linear-gradient(45deg, #ff6b35, #ff8c42); /* Safari */
    background: -moz-linear-gradient(45deg, #ff6b35, #ff8c42); /* Firefox */
    background: -ms-linear-gradient(45deg, #ff6b35, #ff8c42); /* IE */
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Safari text gradient fix */
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.hero-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

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

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    -webkit-backdrop-filter: blur(10px); /* Safari */
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.programs-grid {
    display: -webkit-box; /* Safari fallback */
    display: -ms-flexbox; /* IE fallback */
    display: grid;
    /* Desktop: 3 columns */
    -webkit-grid-template-columns: repeat(3, 1fr); /* Safari */
    -ms-grid-template-columns: repeat(3, 1fr); /* IE */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* Safari grid gap fallback */
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    -webkit-row-gap: 30px;
    -moz-row-gap: 30px;
    row-gap: 30px;
}

.program-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.program-icon i {
    font-size: 32px;
    color: white;
}

.program-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.program-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.program-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.program-link:hover {
    gap: 12px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: -webkit-box; /* Safari fallback */
    display: -ms-flexbox; /* IE fallback */
    display: grid;
    -webkit-grid-template-columns: 2fr 1fr; /* Safari */
    -ms-grid-template-columns: 2fr 1fr; /* IE */
    grid-template-columns: 2fr 1fr;
    -webkit-box-align: center; /* Safari */
    -ms-flex-align: center; /* IE */
    align-items: center;
    gap: 60px;
    /* Safari grid gap fallback */
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
    -webkit-row-gap: 60px;
    -moz-row-gap: 60px;
    row-gap: 60px;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
}

.experience-list {
    display: -webkit-box; /* Safari fallback */
    display: -ms-flexbox; /* IE fallback */
    display: grid;
    -webkit-grid-template-columns: repeat(2, 1fr); /* Safari */
    -ms-grid-template-columns: repeat(2, 1fr); /* IE */
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    /* Safari grid gap fallback */
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -webkit-row-gap: 20px;
    -moz-row-gap: 20px;
    row-gap: 20px;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.experience-item:hover {
    background: #ff6b35;
    color: white;
    transform: translateX(10px);
}

.experience-item i {
    font-size: 20px;
    color: #ff6b35;
    width: 25px;
}

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

.about-quote {
    background: #ff6b35; /* Fallback for older browsers */
    background: -webkit-linear-gradient(135deg, #ff6b35, #ff8c42); /* Safari */
    background: -moz-linear-gradient(135deg, #ff6b35, #ff8c42); /* Firefox */
    background: -ms-linear-gradient(135deg, #ff6b35, #ff8c42); /* IE */
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    padding: 40px;
    border-radius: 15px;
    color: white;
}

.about-quote blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-quote cite {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

/* Instructors Section */
.instructors {
    padding: 100px 0;
    background: #f8f9fa;
}

.instructors-grid {
    display: -webkit-box; /* Safari fallback */
    display: -ms-flexbox; /* IE fallback */
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Safari */
    -ms-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* IE */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    /* Safari grid gap fallback */
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    -webkit-row-gap: 40px;
    -moz-row-gap: 40px;
    row-gap: 40px;
}

.instructor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instructor-card:hover .instructor-image img {
    transform: scale(1.1);
}

.instructor-info {
    padding: 30px;
}

.instructor-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.instructor-info p:first-of-type {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
}

.instructor-info p:last-of-type {
    color: #666;
    line-height: 1.6;
}

/* Alumni Section */
.alumni {
    padding: 100px 0;
    background: white;
}

.alumni-grid {
    display: -webkit-box; /* Safari fallback */
    display: -ms-flexbox; /* IE fallback */
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Safari */
    -ms-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* IE */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    /* Safari grid gap fallback */
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    -webkit-row-gap: 40px;
    -moz-row-gap: 40px;
    row-gap: 40px;
}

.alumni-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.alumni-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.alumni-image {
    height: 200px;
    overflow: hidden;
}

.alumni-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.alumni-card:hover .alumni-image img {
    transform: scale(1.1);
}

.alumni-info {
    padding: 30px;
}

.alumni-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.alumni-info p:first-of-type {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
}

.alumni-info p:last-of-type {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: -webkit-box; /* Safari fallback */
    display: -ms-flexbox; /* IE fallback */
    display: grid;
    -webkit-grid-template-columns: 1fr 1fr; /* Safari */
    -ms-grid-template-columns: 1fr 1fr; /* IE */
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* Safari grid gap fallback */
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
    -webkit-row-gap: 60px;
    -moz-row-gap: 60px;
    row-gap: 60px;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: #ff6b35;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 15px; /* Reduced padding for desktop */
}

.footer-content {
    display: -webkit-box; /* Safari fallback */
    display: -ms-flexbox; /* IE fallback */
    display: grid;
    /* Desktop: 4 columns grid */
    -webkit-grid-template-columns: repeat(4, 1fr); /* Safari */
    -ms-grid-template-columns: repeat(4, 1fr); /* IE */
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 30px; /* Consistent gap between columns */
    /* Safari grid gap fallback */
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    -webkit-row-gap: 30px;
    -moz-row-gap: 30px;
    row-gap: 30px;
    margin-bottom: 30px;
    align-items: start; /* Align items to top */
    justify-items: start; /* Align items to left */
}

/* Footer Section Styling */
.footer-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 200px; /* Ensure consistent height */
}

.footer-section h3 {
    font-size: 20px; /* Reduced from 24px */
    font-weight: 700; /* Reduced from 800 */
    color: #ff6b35;
    margin-bottom: 8px; /* Reduced from 10px */
}

.footer-section h4 {
    font-size: 16px; /* Reduced from 18px */
    font-weight: 600;
    margin-bottom: 15px; /* Reduced from 20px */
}

.footer-section p {
    color: #ccc;
    line-height: 1.5; /* Reduced from 1.6 */
    margin-bottom: 12px; /* Reduced from 15px */
    font-size: 14px; /* Added smaller font size */
}

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

.footer-section ul li {
    margin-bottom: 8px; /* Reduced from 10px */
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

/* Footer Logo Section */
.footer-section .logo {
    margin-bottom: 15px;
}

.footer-section .logo .logo-image {
    height: 40px; /* Appropriate size for footer */
    max-width: 150px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section .logo .logo-image:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px; /* Reduced from 20px */
    text-align: center;
    color: #999;
    font-size: 13px; /* Added smaller font size */
}


/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(5px); /* Safari */
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.modal h2 {
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.modal .form-group {
    margin-bottom: 20px;
}

.modal .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* Vision and Mission Styles */
.vision-mission {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 100%;
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .vision-mission {
        gap: 50px;
    }
    
    .vision-section,
    .mission-section {
        padding: 40px;
    }
    
    .vision-section h3,
    .mission-section h3 {
        font-size: 36px;
    }
    
    .vision-list li,
    .mission-list li {
        font-size: 18px;
        padding: 22px 0 22px 55px;
    }
    
    /* Footer: Enhanced 4-column grid for large screens */
    .footer-content {
        gap: 40px; /* More space on large screens */
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
        -webkit-row-gap: 40px;
        -moz-row-gap: 40px;
        row-gap: 40px;
    }
    
    .footer-section {
        min-height: 220px; /* Slightly taller on large screens */
    }
    
    .footer-section h4 {
        font-size: 18px; /* Slightly larger on large screens */
        margin-bottom: 18px;
    }
    
    .footer-section p {
        font-size: 15px; /* Slightly larger on large screens */
    }
}

.vision-section,
.mission-section {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0d6efd, #0056b3);
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
}

.vision-section h3,
.mission-section h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.vision-section h3 {
    color: #0d6efd;
    background: linear-gradient(135deg, #0d6efd, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-section h3 {
    color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-section h3 i {
    color: #0d6efd;
    font-size: 28px;
    background: rgba(13, 110, 253, 0.1);
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-section h3 i {
    color: #ff6b35;
    font-size: 28px;
    background: rgba(255, 107, 53, 0.1);
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-list,
.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-list li,
.mission-list li {
    position: relative;
    padding: 20px 0 20px 50px;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.vision-list li:last-child,
.mission-list li:last-child {
    border-bottom: none;
}

.vision-list li:hover,
.mission-list li:hover {
    background: rgba(13, 110, 253, 0.02);
    padding-left: 55px;
    color: #0d6efd;
}

.mission-list li:hover {
    background: rgba(255, 107, 53, 0.02);
    color: #ff6b35;
}

.vision-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 20px;
    color: #fff;
    background: linear-gradient(135deg, #0d6efd, #0056b3);
    font-weight: bold;
    font-size: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.mission-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    top: 20px;
    color: #fff;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    font-weight: bold;
    font-size: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Contact Form Messages */
.contact-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Contact Form Loading State */
.btn-loading {
    display: none;
}

.btn-loading i {
    margin-right: 8px;
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    .vision-mission {
        gap: 35px;
    }
    
    .vision-section,
    .mission-section {
        padding: 30px;
    }
    
    .vision-section h3,
    .mission-section h3 {
        font-size: 28px;
    }
    
    .vision-list li,
    .mission-list li {
        font-size: 16px;
        padding: 18px 0 18px 48px;
    }
    
    /* Programs: 2 columns on tablet */
    .programs-grid {
        -webkit-grid-template-columns: repeat(2, 1fr); /* Safari */
        -ms-grid-template-columns: repeat(2, 1fr); /* IE */
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Footer: 2 columns on tablet */
    .footer-content {
        -webkit-grid-template-columns: repeat(2, 1fr); /* Safari */
        -ms-grid-template-columns: repeat(2, 1fr); /* IE */
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Medium screens - Show horizontal navigation */
@media (max-width: 1000px) and (min-width: 501px) {
    .main-nav {
        display: flex;
    }
    
    .main-nav ul {
        gap: 20px;
    }
    
    .desktop-registration {
        display: block;
    }
    
    .mobile-dropdown {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 500px) {
    .container {
        padding: 0 15px;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vision-section,
    .mission-section {
        padding: 25px;
    }
    
    .vision-section h3,
    .mission-section h3 {
        font-size: 26px;
    }
    
    .vision-section h3 i,
    .mission-section h3 i {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .vision-list li,
    .mission-list li {
        font-size: 16px;
        padding: 18px 0 18px 45px;
    }
    
    .vision-list li:before,
    .mission-list li:before {
        width: 28px;
        height: 28px;
        font-size: 14px;
        top: 18px;
    }
}
    
    /* Enhanced mobile header */
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
        align-items: center;
    }
    
    /* Hide desktop registration link on mobile */
    .desktop-registration {
        display: none;
    }
    
    /* Show mobile dropdown on mobile */
    .mobile-dropdown {
        display: block;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 998;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        padding: 15px 20px;
        display: block;
        color: #333;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .main-nav a:hover {
        background: rgba(255, 107, 53, 0.1);
        color: #ff6b35;
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 0;
        padding-left: 20px;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .mobile-dropdown .dropdown-menu {
        display: none;
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }
    
    .mobile-dropdown .dropdown-menu.show {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .mobile-menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .header-actions {
        display: none; /* Hide header actions on mobile */
    }
    
    .logo-image {
        height: 40px;
        max-width: 150px;
    }
    
    /* Enhanced mobile hero section */
    .hero {
        padding: 120px 0 80px;
        min-height: 100vh;
        position: relative;
    }
    
    .hero-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: -1;
    }
    
    .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        z-index: -1;
        /* Enable video on mobile */
        display: block !important;
        /* Optimize for mobile performance */
        filter: brightness(0.7);
        /* Ensure video is visible */
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        -webkit-grid-template-columns: 1fr; /* Safari */
        -ms-grid-template-columns: 1fr; /* IE */
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 15px;
        position: relative;
        z-index: 2;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat {
        padding: 15px;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stat-number {
        font-size: 2rem;
        display: block;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        opacity: 0.9;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .programs-grid {
        /* Tablet: 2 columns */
        -webkit-grid-template-columns: repeat(2, 1fr); /* Safari */
        -ms-grid-template-columns: repeat(2, 1fr); /* IE */
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-content {
        -webkit-grid-template-columns: 1fr; /* Safari */
        -ms-grid-template-columns: 1fr; /* IE */
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 36px;
    }
    
    .experience-list {
        -webkit-grid-template-columns: 1fr; /* Safari */
        -ms-grid-template-columns: 1fr; /* IE */
        grid-template-columns: 1fr;
    }
    
    .instructors-grid,
    .alumni-grid {
        -webkit-grid-template-columns: 1fr; /* Safari */
        -ms-grid-template-columns: 1fr; /* IE */
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        -webkit-grid-template-columns: 1fr; /* Safari */
        -ms-grid-template-columns: 1fr; /* IE */
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2 {
        font-size: 36px;
    }
    
    /* Enhanced mobile forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
        border: 2px solid #e0e0e0;
        transition: border-color 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #ff6b35;
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    }
    
    .contact-form {
        padding: 30px 20px;
        background: #f9f9f9;
        border-radius: 15px;
        margin-top: 20px;
    }
    
    .map-container {
        height: 250px;
        border-radius: 10px;
        overflow: hidden;
        margin-top: 20px;
    }
    
    .footer {
        padding: 50px 0 20px; /* Restore more padding on mobile */
    }
    
    .footer-content {
        -webkit-grid-template-columns: 1fr; /* Safari */
        -ms-grid-template-columns: 1fr; /* IE */
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px; /* Slightly more gap on mobile */
        margin-bottom: 35px;
    }
    
    .footer-section h3 {
        font-size: 22px; /* Slightly larger on mobile */
        margin-bottom: 10px;
    }
    
    .footer-section h4 {
        font-size: 18px; /* Slightly larger on mobile */
        margin-bottom: 18px;
    }
    
    .footer-section p {
        font-size: 15px; /* Slightly larger on mobile */
        margin-bottom: 15px;
    }
    
    
    .footer-section ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
    }
    
    .footer-section ul li a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-section ul li a:hover {
        color: #ff6b35;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .cookie-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .cookie-content p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-accept, .btn-manage {
        width: 100%;
        max-width: 200px;
        padding: 12px 20px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.4rem;
    }
    
    .programs-grid {
        /* Mobile: 1 column */
        -webkit-grid-template-columns: 1fr; /* Safari */
        -ms-grid-template-columns: 1fr; /* IE */
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .instructors-grid,
    .alumni-grid {
        -webkit-grid-template-columns: repeat(2, 1fr); /* Safari */
        -ms-grid-template-columns: repeat(2, 1fr); /* IE */
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .footer-content {
        -webkit-grid-template-columns: repeat(2, 1fr); /* Safari */
        -ms-grid-template-columns: repeat(2, 1fr); /* IE */
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 500px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-text h2 {
        font-size: 1rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-text h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .programs-grid {
        /* Small Mobile: Force 1 column */
        -webkit-grid-template-columns: 1fr !important; /* Safari */
        -ms-grid-template-columns: 1fr !important; /* IE */
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .program-card,
    .contact-form {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .instructor-card,
    .alumni-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 20px 15px;
        width: 95%;
        max-width: 400px;
    }
    
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    /* Vision and Mission Mobile Styles */
    .vision-section h3,
    .mission-section h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .vision-section h3 i,
    .mission-section h3 i {
        width: 40px;
        height: 40px;
        font-size: 20px;
        padding: 8px;
    }
    
    .vision-list li,
    .mission-list li {
        font-size: 15px;
        padding: 15px 0 15px 40px;
        line-height: 1.6;
    }
    
    .vision-list li:before,
    .mission-list li:before {
        width: 25px;
        height: 25px;
        font-size: 12px;
        top: 15px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
        max-width: 100%;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
    }
    
    .cookie-content {
        padding: 15px 10px;
    }
    
    .cookie-content h3 {
        font-size: 14px;
    }
    
    .cookie-content p {
        font-size: 12px;
    }
    
    /* Mobile video optimization - Enable video on mobile */
    .hero-video {
        /* Enable video on mobile for better user experience */
        display: block !important;
        /* Optimize for mobile performance */
        -webkit-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0);
        /* Reduce quality slightly for better performance */
        filter: brightness(0.8);
        /* Ensure video is visible */
        opacity: 1;
        visibility: visible;
    }
    
    .hero-video-container {
        /* Keep video container with fallback background */
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        /* Ensure proper video positioning */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: -1;
    }
    
    /* Mobile-specific video controls */
    .hero-video::-webkit-media-controls {
        display: none !important;
    }
    
    .hero-video::-webkit-media-controls-start-playback-button {
        display: none !important;
    }
}

/* Smooth scrolling */
html {
    -webkit-scroll-behavior: smooth; /* Safari */
    scroll-behavior: smooth;
}

/* Safari-specific fixes */
@supports (-webkit-appearance: none) {
    .hero-video {
        -webkit-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0);
    }
    
    .hero-text h1 {
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
    }
    
    .program-card:hover,
    .instructor-card:hover,
    .alumni-card:hover {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
}

/* Cross-browser compatibility fixes */
* {
    -webkit-box-sizing: border-box; /* Safari */
    -moz-box-sizing: border-box; /* Firefox */
    box-sizing: border-box;
}

/* Ensure proper rendering on all browsers */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

/* Events / News Section */
.events-news {
    padding: 100px 0;
    background: #ffffff;
}

.no-events {
    text-align: center;
    padding: 80px 0;
}

.no-events-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-events-content i {
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 30px;
    opacity: 0.7;
}

.no-events-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.no-events-content p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Mobile Responsive for Events/News */
@media (max-width: 500px) {
    .events-news {
        padding: 60px 0;
    }
    
    .no-events {
        padding: 60px 0;
    }
    
    .no-events-content i {
        font-size: 3rem;
    }
    
    .no-events-content h3 {
        font-size: 1.5rem;
    }
    
    .no-events-content p {
        font-size: 1rem;
    }
}

/* Partnership Section */
.partnership {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partnership-content {
    max-width: 1200px;
    margin: 0 auto;
}

.partnership-benefits {
    margin-bottom: 80px;
}

.partnership-benefits h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.benefits-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.benefit-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.benefit-box p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

.partnership-types {
    margin-bottom: 80px;
}

.partnership-types h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.types-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.type-box {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.type-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.type-box h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.type-box p {
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.partnership-cta {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    padding: 60px 40px;
    border-radius: 20px;
    color: white;
}

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

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-content .btn-primary {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-content .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive for Partnership */
@media (max-width: 500px) {
    .partnership {
        padding: 60px 0;
    }
    
    .partnership-benefits h3,
    .partnership-types h3 {
        font-size: 2rem;
    }
    
    .benefits-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-box {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-box h4 {
        font-size: 1.3rem;
    }
    
    .types-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .type-box {
        padding: 25px 20px;
    }
    
    .type-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .partnership-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

