* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Three.js Canvas */
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Ensure navigation is always clickable */
.navigation,
.navigation * {
    pointer-events: auto;
}

/* Logo */
.logo {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 100;
    animation: float 3s ease-in-out infinite;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Geometric Background Elements */
.geometric-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.large-circle {
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.small-circle {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 15s;
    animation-direction: reverse;
}

.curve-line {
    position: absolute;
    top: 15%;
    left: 35%;
    width: 400px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-bottom: none;
    transform: rotate(-15deg);
    animation: pulse 4s ease-in-out infinite;
}

.cross {
    position: absolute;
    width: 20px;
    height: 20px;
}

.cross::before,
.cross::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.4);
}

.cross::before {
    width: 1px;
    height: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.cross::after {
    width: 20px;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
}

.cross-1 {
    top: 25%;
    left: 45%;
    animation: twinkle 2s ease-in-out infinite;
}

.cross-2 {
    bottom: 35%;
    right: 30%;
    animation: twinkle 2s ease-in-out infinite 1s;
}

.dimension-label {
    position: absolute;
    top: 22%;
    right: 20%;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-weight: 500;
}

/* Animations */
@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: rotate(-15deg) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: rotate(-15deg) scale(1.05);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 50;
    text-align: center;
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
    pointer-events: none;
}

.hero-section * {
    pointer-events: auto;
}

.hero-title {
    font-family: 'Satisfy', cursive;
    font-size: 180px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    width: 100%;
}

#bozo-text {
    width: 90vw;
    height: auto;
    margin-top: 100px;
}

.bozo-svg-text {
    font-family: 'Satisfy', cursive;
    font-size: 800px;
    fill: #ffffff;
    stroke: none;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    animation: gentleGlow 4s ease-in-out infinite, floatMove 6s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes gentleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
        opacity: 0.95;
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.7));
        opacity: 1;
    }
}

@keyframes floatMove {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-8px) scale(1.01);
    }
    50% {
        transform: translateY(0px) scale(1);
    }
    75% {
        transform: translateY(8px) scale(0.99);
    }
}


.outline-text {
    color: transparent;
    -webkit-text-stroke: 1.5px #ffffff;
    text-stroke: 1.5px #ffffff;
    font-weight: 700;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    font-weight: 400;
}

/* Navigation */
.navigation {
    display: inline-flex;
    gap: 0;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 6px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navigation.sticky {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6),
                0 0 20px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDownBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto !important;
}

@keyframes slideDownBounce {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-50px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateX(-50%) translateY(5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #000000;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.navigation.sticky .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .logo {
        top: 20px;
        left: 20px;
    }

    .logo svg {
        width: 30px;
        height: 30px;
    }

    .large-circle {
        width: 500px;
        height: 500px;
    }

    .small-circle {
        width: 300px;
        height: 300px;
    }

    .navigation {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        padding: 10px 18px;
        font-size: 14px;
    }

    .dimension-label {
        top: 10%;
        right: 10%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 14px;
    }

    .outline-text {
        -webkit-text-stroke: 1px #ffffff;
        text-stroke: 1px #ffffff;
    }
}

/* Content Sections */
.content-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 20px;
    z-index: 10;
}

.section-content {
    max-width: 800px;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
}

.section-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-text {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.section-1 {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, #000000 40%, #061e2a 80%, #0c2b3a 100%);
}

.section-2 {
    background: linear-gradient(180deg, rgba(20,20,20,0.3) 0%, rgba(0,0,0,0) 50%, rgba(30,30,30,0.3) 100%);
    position: relative;
}

/* About Section Styles */
#about-section {
    position: relative;
    overflow: hidden;
}

#about-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 100;
    max-width: 900px;
}

.about-header-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.about-title {
    font-family: 'Satisfy', cursive;
    font-size: 85px;
    margin-bottom: 0;
    position: relative;
    z-index: 100;
    font-weight: normal;
    text-transform: none;
    line-height: 1.2;
}

.title-icon {
    position: absolute;
    width: 90px;
    height: 90px;
    z-index: 90;
}

.pr-icon.title-icon {
    top: -30px;
    left: -100px;
    transform: rotate(-25deg);
}

.ae-icon.title-icon {
    top: -5px;
    right: -100px;
    transform: rotate(25deg);
}

.about-description {
    background: rgba(0, 0, 0, 0.7);
    padding: 60px 70px;
    border-radius: 24px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 100;
}

.about-role {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    font-size: 20px;
    line-height: 2;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    margin-bottom: 25px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.about-text strong {
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #aaaaaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.about-cta {
    font-size: 22px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 0;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* Software Stack Icons */
.software-icon {
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatIcon 4s ease-in-out infinite;
    cursor: pointer;
}

.software-icon.ae-icon {
    animation-delay: 1s; /* offset the floating animation */
}

.software-icon:hover {
    transform: scale(1.3) rotate(5deg) translateY(-5px);
    filter: drop-shadow(0 10px 25px rgba(255, 255, 255, 0.2));
}

@keyframes floatIcon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .about-header-wrapper {
        margin-bottom: 30px;
    }
    
    .about-title {
        font-size: 55px;
    }
    
    .pr-icon.title-icon {
        width: 60px;
        height: 60px;
        left: -50px;
        top: -20px;
        transform: rotate(-25deg);
    }
    
    .ae-icon.title-icon {
        width: 60px;
        height: 60px;
        right: -45px;
        top: -5px;
        transform: rotate(25deg);
    }
    
    .about-role {
        font-size: 28px;
    }
    
    .about-text {
        font-size: 18px;
    }
    
    .about-description {
        padding: 30px 25px;
    }
}

.section-3 {
    background: linear-gradient(180deg, rgba(30,30,30,0.3) 0%, rgba(0,0,0,0) 50%, rgba(40,40,40,0.3) 100%);
}

/* Contact Section */
.contact-content {
    max-width: 1100px;
}

.contact-title {
    font-family: 'Satisfy', cursive;
    font-size: 85px;
    font-weight: normal;
    text-transform: none;
    line-height: 1.2;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 20px;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.contact-card {
    background: rgba(10, 15, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--glow-color, rgba(255,255,255,0.1)) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.contact-card:nth-child(1) { --glow-color: rgba(37, 211, 102, 0.2); } /* Phone - Green */
.contact-card:nth-child(2) { --glow-color: rgba(66, 133, 244, 0.2); } /* Email - Blue */
.contact-card:nth-child(3) { --glow-color: rgba(225, 48, 108, 0.2); } /* Insta - Pink */
.contact-card:nth-child(4) { --glow-color: rgba(0, 242, 254, 0.2); } /* TikTok - Cyan */

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    background: rgba(15, 20, 35, 0.8);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.contact-icon svg {
    width: 35px;
    height: 35px;
    color: #ffffff;
    transition: all 0.5s ease;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--glow-color);
    box-shadow: 0 10px 20px var(--glow-color);
}

.contact-card:hover .contact-icon svg {
    color: #ffffff;
    transform: scale(1.1);
}

.contact-info {
    position: relative;
    z-index: 1;
}

.contact-label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.5s ease;
}

.contact-card:hover .contact-label {
    color: rgba(255, 255, 255, 0.9);
}

.contact-value {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    transition: all 0.5s ease;
}

.contact-card:hover .contact-value {
    color: #ffffff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 55px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon svg {
        width: 30px;
        height: 30px;
    }
}
        height: 60px;
    }
    
    .contact-icon svg {
        width: 30px;
        height: 30px;
    }
}

.section-4 {
    background: linear-gradient(180deg, rgba(40,40,40,0.3) 0%, rgba(0,0,0,0.5) 100%);
    min-height: 80vh;
}

/* 3D Coverflow Shorts Carousel Styles */
.short-carousel-container {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    margin-top: 40px;
    padding: 20px 0;
    overflow: hidden;
}

.short-carousel-track {
    position: relative;
    width: 320px;
    height: 568px; /* 9:16 aspect ratio base */
    transform-style: preserve-3d;
}

.short-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    opacity: 0; 
}

.short-item iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0; left: 0;
    z-index: 10;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
    filter: grayscale(100%) brightness(0.4);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 15px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.5));
    opacity: 0;
    transform: scale(0.8);
}

/* Target center active item */
.short-item.item-center {
    transform: translateX(0) scale(1.1) translateZ(50px);
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
}
.short-item.item-center img.video-thumbnail {
    filter: grayscale(0) brightness(1) contrast(1.1);
}
.short-item.item-center .play-icon {
    opacity: 1;
    transform: scale(1);
}
.short-item.item-center:hover .play-icon {
    transform: scale(1.2);
}

/* Side items */
.short-item.item-left-1 { transform: translateX(-130%) scale(0.8) translateZ(-50px) rotateY(15deg); z-index: 4; opacity: 0.6; pointer-events: auto; }
.short-item.item-left-2 { transform: translateX(-240%) scale(0.6) translateZ(-150px) rotateY(25deg); z-index: 3; opacity: 0.3; }

.short-item.item-right-1 { transform: translateX(130%) scale(0.8) translateZ(-50px) rotateY(-15deg); z-index: 4; opacity: 0.6; pointer-events: auto; }
.short-item.item-right-2 { transform: translateX(240%) scale(0.6) translateZ(-150px) rotateY(-25deg); z-index: 3; opacity: 0.3; }

/* Global UI overlays */
.short-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    max-width: 800px; 
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}
.short-carousel-btn {
    background: transparent;
    border: none;
    color: white;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    width: 40px; height: 40px;
    cursor: pointer;
    pointer-events: auto;
    display: flex; justify-content: center; align-items: center;
    backdrop-filter: blur(5px);
    transition: background 0.3s;
}
.short-carousel-btn.short-prev { transform: translateX(-120px); }
.short-carousel-btn.short-next { transform: translateX(120px); }
.short-carousel-btn:hover { background: rgba(255,255,255,0.2); }
.short-carousel-btn svg { width: 20px; height: 20px;}

.short-pagination-dots {
    position: absolute;
    bottom: -15px;
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    padding: 6px 12px;
    border-radius: 20px;
}
.s-dot {
    width: 6px; height: 6px; background: rgba(255,255,255,0.3); border-radius: 50%; display: inline-block; transition: all 0.3s;
}
.s-dot.active {
    width: 8px; height: 8px; background: white;
}

/* More Works on Google Drive Section */
.drive-section {
    margin-top: 150px;
    padding: 50px 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s ease;
}

.drive-section:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
}

.drive-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.drive-icon {
    width: 50px;
    height: 50px;
    animation: driveFloat 3s ease-in-out infinite;
}

.drive-path {
    transition: fill 0.5s ease;
}

.drive-section:hover .drive-path {
    fill: attr(data-color);
}

.drive-section:hover .drive-path:nth-child(1) {
    fill: #0066da;
}

.drive-section:hover .drive-path:nth-child(2) {
    fill: #00ac47;
}

.drive-section:hover .drive-path:nth-child(3) {
    fill: #ea4335;
}

.drive-section:hover .drive-path:nth-child(4) {
    fill: #00832d;
}

.drive-section:hover .drive-path:nth-child(5) {
    fill: #2684fc;
}

.drive-section:hover .drive-path:nth-child(6) {
    fill: #ffba00;
}

@keyframes driveFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.drive-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

.drive-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.drive-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.drive-link:hover::before {
    left: 100%;
}

.drive-link:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.3), rgba(52, 168, 83, 0.3));
    border-color: rgba(66, 133, 244, 0.8);
    box-shadow: 0 10px 40px rgba(66, 133, 244, 0.4);
}

.drive-link-text {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.drive-link:hover .drive-link-text {
    letter-spacing: 1px;
}

.drive-arrow {
    width: 24px;
    height: 24px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.drive-link:hover .drive-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 42px;
    }
    
    .section-text {
        font-size: 16px;
    }
    
    .short-carousel-track {
        width: 260px;
        height: 462px; /* Adjusting vertical aspect ratio for smaller screens */
    }
    
    .drive-section {
        padding: 35px 25px;
        margin-top: 50px;
    }
    
    .drive-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .drive-icon {
        width: 40px;
        height: 40px;
    }
    
    .drive-title {
        font-size: 24px;
        text-align: center;
    }
    
    .drive-link {
        padding: 15px 30px;
    }
    
    .drive-link-text {
        font-size: 18px;
    }
}

/* Our Clients Section */
.clients-section {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 80px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #0c2b3a 0%, #000000 100%);
}

.clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Clean transparent fade effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.clients-track {
    display: flex;
    width: max-content;
    animation: scrollClients 30s linear infinite;
    padding: 30px 0;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex-shrink: 0;
    width: auto;
    max-width: 150px;
    height: 80px;
    object-fit: contain;
    margin: 0 40px;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
    cursor: pointer;
}

.client-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.2);
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Featured Videos Carousel */
.featured-videos-section {
    position: relative;
    width: 100%;
    margin-top: 80px;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #061e2a 35%, #0c2b3a 50%, #061e2a 65%, #000000 100%);
}

.featured-videos-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.badge-line {
    height: 1px;
    width: 60px;
    background: rgba(255, 255, 255, 0.15);
}

.badge-text {
    color: #79a1b8;
    font-size: 13px;
    letter-spacing: 1px;
}

.featured-videos-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 3rem;
    color: #ffffff;
    font-weight: 600;
}

.highlight-cursive {
    font-family: 'Satisfy', cursive;
    color: #9cb4c4;
    font-weight: normal;
    font-size: 3.2rem;
}

.carousel-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 550px;
    perspective: 1200px;
}

.carousel-track {
    position: relative;
    width: 900px;
    height: 100%;
    transform-style: preserve-3d;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
    pointer-events: none;
}

.carousel-item iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid transparent;
    filter: grayscale(1) blur(3px);
    transition: all 0.5s ease;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.carousel-item.item-center {
    transform: translateX(0) scale(1) translateZ(0px);
    z-index: 3;
    pointer-events: auto;
}

.carousel-item.item-center iframe {
    border-color: rgba(255, 255, 255, 0.6);
}

.carousel-item.item-left {
    transform: translateX(-65%) scale(0.8) translateZ(-100px);
    z-index: 1;
    opacity: 0.7;
}

.carousel-item.item-right {
    transform: translateX(65%) scale(0.8) translateZ(-100px);
    z-index: 1;
    opacity: 0.7;
}

/* Hover Effects */
.carousel-item:hover iframe {
    filter: grayscale(0) blur(0);
    pointer-events: auto; /* Playable on hover */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.prev-btn {
    left: 10%;
}

.next-btn {
    right: 10%;
}

@media (max-width: 1024px) {
    .carousel-track {
        width: 70vw;
        height: 40vw;
    }
    .carousel-item.item-left {
        transform: translateX(-50%) scale(0.75) translateZ(-100px);
    }
    .carousel-item.item-right {
        transform: translateX(50%) scale(0.75) translateZ(-100px);
    }
    .prev-btn { left: 5%; }
    .next-btn { right: 5%; }
}

@media (max-width: 768px) {
    .carousel-track {
        width: 85vw;
        height: 50vw;
    }
    .carousel-item.item-left {
        transform: translateX(0) scale(0.9) translateZ(-100px);
        opacity: 0;
    }
    .carousel-item.item-right {
        transform: translateX(0) scale(0.9) translateZ(-100px);
        opacity: 0;
    }
    .prev-btn { left: 2%; }
    .next-btn { right: 2%; }
}

/* Base Theme Toggle Styles */
.theme-toggle {
    position: absolute;
    top: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    color: white;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
}

/* Comprehensive Mobile Responsiveness (max-width: 480px, including standard phone sizes) */
@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
    
    .theme-toggle {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .navigation {
        padding: 4px;
        border-radius: 20px;
        gap: 2px;
        margin-top: 10px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    .section-title, .featured-videos-title {
        font-size: 36px !important;
        margin-bottom: 25px !important;
    }
    
    .highlight-cursive {
        font-size: 2.5rem !important;
    }

    .carousel-container {
        height: 300px;
    }
    
    .carousel-track {
        width: 95vw;
        height: 55vw;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .short-carousel-container {
        height: 480px;
    }
    
    .short-carousel-track {
        width: 220px;
        height: 390px;
    }
    
    .short-carousel-btn.short-prev {
        transform: translateX(-100px);
    }
    
    .short-carousel-btn.short-next {
        transform: translateX(100px);
    }

    .drive-section {
        padding: 25px 15px;
        margin-top: 40px;
        border-radius: 16px;
    }
    
    .drive-title {
        font-size: 20px;
    }
    
    .drive-icon {
        width: 30px;
        height: 30px;
    }
    
    .drive-link {
        padding: 12px 20px;
    }
    
    .drive-link-text {
        font-size: 16px;
    }

    .about-title {
        font-size: 40px !important;
    }
    
    .about-role {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .about-text {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .about-description {
        padding: 25px 15px;
        border-radius: 16px;
    }
    
    .pr-icon.title-icon {
        width: 40px;
        height: 40px;
        left: -20px;
        top: -15px;
    }
    
    .ae-icon.title-icon {
        width: 40px;
        height: 40px;
        right: -20px;
        top: -5px;
    }

    .contact-title {
        font-size: 40px !important;
    }
    
    .contact-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .contact-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .contact-value {
        font-size: 15px;
    }
}
