
        /* CSS Variables - Tech Theme */
        :root {
            --dark-blue: #1a365d;
            --darker-blue: #0f2043;
            --accent-orange: #ff7846;
            --light-orange: #fff0eb;
            --light-blue: #e9f0fa;
            --white: #ffffff;
            --black: #0f0f0f;
            --transition-fast: all 0.3s ease;
            --transition-medium: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            --transition-slow: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            --shadow-light: 8px 8px 0px rgba(26, 54, 93, 0.2);
            --shadow-medium: 12px 12px 0px rgba(26, 54, 93, 0.3);
            --shadow-heavy: 16px 16px 0px rgba(26, 54, 93, 0.4);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><rect x="8" y="8" width="8" height="8" fill="%23ff7846" opacity="0.8"/></svg>'), auto;
        }

        /* Preloader Styles */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0f2043;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out;
        }

        .preloader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .preloader-content {
            text-align: center;
            position: relative;
        }

        .preloader-logo {
            width: 120px;
            height: 120px;
            margin-bottom: 30px;
            animation: pulse 1.5s infinite ease-in-out;
            border-radius: 50%;
            background: linear-gradient(145deg, #1a365d, #0f2043);
            box-shadow: 0 8px 32px rgba(255, 120, 70, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }

        .preloader-logo img {
            max-width: 100%;
            max-height: 100%;
            border-radius: 50%;
        }

        .preloader-text {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 25px;
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: 2px;
        }

        .progress-container {
            width: 300px;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
            margin: 0 auto;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #ff7846, #ff9e7d);
            border-radius: 4px;
            transition: width 0.3s ease;
        }

        .loading-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 8px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: #ff7846;
            border-radius: 50%;
            animation: bounce 1.5s infinite ease-in-out;
        }

        .dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes pulse {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 120, 70, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(255, 120, 70, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 120, 70, 0); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            line-height: 1.6;
            position: relative;
            -webkit-text-size-adjust: 100%;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Libre Baskerville', serif;
            font-weight: 700;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: var(--white);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--dark-blue);
            border: 3px solid var(--white);
            border-radius: 0;
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 12px 0;
            font-size: 0.9rem;
        }

        .top-bar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .top-contact {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .top-contact a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-contact a:hover {
            color: var(--accent-orange);
        }

        .app-download {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .app-download a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition-fast);
        }

        .app-download a:hover {
            color: var(--accent-orange);
        }

        /* Header & Navigation */
        header {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 25px 0 20px;
            transition: var(--transition-medium);
            display: flex;
            justify-content: center;
            background-color: var(--white);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
        }

        header.scrolled {
            padding: 15px 0 10px;
            box-shadow: 5px 5px 0px rgba(26, 54, 93, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 90%;
            max-width: 1400px;
            position: relative;
        }

        .logo {
            font-family: 'Libre Baskerville', serif;
            font-size: 2.8rem;
            font-weight: 700;
            text-decoration: none;
            color: var(--dark-blue);
            position: relative;
            line-height: 0.9;
            transform: rotate(-1deg);
            transition: var(--transition-fast);
            display: flex;
            flex-direction: column;
        }

        .logo:hover {
            transform: rotate(0deg);
            color: var(--accent-orange);
        }

        .logo span {
            color: var(--accent-orange);
            font-size: 1rem;
            transform: rotate(1deg);
            margin-top: -5px;
            letter-spacing: 2px;
        }

        .logo img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            animation: pulse 1.5s infinite ease-in-out;
            }
            @keyframes pulse {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 120, 70, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(255, 120, 70, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 120, 70, 0); }
            }
            @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
            }

        

        nav {
            position: relative;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 5px;
            flex-wrap: wrap;
            max-width: 950px;
            justify-content: flex-end;
        }

        nav ul li {
            transform: translateY(0);
            opacity: 1;
        }

        nav ul li a {
            color: var(--dark-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 10px 15px;
            border: 3px solid var(--dark-blue);
            display: block;
            transform: rotate(-1deg);
            transition: var(--transition-fast);
            background-color: var(--white);
            margin: 4px;
        }

        nav ul li a:hover {
            background-color: var(--dark-blue);
            color: var(--white);
            transform: rotate(0deg) translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .enroll-btn {
            background-color: var(--accent-orange) !important;
            color: var(--white) !important;
            border-color: var(--accent-orange) !important;
        }

        .enroll-btn:hover {
            background-color: var(--dark-blue) !important;
            border-color: var(--dark-blue) !important;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: 3px solid var(--dark-blue);
            color: var(--dark-blue);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
            position: absolute;
            right: 0;
            top: 10px;
            z-index: 1001;
        }

        /* Gallery Section Styles */
        .gallery-hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .gallery-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 120, 70, 0.1), rgba(26, 54, 93, 0.3));
            z-index: 1;
        }

        .gallery-hero-content {
            position: relative;
            z-index: 2;
            padding: 0 20px;
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-hero-content h1 {
            font-size: 4.5rem;
            margin-bottom: 20px;
            transform: rotate(-2deg);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .gallery-hero-content p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
            transform: rotate(1deg);
        }

        .gallery-wrapper {
            background: var(--black);
            color: var(--white);
            padding: 100px 0;
            position: relative;
        }

        .gallery-container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            padding: 0 20px;
        }

        .section-title h2 {
            font-size: 4rem;
            color: var(--white);
            display: inline-block;
            position: relative;
            transform: rotate(-2deg);
            background: var(--black);
            padding: 0 30px;
            border: 4px solid var(--accent-orange);
            box-shadow: var(--shadow-medium);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border: 6px solid var(--accent-orange);
            box-shadow: var(--shadow-medium);
            transform: rotate(-1deg);
            transition: var(--transition-medium);
            height: 300px;
        }

        .gallery-item:hover {
            transform: rotate(0deg) translateY(-15px);
            box-shadow: var(--shadow-heavy);
            border-color: var(--white);
        }

        .gallery-item:nth-child(3n) {
            transform: rotate(2deg);
        }

        .gallery-item:nth-child(3n):hover {
            transform: rotate(0deg) translateY(-15px);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .gallery-item:hover img {
            transform: scale(1.15);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 120, 70, 0.2);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        .gallery-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
            padding: 0 20px;
        }

        .filter-btn {
            padding: 12px 25px;
            background: var(--dark-blue);
            color: var(--white);
            border: 3px solid var(--dark-blue);
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-fast);
            transform: rotate(-1deg);
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--accent-orange);
            border-color: var(--accent-orange);
            transform: rotate(0deg);
        }
        
        /* Video Section Styles */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .video-item {
            position: relative;
            overflow: hidden;
            border: 6px solid var(--accent-orange);
            box-shadow: var(--shadow-medium);
            transform: rotate(-1deg);
            transition: var(--transition-medium);
            height: 250px;
            cursor: pointer;
        }

        .video-item:hover {
            transform: rotate(0deg) translateY(-15px);
            box-shadow: var(--shadow-heavy);
            border-color: var(--white);
        }

        .video-item:nth-child(3n) {
            transform: rotate(2deg);
        }

        .video-item:nth-child(3n):hover {
            transform: rotate(0deg) translateY(-15px);
        }

        .video-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .video-item:hover img {
            transform: scale(1.15);
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition-fast);
        }

        .video-item:hover .video-overlay {
            opacity: 1;
            background: rgba(0, 0, 0, 0.7);
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255, 120, 70, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-fast);
        }

        .play-button i {
            font-size: 2.5rem;
            color: var(--white);
            margin-left: 8px;
        }

        .video-item:hover .play-button {
            transform: scale(1.1);
            background: rgba(255, 120, 70, 1);
        }

        .video-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            transform: translateY(100%);
            transition: var(--transition-medium);
        }

        .video-item:hover .video-info {
            transform: translateY(0);
        }

        .video-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .video-description {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Lightbox Styles */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border: 5px solid var(--accent-orange);
            box-shadow: 0 0 30px rgba(255, 120, 70, 0.5);
        }

        .lightbox-video {
            width: 800px;
            height: 450px;
            max-width: 90%;
            max-height: 70vh;
            border: 5px solid var(--accent-orange);
            box-shadow: 0 0 30px rgba(255, 120, 70, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 30px;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            z-index: 10;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-fast);
        }

        .lightbox-close:hover {
            background: var(--accent-orange);
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--white);
            font-size: 2rem;
            width: 60px;
            height: 60px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .lightbox-nav:hover {
            background: var(--accent-orange);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }
        
        /* Footer */
        footer {
            background: var(--darker-blue);
            color: var(--white);
            padding: 100px 50px 50px;
            position: relative;
            z-index: 10;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-bottom: 80px;
        }

        .footer-col h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            transform: rotate(-2deg);
            display: inline-block;
            border: 4px solid var(--white);
            padding: 10px 20px;
        }

        .footer-about p {
            margin-bottom: 30px;
            font-weight: 300;
            font-size: 1rem;
            transform: rotate(1deg);
            max-width: 300px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 20px;
            transform: rotate(-1deg);
        }

        .footer-links a {
            color: var(--light-orange);
            text-decoration: none;
            transition: var(--transition-fast);
            font-weight: 500;
            font-size: 1rem;
            padding: 8px 12px;
            border: 3px solid transparent;
            display: inline-block;
        }

        .footer-links a:hover {
            border-color: var(--accent-orange);
            color: var(--accent-orange);
            transform: rotate(0deg) translateX(10px);
        }

        .footer-hours {
            display: flex;
            flex-direction: column;
            gap: 15px;
            transform: none;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 3px solid rgba(255, 255, 255, 0.1);
            transform: rotate(-1deg);
        }

        .hours-day {
            opacity: 0.9;
            font-weight: 500;
        }

        .hours-time {
            font-weight: 700;
            color: var(--accent-orange);
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            max-width: 250px;
        }

        .social-item {
            width: 50px;
            height: 50px;
            border: 4px solid var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            transition: var(--transition-medium);
            transform: rotate(-3deg);
        }

        .social-item:hover {
            background: var(--accent-orange);
            color: var(--white);
            transform: rotate(0deg) translateY(-10px);
            box-shadow: var(--shadow-medium);
            border-color: var(--accent-orange);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 4px solid rgba(255, 255, 255, 0.1);
            font-size: 1rem;
            opacity: 0.8;
            font-weight: 500;
            letter-spacing: 1px;
            transform: rotate(1deg);
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 50px;
            right: 50px;
            width: 70px;
            height: 70px;
            background: var(--dark-blue);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: var(--shadow-medium);
            cursor: pointer;
            transition: var(--transition-medium);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) rotate(-3deg);
            border: 4px solid var(--white);
            margin-bottom: 65px;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) rotate(0deg);
        }

        .scroll-to-top:hover {
            background: var(--accent-orange);
            transform: translateY(-10px) rotate(0deg) scale(1.1);
            box-shadow: var(--shadow-heavy);
        }

        /* Animated Border Elements */
        .animated-border {
            position: absolute;
            border: 3px solid var(--accent-orange);
            pointer-events: none;
            z-index: 1;
            opacity: 0.7;
            animation: borderFloat 8s infinite ease-in-out;
        }

        @keyframes borderFloat {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(10px, 10px) rotate(5deg);
            }
            50% {
                transform: translate(0, 20px) rotate(0deg);
            }
            75% {
                transform: translate(-10px, 10px) rotate(-5deg);
            }
        }

        /* Animation for page load */
        .slide-up {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-up.appear {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* CSS for Social Media Icons - Simplified to prevent blurring */
        .floating-social {
            position: fixed;
            left: 5px;
            bottom: 30px;
            z-index: 998;
            display: flex;
            flex-direction: column;
            gap: 12px;
            /* Removed all transform-related properties that cause blurring */
        }

        .social-icon {
            position: relative;
            width: 45px;
            height: 45px;
            border: 3px solid var(--dark-blue);
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-blue);
            font-size: 1.2rem;
            text-decoration: none;
            /* Removed transform properties to prevent blurring */
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
            box-shadow: var(--shadow-light);
        }

        .social-icon:hover {
            background-color: var(--accent-orange);
            color: var(--white);
            border-color: var(--accent-orange);
            /* Removed transform to prevent blurring */
        }

        .social-icon.youtube:hover {
            background: #FF0000;
            color: var(--white);
            border-color: #FF0000;
        }

        .social-icon.instagram:hover {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: var(--white);
            border-color: #dc2743;
        }

        .social-icon.twitter:hover {
            background: #1DA1F2;
            color: var(--white);
            border-color: #1DA1F2;
        }

        .social-icon.facebook:hover {
            background: #4267B2;
            color: var(--white);
            border-color: #4267B2;
        }

        .social-icon.whatsapp:hover {
            background: #25D366;
            color: var(--white);
            border-color: #25D366;
        }

        .tooltip {
            position: absolute;
            left: 55px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--dark-blue);
            color: var(--white);
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-fast);
            box-shadow: var(--shadow-light);
        }

        .tooltip::before {
            content: '';
            position: absolute;
            left: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-right: 6px solid var(--dark-blue);
        }

        .social-icon:hover .tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateY(-50%) translateX(5px);
        }

        /* Animation for initial appearance */
        @keyframes socialBounceIn {
            0% {
                opacity: 0;
                transform: translateY(50px) rotate(-5deg);
            }
            60% {
                transform: translateY(-5px) rotate(1deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) rotate(-2deg);
            }
        }

        .social-icon {
            animation: socialBounceIn 0.8s ease-out forwards;
            opacity: 0;
        }

        .social-icon:nth-child(1) { animation-delay: 0.1s; }
        .social-icon:nth-child(2) { animation-delay: 0.2s; }
        .social-icon:nth-child(3) { animation-delay: 0.3s; }
        .social-icon:nth-child(4) { animation-delay: 0.4s; }
        .social-icon:nth-child(5) { animation-delay: 0.5s; }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .floating-social {
                left: 3px;
                bottom: 25px;
            }
            
            .social-icon {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .floating-social {
                flex-direction: row;
                left: 50%;
                bottom: 20px;
                transform: translateX(-50%);
                background: rgba(255, 255, 255, 0.95);
                padding: 8px 12px;
                border-radius: 40px;
                border: 3px solid var(--dark-blue);
                box-shadow: var(--shadow-medium);
                gap: 10px;
            }
            
            .social-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .tooltip {
                display: none;
            }
            
            @keyframes socialBounceIn {
                0% {
                    opacity: 0;
                    transform: translateY(30px) rotate(-5deg);
                }
                60% {
                    transform: translateY(-5px) rotate(1deg);
                }
                100% {
                    opacity: 1;
                    transform: translateY(0) rotate(-2deg);
                }
            }
            
            /* Add bottom padding to footer to avoid overlap with floating social icons */
            footer {
                padding-bottom: 100px;
            }
        }

        @media (max-width: 480px) {
            .floating-social {
                padding: 6px 10px;
                gap: 8px;
                left: 50%;
                transform: translateX(-50%);
            }
            
            .social-icon {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
        }

        /* For very large screens, keep it from getting too far left */
        @media (min-width: 1600px) {
            .floating-social {
                left: 20px;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .gallery-hero-content h1 {
                font-size: 3.5rem;
            }
            .section-title h2 {
                font-size: 3.5rem;
            }
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .gallery-hero-content h1 {
                font-size: 3rem;
            }
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--white);
                padding: 100px 20px 40px;
                box-shadow: var(--shadow-medium);
                clip-path: circle(0px at top right);
                transition: var(--transition-medium);
                z-index: 999;
                overflow-y: auto;
            }
            nav.active {
                clip-path: circle(150% at top right);
            }
            nav ul {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            nav ul li a {
                width: 100%;
                text-align: center;
                transform: none;
                margin: 5px 0;
            }
            .gallery-hero-content h1 {
                font-size: 2.5rem;
            }
            .section-title h2 {
                font-size: 2.8rem;
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .video-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .top-bar-container {
                flex-direction: column;
                gap: 15px;
            }
            .logo {
                font-size: 2.2rem;
            }
            .gallery-hero-content h1 {
                font-size: 2rem;
            }
            .gallery-hero-content p {
                font-size: 1.1rem;
            }
            .section-title h2 {
                font-size: 2.2rem;
            }
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .video-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            footer {
                padding: 60px 20px 100px;
            }
        }







/* For large tablets like iPad Pro, Surface Pro 7, and Nest Hub */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr); /* Switches to 2 columns for better readability */
    gap: 40px;
  }
}

/* For smaller tablets like iPad and iPad Air in portrait view */
@media (max-width: 768px) {
  footer {
    padding: 60px 20px 80px; /* Adjust padding */
  }

  .footer-grid {
    grid-template-columns: 1fr; /* Switches to a single, stacked column */
    gap: 40px;
  }

  .footer-col {
    text-align: center; /* Center-aligns all content for a clean look */
  }

  /* Remove rotations and center elements for mobile */
  .footer-col h3,
  .footer-about p,
  .footer-links li,
  .hours-row,
  .footer-bottom {
    transform: none;
  }

  .social-grid {
    margin: 0 auto;
  }

  .footer-links {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-hours {
      max-width: 300px;
      margin: 0 auto;
  }
}
