* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Enhanced Color Palette */
    --primary: #0056b3;
    --secondary: #ff6b6b;
    --accent: #4ecdc4;
    --dark: #0a0e27;
    --light: #f8f9fa;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-2: linear-gradient(135deg, var(--accent), var(--primary));
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-light: rgba(255, 255, 255, 0.9);
    --text-dim: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --gold: #FFD700;
    --silver: #C0C0C0;
    --bronze: #CD7F32;
    --ride-hack-color: #ff3838; /* New attractive color for RIDE HACK link */
}
body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    position: relative;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
    filter: blur(40px);
    animation: float 20s infinite ease-in-out;
}
.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}
.shape-2 {
    width: 400px;
    height: 400px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}
.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}
.shape-4 {
    width: 350px;
    height: 350px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}
.shape-5 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 20%;
    animation-delay: 8s;
}
.shape-6 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 5%;
    animation-delay: 1s;
}
.shape-7 {
    width: 220px;
    height: 220px;
    bottom: 30%;
    right: 5%;
    animation-delay: 3s;
}
.shape-8 {
    width: 150px;
    height: 150px;
    top: 70%;
    left: 20%;
    animation-delay: 5s;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.05);
    }
    50% {
        transform: translateY(0) translateX(20px) scale(1);
    }
    75% {
        transform: translateY(20px) translateX(-10px) scale(0.95);
    }
}
/* Enhanced Typewriter Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow: hidden;
}
.typewriter-container {
    position: relative;
    margin-bottom: 1rem;
}
.typewriter {
    font-family: 'Montserrat', sans-serif;
    font-size: 8rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 86, 179, 0.5);
    position: relative;
    z-index: 2;
}
.typewriter-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    filter: blur(30px);
    opacity: 0.5;
    z-index: 1;
    animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}
.typewriter-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 3s forwards;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Enhanced Ride Hack Popup Modal */
.ridehack-popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10002;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}
.ridehack-popup-modal.active {
    display: flex;
}
.ridehack-popup-content {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.2), rgba(255, 107, 107, 0.2));
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.4);
    backdrop-filter: blur(10px);
    overflow: hidden;
}
.ridehack-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('ridehack.jpeg') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}
.ridehack-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 86, 179, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--light);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}
.ridehack-popup-close:hover {
    background: rgba(0, 86, 179, 0.5);
    transform: rotate(90deg);
}
.ridehack-popup-header {
    margin-bottom: 30px;
}
.ridehack-popup-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.5);
    animation: pulse 2s infinite;
}
.innovation-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.ridehack-popup-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.ridehack-popup-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0;
}
.ridehack-popup-body {
    margin-bottom: 30px;
}
.ridehack-popup-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.ridehack-popup-date,
.ridehack-popup-location,
.ridehack-popup-prize {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
}
.ridehack-popup-date i,
.ridehack-popup-location i,
.ridehack-popup-prize i {
    color: var(--primary);
    font-size: 20px;
}
.ridehack-popup-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}
.ridehack-popup-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.ridehack-popup-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 86, 179, 0.2);
    border: 1px solid rgba(0, 86, 179, 0.4);
    border-radius: 50px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}
.ridehack-popup-highlights .highlight-item:hover {
    background: rgba(0, 86, 179, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}
.ridehack-popup-highlights .highlight-item i {
    color: var(--primary);
    font-size: 18px;
}
.ridehack-popup-highlights .highlight-item span {
    font-weight: 600;
}
.ridehack-popup-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.ridehack-popup-register,
.ridehack-popup-learn {
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 86, 179, 0.4);
}
.ridehack-popup-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.8;
    z-index: -1;
    transition: all 0.3s ease;
}
.ridehack-popup-register:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.6);
}
.ridehack-popup-register:hover::before {
    opacity: 1;
}
.ridehack-popup-learn {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
    box-shadow: none;
}
.ridehack-popup-learn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}
.ridehack-popup-learn:hover {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.6);
}
.ridehack-popup-learn:hover::before {
    opacity: 1;
}
/* Registration Modal Styles */
.registration-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.registration-modal.active {
    display: flex;
}
.registration-content {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(255, 107, 107, 0.1));
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.3);
    backdrop-filter: blur(10px);
}
.registration-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 86, 179, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--light);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.registration-close:hover {
    background: rgba(0, 86, 179, 0.4);
    transform: rotate(90deg);
}
.registration-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.5);
}
.registration-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.registration-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}
.registration-form {
    text-align: left;
}
.registration-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px; /* Increased gap to prevent collapsing */
    margin-bottom: 25px; /* Increased margin */
}
.registration-form .form-group {
    margin-bottom: 25px; /* Increased margin to prevent collapsing */
}
.registration-form .form-group label {
    display: block;
    margin-bottom: 10px; /* Increased margin */
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}
.registration-form .form-group input {
    width: 100%;
    padding: 15px; /* Increased padding */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 86, 179, 0.3);
    border-radius: 10px;
    color: var(--light);
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Added to ensure padding doesn't affect width */
}
.registration-form .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 86, 179, 0.3);
    background: rgba(255, 255, 255, 0.08);
}
.form-hint {
    display: block;
    margin-top: 8px; /* Increased margin */
    font-size: 12px;
    color: var(--text-dim);
    font-style: italic;
}
.registration-submit-btn {
    width: 100%;
    margin-top: 15px; /* Increased margin */
}
/* Registration Success Modal */
.registration-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.registration-success-modal.active {
    display: flex;
}
.registration-success-content {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(255, 107, 107, 0.1));
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.3);
    backdrop-filter: blur(10px);
}
.registration-success-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 86, 179, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--light);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.registration-success-close:hover {
    background: rgba(0, 86, 179, 0.4);
    transform: rotate(90deg);
}
.registration-success-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.5);
}
.registration-success-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.registration-success-message {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}
/* Enhanced Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 60px; /* Increased right padding to prevent cutting */
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 86, 179, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
nav.scrolled {
    padding: 10px 30px;
    background: rgba(10, 14, 39, 0.98);
    box-shadow: 0 5px 30px rgba(0, 86, 179, 0.3);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 86, 179, 0.5);
    transition: all 0.3s ease;
}
.logo:hover .logo-img {
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 86, 179, 0.8);
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-text span:first-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}
.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    border-radius: 30px;
}
.nav-link.active {
    color: white;
    background: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.4);
}
.nav-link:hover {
    color: white;
    background: var(--primary);
    transform: translateY(-3px);
}
/* RIDE Hack Navigation Button - Enhanced */
.ride-hack-nav {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 10px 20px; /* Increased padding to prevent cutting */
    background: linear-gradient(90deg, var(--ride-hack-color), #ff9a9a, var(--ride-hack-color));
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 56, 56, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevents text from wrapping */
}
.ride-hack-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 56, 56, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}
.ride-hack-text {
    position: relative;
    z-index: 2;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.ride-hack-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--ride-hack-color), #ff9a9a, var(--ride-hack-color));
    background-size: 400% 400%;
    border-radius: 30px;
    z-index: 1;
    opacity: 0.7;
    animation: gradientFlow 3s ease infinite;
    filter: blur(5px);
}
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.ride-hack-nav:hover .ride-hack-text {
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}
.ride-hack-nav:hover .ride-hack-glow {
    opacity: 1;
    filter: blur(3px);
}
.menu-toggle {
    display: none;
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1002;
    background: var(--gradient);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
}
.menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.8;
    z-index: -1;
    transition: all 0.3s ease;
}
.menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.6);
}
.menu-toggle:hover::before {
    opacity: 1;
}
.menu-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 25px;
    background: white;
    border-radius: 9px;
    opacity: 1;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.25s ease-in-out;
}
.menu-toggle span:nth-child(1) {
    top: 16px;
}
.menu-toggle span:nth-child(2) {
    top: 23px;
}
.menu-toggle span:nth-child(3) {
    top: 30px;
}
.menu-toggle.active span:nth-child(1) {
    top: 23px;
    transform: translateX(-50%) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    top: 23px;
    transform: translateX(-50%) rotate(-45deg);
}
/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(0, 86, 179, 0.1));
    backdrop-filter: blur(20px);
    padding: 120px 40px 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    border-left: 3px solid var(--primary);
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    list-style: none;
}
.mobile-nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}
.mobile-nav-link.active {
    color: white;
    background: var(--primary);
    border-radius: 30px;
    padding-left: 25px;
}
.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: width 0.3s ease;
}
.mobile-nav-link:hover {
    color: white;
    text-shadow: 0 0 10px var(--primary);
    padding-left: 25px;
}
.mobile-nav-link:hover::before {
    width: 15px;
}
/* Enhanced Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(10, 14, 39, 0.7), rgba(10, 14, 39, 0.9)), url('https://images.unsplash.com/photo-1555949963-ff9fe0c870eb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2076&q=80');
    background-size: cover;
    background-position: center;
}
.hero-3d-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    overflow: hidden;
}
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.3), rgba(255, 107, 107, 0.3)), url('https://images.unsplash.com/photo-1555949963-ff9fe0c870eb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2076&q=80');
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.6);
    z-index: 2;
}
.hero-3d-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.hero-title-container {
    margin-bottom: 30px;
}
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: var(--gradient);
    transform: translateX(-50%);
    border-radius: 2px;
}
.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-location {
    font-size: 1.5rem;
    margin-bottom: 40px;
    padding: 10px 20px;
    border: 1px solid rgba(78, 205, 196, 0.5);
    border-radius: 30px;
    background: rgba(78, 205, 196, 0.1);
    color: white;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-location:hover {
    background: rgba(78, 205, 196, 0.2);
    transform: scale(1.05);
}
.hero-location a {
    color: white;
    text-decoration: none;
}
/* Enhanced Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    opacity: 0.2;
    animation: float 6s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(0, 86, 179, 0.5);
}
.floating-element i {
    animation: rotate 10s linear infinite;
}
.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}
.element-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}
.element-4 {
    top: 40%;
    right: 10%;
    animation-delay: 1s;
}
.element-5 {
    top: 15%;
    right: 30%;
    animation-delay: 3s;
}
.element-6 {
    bottom: 20%;
    right: 20%;
    animation-delay: 5s;
}
.element-7 {
    top: 35%;
    left: 5%;
    animation-delay: 1.5s;
}
.element-8 {
    bottom: 45%;
    right: 5%;
    animation-delay: 4.5s;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Enhanced About Section */
.about {
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 50px;
    height: 2px;
    background: var(--gradient);
    transform: translateX(-50%);
}
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.about-text {
    position: relative;
}
.about-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
}
.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}
.feature-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
}
.feature-text p {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}
.about-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
}
.about-cube {
    width: 300px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}
.cube-face {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(0, 86, 179, 0.1);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    color: var(--primary);
}
.cube-face:nth-child(1) { transform: rotateY(0deg) translateZ(150px); }
.cube-face:nth-child(2) { transform: rotateY(90deg) translateZ(150px); }
.cube-face:nth-child(3) { transform: rotateY(180deg) translateZ(150px); }
.cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(150px); }
.cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(150px); }
.cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(150px); }
.about-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.5;
    animation: particleFloat 10s infinite ease-in-out;
}
.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.particle:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}
.particle:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}
.particle:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 6s;
}
.particle:nth-child(5) {
    top: 70%;
    left: 50%;
    animation-delay: 8s;
}
.particle:nth-child(6) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}
.particle:nth-child(7) {
    bottom: 40%;
    right: 20%;
    animation-delay: 3s;
}
.particle:nth-child(8) {
    top: 50%;
    left: 20%;
    animation-delay: 5s;
}
@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.8;
    }
}
/* Enhanced What We Do Section */
.whatwedo {
    padding: 100px 50px;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(10, 14, 39, 0.8) 100%);
    position: relative;
}
/* What We Do Description */
.whatwedo-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0.9;
}
/* What We Do Carousel - IMPROVED */
.whatwedo-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.3);
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    height: 400px;
}
.whatwedo-carousel-track {
    display: flex;
    animation: carouselSlide 7200s linear infinite; /* Changed to 7200s (2 hours) for extremely slow speed */
    width: 3200%;
}
.whatwedo-carousel-container:hover .whatwedo-carousel-track {
    animation-play-state: paused;
}
.whatwedo-carousel-slide {
    flex: 0 0 3.125%;
    position: relative;
    padding: 0 10px;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatwedo-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.whatwedo-carousel-slide:hover img {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}
@keyframes carouselSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-3200%);
    }
}
/* Enhanced Events Section */
.events {
    padding: 100px 50px;
    position: relative;
}
.events-container {
    max-width: 1200px;
    margin: 0 auto;
}
.event-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.3);
    border-color: var(--primary);
}
.event-header {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}
.event-date {
    background: var(--gradient);
    color: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    min-width: 120px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.event-date .day {
    font-size: 32px;
    display: block;
    font-weight: 800;
}
.event-date .month {
    font-size: 18px;
    margin-top: 5px;
}
.event-info {
    flex: 1;
    min-width: 0;
}
.event-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--light);
    word-wrap: break-word;
}
.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.event-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
}
.event-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}
/* Event Countdown Section - UPDATED */
.event-countdown-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.event-countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(255, 107, 107, 0.1));
    z-index: -1;
}
.event-countdown-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.3);
    border-color: var(--primary);
}
.countdown-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--light);
}
.countdown-highlight {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    background: rgba(0, 86, 179, 0.15);
    border: 1px solid rgba(0, 86, 179, 0.3);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
}
.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
    border-color: var(--primary);
}
.countdown-value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}
.countdown-label {
    font-size: 16px;
    font-weight: 600;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}
.event-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
/* Enhanced Button Styles */
.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 86, 179, 0.4);
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.8;
    z-index: -1;
    transition: all 0.3s ease;
}
.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.6);
}
.btn:hover::before {
    opacity: 1;
}
.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
    box-shadow: none;
}
.btn-secondary::before {
    background: var(--gradient);
    opacity: 0;
}
.btn-secondary:hover {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.6);
}
/* Innovation Spotlight Section */
.innovation-spotlight {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 60px 40px;
    margin-top: 60px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.innovation-spotlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.3);
    border-color: var(--primary);
}
.innovation-spotlight-header {
    text-align: center;
    margin-bottom: 50px;
}
.innovation-spotlight-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.innovation-spotlight-subtitle {
    font-size: 20px;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}
.innovation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.innovation-card {
    background: rgba(0, 86, 179, 0.1);
    border: 1px solid rgba(0, 86, 179, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.2);
    border-color: var(--primary);
}
.innovation-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
}
.innovation-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light);
}
.innovation-card-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 20px;
    flex-grow: 1;
}
.innovation-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.innovation-tag {
    background: rgba(0, 86, 179, 0.2);
    border: 1px solid rgba(0, 86, 179, 0.3);
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    color: white;
    transition: all 0.3s ease;
}
.innovation-tag:hover {
    background: rgba(0, 86, 179, 0.3);
    transform: translateY(-3px);
}
/* Enhanced Footer */
footer {
    background: var(--dark);
    padding: 60px 15px 20px;
    border-top: 1px solid rgba(0, 86, 179, 0.2);
    position: relative;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.footer-column {
    margin-bottom: 30px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.footer-logo img {
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}
.footer-logo h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.footer-description {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dim);
}
.footer-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-item i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}
.contact-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}
.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.contact-emails {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.newsletter-form input {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-size: 16px;
    transition: all 0.3s ease;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.3);
}
.newsletter-form button {
    padding: 12px 15px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.4);
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 18px;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
}
.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--text-dim);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
/* Enhanced Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 86, 179, 0.4);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.6);
}
.scroll-top i {
    color: white;
    font-size: 24px;
}
/* Enhanced Sexy Back Button */
.sexy-back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(0, 86, 179, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}
.sexy-back-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}
.sexy-back-button:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.4);
}
.sexy-back-button:hover::before {
    opacity: 1;
}
.back-button-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100;
}
/* Enhanced Success Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.success-modal.active {
    display: flex;
}
.success-content {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(255, 107, 107, 0.1));
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.3);
    backdrop-filter: blur(10px);
}
.success-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 86, 179, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--light);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.success-close:hover {
    background: rgba(0, 86, 179, 0.4);
    transform: rotate(90deg);
}
.success-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.5);
}
.success-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.success-message {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}
.success-button {
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 86, 179, 0.4);
}
.success-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.6);
}
/* Enhanced Coming Soon Modal */
.coming-soon-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.coming-soon-modal.active {
    display: flex;
}
.coming-soon-content {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(255, 107, 107, 0.1));
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.3);
    backdrop-filter: blur(10px);
}
.coming-soon-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 86, 179, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--light);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.coming-soon-close:hover {
    background: rgba(0, 86, 179, 0.4);
    transform: rotate(90deg);
}
.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.5);
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.coming-soon-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.coming-soon-message {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.countdown-item {
    background: rgba(0, 86, 179, 0.1);
    border: 1px solid rgba(0, 86, 179, 0.3);
    border-radius: 15px;
    padding: 20px;
    min-width: 100px;
    backdrop-filter: blur(10px);
}
.countdown-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    display: block;
}
.countdown-label {
    font-size: 16px;
    opacity: 0.8;
}
.coming-soon-button {
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 86, 179, 0.4);
}
.coming-soon-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.6);
}
/* Enhanced Simple Coming Soon Modal */
.simple-coming-soon-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.simple-coming-soon-modal.active {
    display: flex;
}
.simple-coming-soon-content {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(255, 107, 107, 0.1));
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.3);
    backdrop-filter: blur(10px);
}
.simple-coming-soon-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 86, 179, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--light);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.simple-coming-soon-close:hover {
    background: rgba(0, 86, 179, 0.4);
    transform: rotate(90deg);
}
.simple-coming-soon-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.5);
}
.simple-coming-soon-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.simple-coming-soon-message {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}
.simple-coming-soon-button {
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 86, 179, 0.4);
}
.simple-coming-soon-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.6);
}
/* Enhanced Contact Page - NEW UI */
.contact-page {
    display: none;
    min-height: 100vh;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.contact-page.active {
    display: block;
}
.contact-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(78, 205, 196, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 86, 179, 0.4), transparent),
        radial-gradient(1px 1px at 50px 160px, rgba(255, 107, 107, 0.3), transparent),
        radial-gradient(1px 1px at 130px 40px, rgba(78, 205, 196, 0.2), transparent),
        radial-gradient(2px 2px at 80px 10px, rgba(0, 86, 179, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.5;
    z-index: -1;
    animation: twinkle 10s infinite;
}
@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}
.contact-hero {
    height: 50vh;
    background: linear-gradient(rgba(10, 14, 39, 0.7), rgba(10, 14, 39, 0.9)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.contact-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.contact-hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent);
}
.contact-container {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}
.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.2);
    border-color: var(--primary);
}
.contact-info-card:hover::before {
    opacity: 0.1;
}
.contact-info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
    z-index: 1;
}
.contact-info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}
.contact-info-text {
    font-size: 18px;
    line-height: 1.6;
}
.contact-form-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    opacity: 0.05;
    z-index: -1;
}
.contact-form-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(78, 205, 196, 0.1));
    z-index: -1;
}
.contact-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}
.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}
.contact-submit-btn {
    width: 100%;
    margin-top: 20px;
}
/* Google Map Section */
.contact-map {
    margin-top: 30px;
}
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.2);
    height: 250px;
    position: relative;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}
/* Enhanced Form Styles */
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 86, 179, 0.3);
    border-radius: 10px;
    color: var(--light);
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-sizing: border-box; /* Added to ensure padding doesn't affect width */
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 86, 179, 0.3);
    background: rgba(255, 255, 255, 0.08);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px; /* Increased gap to prevent collapsing */
}
/* Enhanced Team Page Styles */
.team-page {
    display: none;
    min-height: 100vh;
    background: var(--dark);
    position: relative;
}
.team-page.active {
    display: block;
}
.team-hero {
    height: 50vh;
    background: linear-gradient(rgba(10, 14, 39, 0.7), rgba(10, 14, 39, 0.9)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.team-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.team-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.team-hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent);
}
.team-container {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.team-section {
    margin-bottom: 80px;
}
.team-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.team-member {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}
.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}
.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.3);
    border-color: var(--primary);
}
.team-member:hover::before {
    opacity: 0.1;
}
.member-avatar {
    display: flex;
    flex-direction: column;
    padding: 30px;
}
.member-photo {
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Circular photo for team members - IMPROVED */
.circular-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}
.circular-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.1);
}
.member-info {
    text-align: center;
}
.member-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light);
}
.member-role {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}
.member-bio {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}
.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.member-social a {
    width: 50px;
    height: 50px;
    background: rgba(0, 86, 179, 0.1);
    border: 1px solid rgba(0, 86, 179, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all 0.3s ease;
}
.member-social a:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
}
/* Department Teams Section */
.department-teams {
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.department-team-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.department-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.3);
    border-color: var(--primary);
}
.department-team-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
}
.department-team-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light);
}
.department-team-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 25px;
    flex-grow: 1;
}
.department-team-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}
.department-team-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.5);
}
/* Team Intro Section */
.team-intro {
    text-align: center;
    margin-bottom: 60px;
}
.team-intro-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.team-intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}
/* Team Projects Section */
.team-projects {
    margin-top: 60px;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.project-card {
    background: rgba(0, 86, 179, 0.1);
    border: 1px solid rgba(0, 86, 179, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.2);
    border-color: var(--primary);
}
.project-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
}
.project-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light);
}
.project-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dim);
}
/* Enhanced Gallery Page */
.gallery-page {
    display: none;
    min-height: 100vh;
    background: var(--dark);
    position: relative;
}
.gallery-page.active {
    display: block;
}
.gallery-hero {
    height: 50vh;
    background: linear-gradient(rgba(10, 14, 39, 0.7), rgba(10, 14, 39, 0.9)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.gallery-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.gallery-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.gallery-hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent);
}
.gallery-container {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-section {
    margin-bottom: 80px;
}
.gallery-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 300px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1);
}
.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.3);
}
.gallery-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}
/* Gallery Lightbox Modal */
.gallery-lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10003;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.gallery-lightbox-modal.active {
    display: flex;
}
.gallery-lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gallery-lightbox-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.gallery-lightbox-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.gallery-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: black;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}
.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: rotate(90deg);
}
.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}
.gallery-lightbox-prev,
.gallery-lightbox-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}
/* Enhanced Updates Page */
.updates-page {
    display: none;
    min-height: 100vh;
    background: var(--dark);
    position: relative;
}
.updates-page.active {
    display: block;
}
.updates-hero {
    height: 50vh;
    background: linear-gradient(rgba(10, 14, 39, 0.7), rgba(10, 14, 39, 0.9)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.updates-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.updates-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.updates-hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent);
}
.updates-container {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.updates-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.update-card {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.update-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.3);
    border-color: var(--primary);
}
.update-date {
    background: var(--gradient);
    color: white;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    flex-shrink: 0;
}
.update-day {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}
.update-month {
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
}
.update-content {
    padding: 30px;
    flex: 1;
}
.update-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}
.update-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
}
.update-read-more-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.update-read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
}
/* Enhanced About Page Styles */
.about-page {
    display: none;
    min-height: 100vh;
    background: var(--dark);
    position: relative;
}
.about-page.active {
    display: block;
}
.about-hero {
    height: 50vh;
    background: linear-gradient(rgba(10, 14, 39, 0.7), rgba(10, 14, 39, 0.9)), url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.about-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.about-hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent);
}
.about-container {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.about-intro {
    text-align: center;
    margin-bottom: 100px;
}
.about-intro-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}
.about-activities {
    margin-bottom: 100px;
}
.activities-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.activity-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}
.activity-card.reverse {
    direction: rtl;
}
.activity-card.reverse .activity-content {
    direction: ltr;
}
.activity-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.2);
    border: 1px solid rgba(0, 86, 179, 0.3);
}
.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.activity-card:hover .activity-image img {
    transform: scale(1.05);
}
.activity-content {
    padding: 20px;
}
.activity-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}
.activity-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}
.activity-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 86, 179, 0.1);
    border: 1px solid rgba(0, 86, 179, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}
.highlight-item:hover {
    background: rgba(0, 86, 179, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}
.highlight-item i {
    color: var(--primary);
    font-size: 1.2rem;
}
.highlight-item span {
    font-weight: 600;
}
/* Enhanced Events Page Styles */
.events-page {
    display: none;
    min-height: 100vh;
    background: var(--dark);
    position: relative;
}
.events-page.active {
    display: block;
}
.events-hero {
    height: 50vh;
    background: linear-gradient(rgba(10, 14, 39, 0.7), rgba(10, 14, 39, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.events-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.events-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.events-hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent);
}
.events-container {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
/* Enhanced Ride Hack Event Detail Page */
.ride-hack-page {
    display: none;
    min-height: 100vh;
    background: var(--dark);
    position: relative;
}
.ride-hack-page.active {
    display: block;
}
.ride-hack-hero {
    height: 50vh;
    background: linear-gradient(rgba(10, 14, 39, 0.7), rgba(10, 14, 39, 0.9)), url('ridehack.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.ride-hack-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ride-hack-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.ride-hack-hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent);
}
.event-date-badge {
    position: absolute;
    top: -60px;
    right: 20px;
    background: var(--gradient);
    color: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.4);
}
.date-day {
    font-size: 36px;
    display: block;
    line-height: 1;
}
.date-month {
    font-size: 20px;
    display: block;
}
.date-year {
    font-size: 16px;
    opacity: 0.8;
}
.ride-hack-container {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.ride-hack-intro {
    text-align: center;
    margin-bottom: 80px;
}
.ride-hack-intro-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ride-hack-intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}
.ride-hack-details {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.detail-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.detail-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.3);
    border-color: var(--primary);
}
.detail-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}
.detail-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}
/* Enhanced Prizes Section - UPDATED */
.prizes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.prize-card {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.3), rgba(0, 20, 60, 0.8));
    border: 2px solid;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    z-index: -1;
}
.prize-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.4);
}
.prize-card.first-prize {
    border-color: #FFD700;
}
.prize-card.second-third-prize {
    border-color: #C0C0C0;
}
.prize-card.fourth-fifth-prize {
    border-color: #CD7F32;
}
.prize-position {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.prize-card.first-prize .prize-position {
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}
.prize-card.second-third-prize .prize-position {
    color: #C0C0C0;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
}
.prize-card.fourth-fifth-prize .prize-position {
    color: #CD7F32;
    text-shadow: 0 0 15px rgba(205, 127, 50, 0.5);
}
.prize-amount {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.register-container {
    text-align: center;
}
.register-info {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.register-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
/* Enhanced Section for RIDE Hack Page */
.enhanced-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.enhanced-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('ridehack.jpeg') center/cover no-repeat;
    opacity: 0.05;
    z-index: -1;
}
.enhanced-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.3);
    border-color: var(--primary);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.benefit-card {
    background: rgba(0, 86, 179, 0.1);
    border: 1px solid rgba(0, 86, 179, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.2);
    border-color: var(--primary);
}
.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
}
.benefit-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light);
}
.benefit-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dim);
}
/* Timeline Section */
.timeline {
    position: relative;
    margin: 40px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    margin-bottom: 50px;
}
.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(0, 86, 179, 0.2);
    z-index: 2;
}
.timeline-content {
    position: relative;
    background: rgba(0, 86, 179, 0.1);
    border: 1px solid rgba(0, 86, 179, 0.2);
    border-radius: 15px;
    padding: 20px;
    width: calc(50% - 40px);
    box-sizing: border-box;
}
.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}
.timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}
.timeline-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
}
.timeline-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}
/* Responsive adjustments */
@media (min-width: 1024px) {
    /* Bigger text for hero title and subtitle in laptop view */
    .hero-title {
        font-size: 5.5rem;
    }
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    /* Ensure RIDE HACK button doesn't get cut off */
    .ride-hack-nav {
        padding: 10px 20px;
        white-space: nowrap;
    }
}
@media (max-width: 1024px) {
    .nav-links {
        gap: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-visual {
        height: 400px;
    }
    
    .about-cube {
        width: 250px;
        height: 250px;
    }
    
    .cube-face {
        width: 250px;
        height: 250px;
    }
    
    .cube-face:nth-child(1) { transform: rotateY(0deg) translateZ(125px); }
    .cube-face:nth-child(2) { transform: rotateY(90deg) translateZ(125px); }
    .cube-face:nth-child(3) { transform: rotateY(180deg) translateZ(125px); }
    .cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(125px); }
    .cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(125px); }
    .cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(125px); }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .activity-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .activity-card.reverse {
        direction: ltr;
    }
    
    .about-hero-title {
        font-size: 3.5rem;
    }
    
    .about-intro-title,
    .activities-title {
        font-size: 2.2rem;
    }
    
    .events-hero-title {
        font-size: 3.5rem;
    }
    
    .events-intro-title {
        font-size: 2.2rem;
    }
    
    /* Ride Hack Event Detail Page Responsive */
    .schedule-container {
        grid-template-columns: 1fr;
    }
    
    .prizes-container {
        grid-template-columns: 1fr;
    }
    
    .register-actions {
        flex-direction: column;
    }
    
    .register-actions .btn {
        width: 100%;
    }
    
    /* What We Do Section Responsive */
    .whatwedo-carousel-container {
        max-width: 90%;
        height: 300px;
    }
    
    .whatwedo-carousel-slide img {
        height: 270px;
    }
    
    /* Innovation Spotlight Section Responsive */
    .innovation-cards {
        grid-template-columns: 1fr;
    }
    
    /* Department Teams Responsive */
    .department-teams {
        grid-template-columns: 1fr;
    }
    
    /* Benefits Grid Responsive */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Timeline Responsive */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
    }
    
    /* Contact Additional Info Responsive */
    .contact-additional-info {
        grid-template-columns: 1fr;
    }
    
    /* Google Map Responsive */
    .contact-map {
        order: 3;
        margin-top: 40px;
    }
    
    .map-container {
        height: 250px;
    }
}
@media (max-width: 768px) {
    /* Sexy Mobile Header */
    nav {
        padding: 15px 15px;
        border-bottom: 1px solid rgba(0, 86, 179, 0.3);
        background: rgba(10, 14, 39, 0.98);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 5px 20px rgba(0, 86, 179, 0.2);
    }
    
    nav.scrolled {
        padding: 10px 15px;
        box-shadow: 0 5px 20px rgba(0, 86, 179, 0.3);
    }
    
    .nav-container {
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
        width: 45px;
        height: 45px;
        background: var(--gradient);
        box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
    }
    
    .menu-toggle span {
        width: 22px;
        height: 3px;
        background: white;
    }
    
    .menu-toggle span:nth-child(1) {
        top: 14px;
    }
    
    .menu-toggle span:nth-child(2) {
        top: 22px;
    }
    
    .menu-toggle span:nth-child(3) {
        top: 30px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        top: 22px;
        background: var(--dark);
    }
    
    .menu-toggle.active span:nth-child(3) {
        top: 22px;
        background: var(--dark);
    }
    
    /* Enhanced Hero Section for Mobile */
    .hero {
        height: 70vh;
        min-height: 600px;
    }
    
    .hero-video {
        object-position: center top;
    }
    
    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .carousel-overlay {
        background: rgba(10, 14, 39, 0.6);
    }
    
    .hero-content {
        padding: 0 20px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-location {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .about,
    .whatwedo,
    .team-page,
    .events,
    .gallery-page,
    .updates-page {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Make event card smaller and sexier on mobile */
    .event-card {
        padding: 20px;
        gap: 20px;
        border-radius: 15px;
        margin-bottom: 30px;
    }
    
    .event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .event-date {
        align-self: flex-start;
        padding: 15px;
        min-width: 100px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .event-date .day {
        font-size: 24px;
    }
    
    .event-date .month {
        font-size: 16px;
    }
    
    .event-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .event-meta-item {
        font-size: 14px;
    }
    
    .event-description {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .event-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .event-actions .btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    /* Event Countdown Timer Mobile - IMPROVED */
    .event-countdown-section {
        margin: 20px 0;
        padding: 20px;
        border-radius: 15px;
    }
    
    .countdown-title {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .countdown-timer {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 15px;
        background: rgba(0, 86, 179, 0.15);
        border: 1px solid rgba(0, 86, 179, 0.3);
        border-radius: 12px;
        margin-bottom: 10px;
    }
    
    .countdown-value {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 8px;
        line-height: 1;
        background: linear-gradient(135deg, #00d4ff, #0099ff);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
        letter-spacing: 2px;
    }
    
    .countdown-label {
        font-size: 16px;
        font-weight: 600;
        color: #00d4ff;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    /* Innovation Spotlight Section Mobile */
    .innovation-spotlight {
        padding: 40px 20px;
        margin-top: 40px;
    }
    
    .innovation-spotlight-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .innovation-spotlight-subtitle {
        font-size: 16px;
    }
    
    .innovation-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .innovation-card {
        padding: 20px;
    }
    
    .innovation-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .innovation-card-title {
        font-size: 20px;
    }
    
    .innovation-card-description {
        font-size: 14px;
    }
    
    /* Enhanced Footer for Mobile */
    footer {
        padding: 40px 15px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-column {
        margin-bottom: 15px;
        padding: 15px;
        background: rgba(0, 86, 179, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(0, 86, 179, 0.1);
    }
    
    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-logo {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .footer-description {
        margin-bottom: 15px;
        font-size: 14px;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .contact-item p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .footer-links li {
        margin: 0;
    }
    
    .footer-links a {
        font-size: 14px;
        padding: 5px 10px;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .copyright {
        margin-top: 20px;
        font-size: 12px;
        padding-top: 15px;
    }
    
    .coming-soon-content {
        padding: 40px 25px;
    }
    
    .coming-soon-title {
        font-size: 36px;
    }
    
    .coming-soon-message {
        font-size: 16px;
    }
    
    .countdown-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-value {
        font-size: 28px;
    }
    
    /* Enhanced Contact Page for Mobile */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 15px;
    }
    
    .contact-info-section {
        order: 2;
    }
    
    .contact-form-section {
        order: 1;
        padding: 30px 20px;
    }
    
    .contact-info-card {
        padding: 20px;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .contact-form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .contact-submit-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    /* Full width banners for inner pages on mobile */
    .about-hero,
    .events-hero,
    .gallery-hero,
    .updates-hero,
    .contact-hero,
    .team-hero,
    .ride-hack-hero {
        width: 100vw;
        margin-left: -20px;
        border-radius: 0;
        background-position: center center;
        background-size: cover;
        height: 40vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .about-hero-content,
    .events-hero-content,
    .gallery-hero-content,
    .updates-hero-content,
    .contact-hero-content,
    .team-hero-content,
    .ride-hack-hero-content {
        padding: 0 20px;
        padding-top: 80px;
        text-align: center;
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
    }
    
    .contact-hero {
        height: 35vh;
    }
    
    .contact-hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .team-hero {
        height: 40vh;
    }
    
    .team-hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .team-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .team-section-title {
        font-size: 1.8rem;
    }
    
    .member-avatar {
        flex-direction: column;
        padding: 15px;
    }
    
    .member-photo {
        width: 120px;
        height: 120px;
    }
    
    .member-name {
        font-size: 18px;
    }
    
    .member-role {
        font-size: 14px;
    }
    
    .member-bio {
        font-size: 13px;
    }
    
    /* Department Teams Mobile */
    .department-teams {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .department-team-card {
        padding: 30px 20px;
    }
    
    .department-team-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .department-team-title {
        font-size: 20px;
    }
    
    .department-team-description {
        font-size: 14px;
    }
    
    .department-team-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .gallery-hero {
        height: 35vh;
    }
    
    .gallery-hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .gallery-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-section-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    /* Gallery Lightbox Mobile - IMPROVED */
    .gallery-lightbox-image-container {
        height: 50vh;
    }
    
    .gallery-lightbox-image {
        max-width: 95%;
        max-height: 95%;
    }
    
    .updates-hero {
        height: 35vh;
    }
    
    .updates-hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .updates-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .back-button-container {
        bottom: 20px;
        left: 20px;
    }
    
    .sexy-back-button {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .about-hero {
        height: 40vh;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-intro-title,
    .activities-title {
        font-size: 1.6rem;
    }
    
    .activity-title {
        font-size: 1.4rem;
    }
    
    .activity-highlights {
        justify-content: center;
    }
    
    .highlight-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .events-hero {
        height: 40vh;
    }
    
    .events-hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .events-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .events-intro-title {
        font-size: 1.6rem;
    }
    
    .event-title {
        font-size: 1.3rem;
    }
    
    .event-countdown .countdown-value {
        font-size: 1.2rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-text {
        font-size: 0.9rem;
    }
    
    /* Add starry background to inner pages */
    .about-page,
    .events-page,
    .gallery-page,
    .updates-page,
    .team-page,
    .contact-page,
    .ride-hack-page,
    .webDevTeamPage,
    .contentTeamPage {
        position: relative;
    }
    
    .about-page::before,
    .events-page::before,
    .gallery-page::before,
    .updates-page::before,
    .team-page::before,
    .contact-page::before,
    .ride-hack-page::before,
    .webDevTeamPage::before,
    .contentTeamPage::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
            radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.6), transparent),
            radial-gradient(1px 1px at 50px 160px, rgba(255, 255, 255, 0.9), transparent),
            radial-gradient(1px 1px at 130px 40px, rgba(255, 255, 255, 0.7), transparent),
            radial-gradient(2px 2px at 80px 10px, rgba(255, 255, 255, 0.8), transparent);
        background-repeat: repeat;
        background-size: 200px 200px;
        opacity: 0.3;
        z-index: -1;
        animation: twinkle 10s infinite;
    }
    
    /* Updates page updates list for mobile */
    .updates-list {
        gap: 15px;
    }
    
    .update-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        border-radius: 15px;
        gap: 15px;
    }
    
    .update-date {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px 15px;
        border-radius: 10px;
        min-width: auto;
        margin-bottom: 10px;
    }
    
    .update-day {
        font-size: 20px;
    }
    
    .update-month {
        font-size: 14px;
    }
    
    .update-content {
        padding: 0;
    }
    
    .update-title {
        font-size: 18px;
    }
    
    .update-description {
        font-size: 14px;
    }
    
    /* Center text in hero banners for mobile */
    .about-hero-content,
    .events-hero-content,
    .gallery-hero-content,
    .updates-hero-content,
    .contact-hero-content,
    .team-hero-content,
    .ride-hack-hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        text-align: center;
        padding-top: 60px;
    }
    
    /* Video adjustments for mobile */
    .hero-video {
        object-fit: cover;
        object-position: center;
    }
    
    /* Ride Hack Event Detail Page Mobile */
    .ride-hack-hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .ride-hack-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .event-date-badge {
        top: -40px;
        right: 10px;
        padding: 12px;
    }
    
    .date-day {
        font-size: 24px;
    }
    
    .date-month {
        font-size: 14px;
    }
    
    .ride-hack-intro-title {
        font-size: 1.6rem;
    }
    
    .detail-title {
        font-size: 1.3rem;
    }
    
    .schedule-day {
        padding: 20px;
    }
    
    .schedule-day-title {
        font-size: 1.2rem;
    }
    
    .schedule-time {
        min-width: 70px;
        font-size: 12px;
    }
    
    .schedule-activity {
        font-size: 12px;
    }
    
    .prize-position {
        font-size: 1.3rem;
    }
    
    .prize-amount {
        font-size: 1rem;
    }
    
    .register-info {
        font-size: 0.9rem;
    }
    
    /* Benefits Grid Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Timeline Mobile */
    .timeline-item {
        margin-bottom: 30px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-title {
        font-size: 16px;
    }
    
    .timeline-date {
        font-size: 12px;
    }
    
    .timeline-desc {
        font-size: 14px;
    }
    
    /* Ride Hack Popup Modal Mobile */
    .ridehack-popup-content {
        padding: 25px 15px;
        max-width: 90%;
    }
    
    .ridehack-popup-title {
        font-size: 32px;
    }
    
    .ridehack-popup-subtitle {
        font-size: 16px;
    }
    
    .ridehack-popup-details {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .ridehack-popup-date,
    .ridehack-popup-location,
    .ridehack-popup-prize {
        font-size: 14px;
    }
    
    .ridehack-popup-description {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .ridehack-popup-highlights {
        gap: 8px;
    }
    
    .ridehack-popup-highlights .highlight-item {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .ridehack-popup-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .ridehack-popup-register,
    .ridehack-popup-learn {
        width: 100%;
        font-size: 14px;
    }
    
    /* Registration Modal Mobile */
    .registration-content {
        padding: 40px 25px;
        max-width: 90%;
    }
    
    .registration-title {
        font-size: 28px;
    }
    
    .registration-subtitle {
        font-size: 16px;
    }
    
    .registration-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .registration-form .form-group input {
        padding: 12px;
        font-size: 14px;
    }
    
    .registration-submit-btn {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    /* Registration Success Modal Mobile */
    .registration-success-content {
        padding: 40px 25px;
        max-width: 90%;
    }
    
    .registration-success-title {
        font-size: 24px;
    }
    
    .registration-success-subtitle {
        font-size: 16px;
    }
    
    .registration-success-button {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    /* Gallery Lightbox Mobile */
    .gallery-lightbox-content {
        max-width: 95%;
    }
    
    .gallery-lightbox-image-container {
        height: 40vh;
    }
    
    .gallery-lightbox-nav {
        padding: 0 10px;
    }
    
    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 35px;
        height: 35px;
    }
    
    /* What We Do Section for mobile - IMPROVED */
    .whatwedo-carousel-container {
        max-width: 95%;
        margin: 0 auto 40px;
        height: 200px;
    }
    
    .whatwedo-carousel-track {
        animation: carouselSlide 7200s linear infinite; /* Changed to match desktop speed (2 hours) */
    }
    
    .whatwedo-carousel-slide {
        padding: 8px;
    }
    
    .whatwedo-carousel-slide img {
        height: 180px;
        border-radius: 10px;
    }
    
    /* Team member photos for mobile - IMPROVED */
    .circular-photo {
        width: 120px;
        height: 120px;
    }
    
    .circular-photo img {
        object-position: center top;
        transform: scale(1.15);
    }
    
    /* Team Projects Section Mobile */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card {
        padding: 15px;
    }
    
    .project-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .project-title {
        font-size: 16px;
    }
    
    .project-description {
        font-size: 12px;
    }
    
    /* Department Teams for very small screens */
    .department-teams {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .department-team-card {
        padding: 20px 15px;
    }
    
    .department-team-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .department-team-title {
        font-size: 18px;
    }
    
    .department-team-description {
        font-size: 13px;
    }
    
    .department-team-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    /* Google Map for very small screens */
    .contact-map {
        margin-top: 20px;
        order: 3;
    }
    
    .map-container {
        height: 150px;
    }
}
@media (max-width: 480px) {
    nav {
        padding: 12px 10px;
        border-radius: 0 0 15px 15px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .menu-toggle span {
        width: 20px;
        height: 3px;
    }
    
    .menu-toggle span:nth-child(1) {
        top: 12px;
    }
    
    .menu-toggle span:nth-child(2) {
        top: 20px;
    }
    
    .menu-toggle span:nth-child(3) {
        top: 28px;
    }
    
    span:nth-child(1) .menu-toggle.active {
        top: 20px;
    }
    
    .menu-toggle.active span:nth-child(3) {
        top: 20px;
    }
    
    .hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-cube {
        width: 200px;
        height: 200px;
    }
    
    .cube-face {
        width: 200px;
        height: 200px;
        font-size: 18px;
    }
    
    .cube-face:nth-child(1) { transform: rotateY(0deg) translateZ(100px); }
    .cube-face:nth-child(2) { transform: rotateY(90deg) translateZ(100px); }
    .cube-face:nth-child(3) { transform: rotateY(180deg) translateZ(100px); }
    .cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(100px); }
    .cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(100px); }
    .cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(100px); }
    
    footer {
        padding: 30px 10px 15px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-column {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .contact-item {
        gap: 8px;
    }
    
    .contact-item p {
        font-size: 13px;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .footer-links a {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .social-icons {
        gap: 8px;
        margin-top: 10px;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .copyright {
        margin-top: 15px;
        font-size: 11px;
        padding-top: 15px;
    }
    
    .coming-soon-content {
        padding: 25px 15px;
    }
    
    .coming-soon-title {
        font-size: 28px;
    }
    
    .coming-soon-message {
        font-size: 14px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px;
    }
    
    .countdown-value {
        font-size: 24px;
    }
    
    .contact-hero {
        height: 30vh;
    }
    
    .contact-hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .contact-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-info-card {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-form-section {
        padding: 25px 15px;
    }
    
    .contact-form-title {
        font-size: 18px;
    }
    
    .team-hero {
        height: 35vh;
    }
    
    .team-hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .team-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .team-section-title {
        font-size: 1.6rem;
    }
    
    .member-avatar {
        padding: 12px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
    
    .member-name {
        font-size: 16px;
    }
    
    .member-role {
        font-size: 13px;
    }
    
    .member-bio {
        font-size: 12px;
    }
    
    .gallery-hero {
        height: 30vh;
    }
    
    .gallery-hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .gallery-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .gallery-section-title {
        font-size: 1.6rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .updates-hero {
        height: 30vh;
    }
    
    .updates-hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .updates-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .back-button-container {
        bottom: 15px;
        left: 15px;
    }
    
    .sexy-back-button {
        padding: 10px 15px;
        font-size: 11px;
    }
    
    .about-hero {
        height: 35vh;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .about-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .about-intro-title,
    .activities-title {
        font-size: 1.4rem;
    }
    
    .activity-title {
        font-size: 1.2rem;
    }
    
    .highlight-item {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .events-hero {
        height: 35vh;
    }
    
    .events-hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .events-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .events-intro-title {
        font-size: 1.4rem;
    }
    
    .event-title {
        font-size: 1.2rem;
    }
    
    .event-countdown .countdown-value {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.2rem;
    }
    
    .cta-text {
        font-size: 0.8rem;
    }
    
    /* Even smaller event card on very small screens */
    .event-card {
        padding: 15px;
        gap: 12px;
    }
    
    .event-date {
        padding: 10px;
        min-width: 80px;
    }
    
    .event-date .day {
        font-size: 18px;
    }
    
    .event-date .month {
        font-size: 14px;
    }
    
    .event-title {
        font-size: 18px;
    }
    
    .event-description {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .event-actions .btn {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    /* Event Countdown Timer for very small screens - IMPROVED */
    .event-countdown-section {
        padding: 15px;
        margin: 15px 0;
    }
    
    .countdown-title {
        font-size: 18px;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .countdown-value {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 6px;
        line-height: 1;
        background: linear-gradient(135deg, #00d4ff, #0099ff);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
        letter-spacing: 2px;
    }
    
    .countdown-label {
        font-size: 11px;
        font-weight: 600;
        color: #00d4ff;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Innovation Spotlight for very small screens */
    .innovation-spotlight {
        padding: 30px 15px;
    }
    
    .innovation-spotlight-title {
        font-size: 24px;
    }
    
    .innovation-card {
        padding: 15px;
    }
    
    .innovation-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .innovation-card-title {
        font-size: 18px;
    }
    
    .innovation-card-description {
        font-size: 13px;
    }
    
    /* Further adjust banner titles for very small screens */
    .about-hero-title,
    .events-hero-title,
    .gallery-hero-title,
    .updates-hero-title,
    .contact-hero-title,
    .team-hero-title,
    .ride-hack-hero-title {
        font-size: 1.6rem;
        padding-top: 60px;
        line-height: 1.2;
    }
    
    .about-hero-subtitle,
    .events-hero-subtitle,
    .gallery-hero-subtitle,
    .updates-hero-subtitle,
    .contact-hero-subtitle,
    .team-hero-subtitle,
    .ride-hack-hero-subtitle {
        font-size: 0.8rem;
    }
    
    /* Updates page update cards for very small screens */
    .update-card {
        padding: 12px;
    }
    
    .update-date {
        padding: 8px;
    }
    
    .update-day {
        font-size: 16px;
    }
    
    .update-month {
        font-size: 12px;
    }
    
    .update-content {
        padding: 12px;
    }
    
    .update-title {
        font-size: 16px;
    }
    
    .update-description {
        font-size: 12px;
    }
    
    /* Ensure text is centered in hero banners for very small screens */
    .about-hero-content,
    .events-hero-content,
    .gallery-hero-content,
    .updates-hero-content,
    .contact-hero-content,
    .team-hero-content,
    .ride-hack-hero-content {
        padding-top: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        text-align: center;
    }
    
    /* Video adjustments for very small screens */
    .hero-video {
        object-fit: cover;
        object-position: center top;
    }
    
    /* Ride Hack Event Detail Page for very small screens */
    .ride-hack-intro-title {
        font-size: 1.4rem;
    }
    
    .detail-title {
        font-size: 1.1rem;
    }
    
    .schedule-day {
        padding: 15px;
    }
    
    .schedule-day-title {
        font-size: 1rem;
    }
    
    .schedule-time {
        min-width: 60px;
        font-size: 11px;
    }
    
    .schedule-activity {
        font-size: 11px;
    }
    
    .prize-position {
        font-size: 1.1rem;
    }
    
    .prize-amount {
        font-size: 0.9rem;
    }
    
    .register-info {
        font-size: 0.8rem;
    }
    
    /* Ride Hack Popup Modal for very small screens */
    .ridehack-popup-content {
        padding: 20px 12px;
        max-width: 95%;
    }
    
    .ridehack-popup-title {
        font-size: 24px;
    }
    
    .ridehack-popup-subtitle {
        font-size: 14px;
    }
    
    .ridehack-popup-icon {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }
    
    .ridehack-popup-description {
        font-size: 13px;
    }
    
    .ridehack-popup-highlights .highlight-item {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    /* Registration Modal for very small screens */
    .registration-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .registration-title {
        font-size: 24px;
    }
    
    .registration-subtitle {
        font-size: 14px;
    }
    
    .registration-form .form-group input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .registration-submit-btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    /* Registration Success Modal for very small screens */
    .registration-success-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .registration-success-title {
        font-size: 24px;
    }
    
    .registration-success-subtitle {
        font-size: 14px;
    }
    
    .registration-success-button {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    /* Gallery Lightbox for very small screens */
    .gallery-lightbox-content {
        max-width: 98%;
    }
    
    .gallery-lightbox-image-container {
        height: 35vh;
    }
    
    .gallery-lightbox-nav {
        padding: 0 5px;
    }
    
    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 30px;
        height: 30px;
    }
    
    /* What We Do Section for very small screens - IMPROVED */
    .whatwedo-carousel-container {
        max-width: 95%;
        margin: 0 auto 30px;
        height: 150px;
    }
    
    .whatwedo-carousel-track {
        animation: carouselSlide 7200s linear infinite; /* Changed to match desktop speed (2 hours) */
    }
    
    .whatwedo-carousel-slide {
        padding: 6px;
    }
    
    .whatwedo-carousel-slide img {
        height: 140px;
        border-radius: 8px;
    }
    
    /* Enhanced Update Section for Mobile */
    .update-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        border-radius: 15px;
        gap: 15px;
    }
    
    .update-date {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px 15px;
        border-radius: 10px;
        min-width: auto;
        margin-bottom: 10px;
    }
    
    .update-day {
        font-size: 24px;
        font-weight: 800;
    }
    
    .update-month {
        font-size: 16px;
        font-weight: 600;
    }
    
    .update-content {
        padding: 0;
    }
    
    .update-title {
        font-size: 18px;
        margin-bottom: 10px;
        color: var(--primary);
    }
    
    .update-description {
        font-size: 14px;
        line-height: 1.5;
        color: var(--text-light);
    }
    
    /* Enhanced Event Date Styling for Mobile */
    .event-date {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: var(--gradient);
        color: white;
        border-radius: 15px;
        padding: 15px;
        min-width: 80px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .event-date::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
        z-index: 1;
    }
    
    .event-date .day {
        font-size: 22px;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 5px;
        position: relative;
        z-index: 2;
    }
    
    .event-date .month {
        font-size: 14px;
        font-weight: 600;
        position: relative;
        z-index: 2;
    }
    
    /* Enhanced Countdown Timer for Mobile */
    .countdown-item {
        background: rgba(0, 86, 179, 0.15);
        border: 1px solid rgba(0, 86, 179, 0.3);
        border-radius: 12px;
        padding: 15px;
        min-width: 80px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .countdown-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
        z-index: 1;
    }
    
    .countdown-value {
        font-size: 32px;
        font-weight: 800;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 8px;
        position: relative;
        z-index: 2;
        background: linear-gradient(135deg, #00d4ff, #0099ff);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
        letter-spacing: 2px;
    }
    
    .countdown-label {
        font-size: 12px;
        font-weight: 600;
        color: var(--text-dim);
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        z-index: 2;
    }
    
    /* Enhanced Team Section for Mobile */
    .team-member {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        border-radius: 15px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        transition: all 0.3s ease;
    }
    
    .team-member:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 86, 179, 0.3);
        border-color: var(--primary);
    }
    
    .member-avatar {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid var(--primary);
        position: relative;
        box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
        background: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .member-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        transform: scale(1.2);
        transition: transform 0.5s ease;
    }
    
    .team-member:hover .member-photo img {
        transform: scale(1.25);
    }
    
    .member-info {
        width: 100%;
    }
    
    .member-name {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
        color: var(--light);
    }
    
    .member-role {
        color: var(--primary);
        margin-bottom: 15px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .member-bio {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
        opacity: 0.8;
    }
    
    .member-social {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    
    .member-social a {
        width: 40px;
        height: 40px;
        background: rgba(0, 86, 179, 0.1);
        border: 1px solid rgba(0, 86, 179, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--light);
        transition: all 0.3s ease;
    }
    
    .member-social a:hover {
        background: var(--gradient);
        border-color: transparent;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
    }
    
    /* Hexagon shape adjustments for very small screens */
    .hexagon-shape {
        width: 100px;
        height: 100px;
    }
    
    /* Circular photo adjustments for very small screens - IMPROVED */
    .circular-photo {
        width: 80px;
        height: 80px;
    }
    
    .circular-photo img {
        object-position: center top;
        transform: scale(1.25);
    }
    
    /* Team Projects for very small screens */
    .project-card {
        padding: 15px;
    }
    
    .project-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .project-title {
        font-size: 16px;
    }
    
    .project-description {
        font-size: 12px;
    }
    
    /* Department Teams for very small screens */
    .department-teams {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .department-team-card {
        padding: 20px 15px;
    }
    
    .department-team-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .department-team-title {
        font-size: 18px;
    }
    
    .department-team-description {
        font-size: 13px;
    }
    
    .department-team-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    /* Google Map for very small screens */
    .contact-map {
        margin-top: 20px;
        order: 3;
    }
    
    .map-container {
        height: 150px;
    }
}
