/* Animated Gradient Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(106, 17, 203, 0.2) 0%,
            rgba(37, 117, 252, 0.2) 100%);
    animation: gradientPulse 15s ease infinite;
    z-index: 0;
}

/* Particle Effect */
.particles {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

@keyframes gradientPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes particleFloat {
    from {
        transform: translateY(-100vh);
    }

    to {
        transform: translateY(100vh);
    }
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1024px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, sans-serif;
    background: linear-gradient(to bottom, #1a488e, #0f2c5e);
    color: white;
    min-height: 100vh;
}

.video_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    text-align: center;
}

.logo img {
    height: 120px;
    width: auto;
}

.heading {
    font-size: 2.25rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
    margin-bottom: 1rem;
}

.video-container {
    margin: 0 auto 3rem;
    border-radius: 0.5rem;
    overflow: hidden;
    max-width: 540px;
    width: 100%;
    background: linear-gradient(145deg,
            rgba(26, 72, 142, 0.8) 0%,
            rgba(15, 44, 94, 0.8) 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateX(5deg);
    border-radius: 15px;
    padding: 15px;
}

.wistia_responsive_wrapper {
    width: 100% !important;
    height: auto !important;
    padding-top: 56.25% !important;
    /* 16:9 aspect ratio */
    position: relative;
}

.wistia_embed {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.subheading {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.book-button {
    display: block;
    margin: 0 auto;
    background: linear-gradient(135deg,
            #4a90e2 0%,
            #1a488e 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 300px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    padding: 5px;
}

.book-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 25%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 75%);
    transform: rotate(45deg);
    animation: buttonShine 4s infinite;
}

@keyframes buttonShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.book-button:hover {
    background-color: #0f2c5e;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}
.reel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(281px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}
.reel-card {
  transition: opacity 0.3s ease;
}


@media (max-width: 768px) {
    .heading {
        font-size: 1.75rem;
    }

    .subheading {
        font-size: 1.5rem;
    }

    .logo img {
        height: 80px;
    }

    .video-container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 1.5rem;
    }

    .subheading {
        font-size: 1.25rem;
    }

    .book-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

.floating-logos {
    position: relative;
    height: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-logo {
    position: absolute;
    animation: swing 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transform-origin: top center;
    width: 50px;
}

.floating-logo::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom,
            transparent 10%,
            rgba(255, 255, 255, 0.5) 90%);
    transform: translateX(-50%);
}

@keyframes swing {

    0%,
    100% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

/* Fixed positions */
.floating-logo:nth-child(1) {
    /* Premiere Pro */
    left: 10%;
    top: 50px;
    animation-delay: 0.2s;
}

.floating-logo:nth-child(2) {
    /* Capcut */
    right: 10%;
    top: 50px;
    animation-duration: 3.5s;
}

.floating-logo:nth-child(3) {
    /* Instagram */
    left: 10%;
    top: 250px;
    margin-left: -25px;
    animation-duration: 4.2s;
}

@media (max-width: 768px) {
    .floating-logo {
        width: 40px;
    }

    .floating-logo::before {
        height: 20px;
        top: -20px;
    }

    .floating-logo:nth-child(1) {
        left: 10%;
        top: 0px;
    }

    .floating-logo:nth-child(2) {
        right: 0%;
        top: 120px;
    }

    .floating-logo:nth-child(3) {
        top: 180px;
    }
}

/* Footer Styles */
.site-footer {
    position: relative;
    z-index: -1;
    bottom: 0;
    top : auto;
    width: 100%;
    background: rgba(15, 44, 94, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: 0.5s;
}

.social-icon:hover::before {
    left: 100%;
}

.website-link a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.5), rgba(26, 72, 142, 0.5));
}

.website-link a:hover {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.8), rgba(26, 72, 142, 0.8));
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

@media (max-width: 768px) {
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .website-link a {
        font-size: 0.9rem;
    }

    .site-footer {
        position: relative;
        bottom: 0;
        width: 100%;
    }
}

.icon-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.icon-link {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    position: relative;
}

.icon-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.icon-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    letter-spacing: 0.5px;
    font-family: 'Arial', sans-serif;
}

/* Update existing footer styles */
.site-footer {
    padding: 2rem 0 1rem;
}

.footer-content {
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .icon-link {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .copyright {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
}

.category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.category-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-tab {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.category-tab.active,
.category-tab:hover {
    background-color: #4CD4F7;
    color: black;
    font-weight: bold;
}