* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: rgb(16, 16, 17);
    font-family: "Raleway", sans-serif;
    overflow-x: hidden;
}

/* ========================================
   WRAPPER & MAIN SECTIONS
   ======================================== */

.wrapper-cls {
    padding-top: 100vh;
    position: relative;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0, 0.0, 0.2, 1);
}

.wrapper-cls.scrolled {
    padding-top: 175px;
}

section,
.clients-section,
.about-us,
.about-container,
.testimonials-container {
    min-height: calc(100vh - 100px);
}

.contact-container {
    min-height: auto;
}

/* ========================================
   VIDEO BACKGROUND
   ======================================== */

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: translateZ(0);
    backface-visibility: hidden;
    filter: brightness(0.7);
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(28, 28, 28, 0.6) 0%, rgba(16, 16, 17, 0.85) 100%);
    z-index: -1;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
    display: flex;
    justify-content: space-between;
    padding: 30px 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    transition: all 0.3s ease;
    transform: translateZ(0);
}

header.scrolled {
    background: rgba(16, 16, 17, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10002;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

h2 {
    font-size: 3em;
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.grid-container {
    position: relative;
    justify-content: center;
    display: flex;
    width: 100%;
}

.main-nav {
    display: flex;
    width: 100%;
    height: 98px;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    font-family: "Poppins", serif;
    justify-content: left;
    display: flex;
    align-items: center;
}

.nav-menu-buttons {
    padding: 0;
    width: 100%;
    font-size: small;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-menu-buttons li {
    height: auto;
    display: inline-block;
    margin: 0;
}

.main-nav a,
.nav-menu-buttons a {
    font-size: 1.1em;
    padding: 0 33px;
}

.main-nav a {
    position: relative;
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: rgb(200, 200, 200);
}

.nav-menu-buttons a::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: rgb(230, 230, 230);
    transition: all .3s;
}

.nav-menu-buttons a:hover {
    color: rgb(255, 255, 255);
}

.nav-menu-buttons a:hover::before {
    width: 100%;
}

.top-social {
    padding: 0;
    display: inline-flex;
    justify-content: right;
    align-items: center;
    height: 100%;
    width: auto;
    gap: 0;
}

.contact-button {
    background: transparent;
    color: #ffffff;
    padding: 0 30px;
    border-radius: 0px;
    text-decoration: none;
    font-size: small;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    white-space: nowrap;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #ffffff;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: left 0.3s ease;
    z-index: -1;
}

.contact-button:hover {
    color: #000000;
}

.contact-button:hover::before {
    left: 0;
}

.social-menu-buttons {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-menu-buttons a {
    padding: 0 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 30px;
}

.social-menu-buttons a:hover {
    color: rgb(255, 255, 255);
}

/* ========================================
   MAIN CONTENT (LOGO & TAGLINE)
   ======================================== */

.main-content {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    pointer-events: none;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    will-change: transform;
}

.main-content.scrolled {
    top: 62px;
    transform: translate(-50%, -50%);
    z-index: 9000;
}

.main-content .center-logo {
    display: block;
    max-width: min(1200px, 80vw);
    height: auto;
    margin: 0;
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    opacity: 1;
    visibility: visible;
}

.main-content.scrolled .center-logo {
    max-width: min(250px, 25vw);
}

.main-content .tagline {
    position: absolute;
    top: 62.5%;
    left: 52%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: clamp(1rem, 1vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.7rem;
    text-transform: uppercase;
    margin: 0;
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
}

.main-content.scrolled .tagline {
    opacity: 0;
    visibility: hidden;
}

/* ========================================
   CONTENT SHOWCASE
   ======================================== */

.content-showcase {
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* ========================================
   VIDEO TILES SECTION
   ======================================== */

.video-tile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
    width: 100%;
    max-width: none;
    min-height: 100vh;
    padding: 60px 5%;
    position: relative;
    z-index: 10;
    background: url('Assets/_SID3081\ \(1\).jpg');
    background-size: 110%;
    background-position: center 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgba(16, 16, 17, 0.75);
}

.video-tile .vid-list {
    width: 100%;
    max-width: 4000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.video-tile .video-as-gif {
    flex: 0 0 calc(22.5% - 22.5px);
    width: calc(22.5% - 22.5px);
    aspect-ratio: 16 / 9;
    height: auto;
    min-width: 250px;
    max-width: 360px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.video-tile .video-as-gif:hover {
    transform: scale(1.05) translateZ(0);
}

/* ========================================
   CLIENTS SECTION
   ======================================== */

.clients-section {
    padding: 80px 5%;
    margin: 0;
    position: relative;
    width: 100%;
    background-image: url('Assets/APS09782.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgba(16, 16, 17, 0.3);
}

.clients-section > h2 {
    color: #ffffff;
    font-size: 3em;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.clients-content {
    max-width: 1400px;
    margin: auto;
    padding-top: 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.clients-text h3 {
    color: #ffffff;
    font-size: 2.5em;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: left;
    letter-spacing: -0.5px;
}

.clients-text p {
    color: #b0b0b0;
    font-size: 1.1em;
    line-height: 1.7;
    font-weight: 400;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.client-bubble {
    background: #ffffff;
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.0);
    transition: all 0.3s ease;
    position: relative;
    min-width: 100px;
    overflow: hidden;
    transform: translateZ(0);
}

.client-bubble::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-bubble:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.client-bubble:hover::before {
    opacity: 1;
}

.client-bubble img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(0%);
    transition: all 0.6s ease;
    opacity: 1;
    max-width: 100%;
    max-height: 100%;
}

.client-bubble img.fade-out {
    opacity: 0;
    transform: scale(0.8);
}

.client-bubble img.fade-in {
    opacity: 1;
    transform: scale(1);
}

.client-bubble:hover img {
    transform: scale(1.05);
}

/* ========================================
   ABOUT US SECTION
   ======================================== */

.about-us {
    position: relative;
    overflow: hidden;
    margin: 0;
    display: flex;
    align-items: center;
}

.about-container {
    padding: 80px 10%;
    margin: 0 auto;
    max-width: 4800px;
    border-radius: 0px;
    position: relative;
    z-index: 5;
    width: 100%;
    background-image: url('Assets/_SID2770.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgba(16, 16, 17, 0.3);
}

.about-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(16, 16, 17, 0.5);
    border-radius: 20px;
    z-index: -1;
}

.about-container h2 {
    color: #ffffff;
    font-size: 3em;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-container p {
    font-size: 1.5em;
    line-height: 1.8;
    max-width: 2000px;
    margin: 0 auto;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-container.visible {
    animation: fadeInUp 0.8s ease-out;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-container {
    padding: 80px 5%;
    position: relative;
    z-index: 5;
    max-width: 4000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-image: url('Assets/ANK_4354.jpg');
    background-size: cover;
    background-position: center 42%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgba(16, 16, 17, 0.1);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    padding-top: 0px;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 3% 107px;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: center;
    position: relative;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-button:active {
    transform: translateY(-50%) scale(0.95);
}

.scroll-button-left {
    left: 75px;
}

.scroll-button-right {
    right: 75px;
}

.scroll-button:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.scroll-button:disabled:hover {
    transform: translateY(-50%) scale(1);
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-card {
    background: rgba(28, 28, 30, 0.4);
    border-radius: 15px;
    padding: 50px 35px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    min-width: 350px;
    max-width: 350px;
    height: 500px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateZ(0);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px) translateZ(0);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 3em;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-text {
    color: #e0e0e0;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    text-align: left;
}

.reviewuser-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reviewuser-details h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
}

.reviewuser-details p {
    color: #b0b0b0;
    margin: 5px 0 0 0;
    font-size: 0.9em;
}

/* ========================================
   CONTACT US SECTION
   ======================================== */

.contact-container {
    position: relative;
    background: rgba(26, 26, 26, 0.2);
    color: #ffffff;
    padding: 80px 10%;
    max-width: 100%;
    border-radius: 0;
    justify-content: center;
    box-shadow: none;
    overflow: hidden;
    z-index: 5;
    backdrop-filter: blur(10px);
}

.contact-container::before {
    content: '';
    position: absolute;
    background: rgba(26, 26, 26, 1);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.contact-container > * {
    position: relative;
    z-index: 1;
}

.contact-container h2 {
    color: #ffffff;
    font-size: 3em;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 2px;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
    justify-content: center;
}

.footer-contact-section {
    justify-self: end;
}

.footer-social-section {
    justify-self: center;
    text-align: center;
}

.footer-links-section {
    justify-self: start;
}

.footer-section h3 {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
}

.contact-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.contact-item .material-symbols-outlined {
    font-size: 20px;
}

.contact-item a:hover {
    color: #3498db;
}

.contact-item span {
    color: #ffffff;
    line-height: 1.4;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    font-size: 1.2em;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
}

.social-icon:hover {
    background: transparent;
    transform: translateY(-3px);
    color: #3498db;
}

.copyright {
    font-size: 0.9em;
    color: #888888;
    margin-top: 20px;
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   RESPONSIVE STYLES - TABLET & MOBILE
   ======================================== */

/* Large Tablets (1200px and below) */
@media (max-width: 1200px) {
    .clients-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .clients-text {
        text-align: center;
    }

    .clients-text h3 {
        text-align: center;
        font-size: 2.2em;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .video-tile .video-as-gif {
        flex: 0 0 calc(33.333% - 20px);
        width: calc(33.333% - 20px);
    }
}

/* Medium Tablets (968px and below) */
@media (max-width: 968px) {
    h2 {
        font-size: 2.5em;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .clients-text h3 {
        font-size: 2em;
    }

    .client-bubble {
        padding: 20px;
        min-width: 100px;
    }

    .video-tile .video-as-gif {
        flex: 0 0 calc(50% - 15px);
        width: calc(50% - 15px);
    }

    .video-tile {
        gap: 20px;
        padding: 40px 3%;
    }

    .video-tile .vid-list {
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-container {
        padding: 60px 8%;
    }

    .about-container p {
        font-size: 1.3em;
    }

    .testimonials-grid {
        margin: 3% 60px;
    }

    .scroll-button-left {
        left: 30px;
    }

    .scroll-button-right {
        right: 30px;
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    /* Remove expensive effects on mobile */
    * {
        backdrop-filter: none !important;
        transition-duration: 0.2s !important;
    }
    
    header,
    header.scrolled {
        backdrop-filter: none !important;
        z-index: 10000 !important;
    }
    
    /* Change fixed backgrounds to scroll on mobile */
    .video-tile,
    .clients-section,
    .about-container,
    .testimonials-container {
        background-attachment: scroll !important;
    }

    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex !important;
    }

    header {
        padding: 20px 5%;
    }

    header.scrolled {
        padding: 15px 5% !important;
    }

    .main-nav {
        height: auto;
        overflow: visible;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 80% !important;
        max-width: 300px !important;
        height: 100vh !important;
        background: rgba(16, 16, 17, 0.98) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding-top: 80px !important;
        padding-bottom: 20px !important;
        transition: left 0.3s ease !important;
        z-index: 9999 !important;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }

    .nav-menu-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .nav-menu-buttons li {
        width: 100% !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        display: block !important;
        height: auto !important;
        margin: 0 !important;
    }

    .nav-menu-buttons a {
        padding: 20px 30px !important;
        width: 100% !important;
        justify-content: flex-start !important;
        font-size: 1em !important;
        display: flex !important;
        height: auto !important;
    }

    .nav-menu-buttons a::before {
        display: none !important;
    }

    /* Top Social - Always visible inside the menu */
    .top-social {
        position: static !important;
        width: 100% !important;
        max-width: none !important;
        background: transparent !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 20px 30px !important;
        gap: 15px !important;
        height: auto !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin-top: 20px !important;
    }

    .social-menu-buttons {
        width: 100% !important;
        justify-content: center !important;
        gap: 20px !important;
        padding: 15px 0 !important;
    }

    .social-menu-buttons li {
        border-bottom: none !important;
    }

    .contact-button {
        width: 100% !important;
        margin: 0 !important;
        padding: 15px 20px !important;
        justify-content: center !important;
        height: auto !important;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9998 !important;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block !important;
        opacity: 1 !important;
    }

    /* Logo adjustments */
    .main-content .center-logo {
        max-width: min(400px, 70vw) !important;
    }

    .main-content.scrolled {
        top: 50px !important;
    }

    .main-content.scrolled .center-logo {
        max-width: min(120px, 20vw) !important;
    }

    .main-content .tagline {
        font-size: clamp(0.7rem, 2vw, 1rem) !important;
        letter-spacing: 0.3rem !important;
    }

    /* Hide extra video tiles - show only first 4 */
    .video-tile .vid-list .video-as-gif:nth-child(n+5) {
        display: none;
    }

    .wrapper-cls.scrolled {
        padding-top: 120px;
    }

    /* Sections */
    h2 {
        font-size: 2em;
    }

    .clients-section {
        padding: 60px 4%;
    }

    .clients-section > h2 {
        font-size: 2.2em;
        margin-bottom: 40px;
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        padding: 10px;
    }

    .clients-text h3 {
        font-size: 1.8em;
    }

    .clients-text p {
        font-size: 1em;
    }

    .client-bubble {
        padding: 12px;
        min-width: 60px;
    }

    .video-tile .video-as-gif {
        flex: 0 0 100%;
        width: 100%;
        max-width: none;
        min-width: 100%;
    }

    .video-tile {
        gap: 15px;
        padding: 40px 5%;
    }

    .video-tile .vid-list {
        gap: 20px;
    }

    .about-container {
        padding: 50px 5%;
    }

    .about-container h2 {
        font-size: 2.2em;
        margin-bottom: 30px;
    }

    .about-container p {
        font-size: 1.1em;
        line-height: 1.6;
    }

    .testimonials-container {
        padding: 60px 3%;
    }

    .testimonials-container h2 {
        font-size: 2.2em;
        margin-bottom: 40px;
    }

    .testimonials-grid {
        margin: 3% 0;
        padding: 20px 50px;
    }

    .scroll-button {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
        backdrop-filter: none;
    }

    .scroll-button-left {
        left: 10px;
    }

    .scroll-button-right {
        right: 10px;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 30px 25px;
        height: auto;
        min-height: 450px;
        backdrop-filter: none;
    }

    .testimonial-text {
        font-size: 1em;
    }

    .contact-container {
        padding: 60px 5%;
        backdrop-filter: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-contact-section,
    .footer-social-section,
    .footer-links-section {
        justify-self: center;
    }

    .contact-item {
        justify-content: center;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    header {
        padding: 15px 4%;
    }

    .main-content .center-logo {
        max-width: min(350px, 75vw) !important;
    }

    .main-content.scrolled {
        top: 40px !important;
    }

    .main-content.scrolled .center-logo {
        max-width: min(100px, 18vw) !important;
    }

    .main-content .tagline {
        font-size: clamp(0.6rem, 2vw, 0.9rem) !important;
        letter-spacing: 0.2rem !important;
    }

    .wrapper-cls.scrolled {
        padding-top: 100px;
    }

    h2 {
        font-size: 1.8em;
    }

    .clients-section > h2,
    .about-container h2,
    .testimonials-container h2,
    .contact-container h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .client-bubble {
        padding: 10px;
        min-width: 50px;
    }

    .clients-text h3 {
        font-size: 1.5em;
    }

    .clients-text p {
        font-size: 0.95em;
    }

    .video-tile {
        padding: 30px 4%;
    }

    .about-container {
        padding: 40px 5%;
    }

    .about-container p {
        font-size: 1em;
    }

    .testimonials-container {
        padding: 50px 2%;
    }

    .testimonials-grid {
        padding: 20px 45px;
    }

    .scroll-button {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

    .scroll-button-left {
        left: 5px;
    }

    .scroll-button-right {
        right: 5px;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 25px 20px;
        min-height: 420px;
    }

    .testimonial-text {
        font-size: 0.95em;
    }

    .reviewuser-details h4 {
        font-size: 1em;
    }

    .reviewuser-details p {
        font-size: 0.85em;
    }

    .contact-container {
        padding: 50px 4%;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 1em;
    }

    .footer-section p,
    .footer-links a {
        font-size: 0.9em;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    .main-content .center-logo {
        max-width: min(300px, 80vw) !important;
    }

    .main-content.scrolled .center-logo {
        max-width: min(100px, 18vw) !important;
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .client-bubble {
        padding: 8px;
        min-width: 45px;
    }

    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
        padding: 20px 15px;
    }

    .scroll-button {
        width: 30px;
        height: 30px;
        font-size: 0.9em;
    }
}

/* Prevent zoom on input focus (iOS) */
@media screen and (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}