@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Space+Grotesk:wght@300..700&display=swap');
       /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            background-color: white;
            color: #111827;
            line-height: 1.6;
        }

        /* NAVIGATION STYLES - Easy to edit padding/margins */
        #main-navigation {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background-color: white;
            border-bottom: 1px solid #f3f4f6;
        }

        #nav-container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 16px 24px 16px 100px; /* Top Right Bottom Left — left aligned to blue guide */
        }
        
        /* Default (max-width: 1280px) already present */

        @media (min-width: 1440px) {
            #nav-container {
                max-width: 1305px;
                padding: 16px 48px;
            }
        }

        @media (min-width: 1920px) {
            #nav-container {
                max-width: 1565px;
                padding: 16px 72px;
            }
        }

        @media (min-width: 2560px) {
            #nav-container {
                max-width: 1800px;
                padding: 16px 96px;
            }
        }

        #nav-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        #logo-container {
            display: flex;
            align-items: center;
        }

        #logo-wrapper {
            display: flex;
            align-items: center;
            gap: 4px; /* EDIT: Logo spacing */
        }

        #logo-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #7c3aed, #2563eb);
            border-radius: 4px;
            transform: rotate(12deg);
        }

        #logo-text {
            font-size: 20px;
            font-weight: bold;
            color: #111827;
            margin-left: 4px; /* EDIT: Logo text margin */
        }

        #nav-links {
            display: none;
            font-family: 'Mulish', sans-serif;
            line-height: 24px;
            letter-spacing: -1%;
            align-items: center;
            gap: 32px; /* EDIT: Navigation links spacing */
        }

        @media (min-width: 768px) {
            #nav-links {
                display: flex;
            }
        }

        .nav-link {
            color: #6b7280;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 0; /* EDIT: Nav link padding */
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: #111827;
        }

        .nav-link.active {
            color: #111827;
        }

        #nav-cta-button {
            background-color: #111827;
            font-family: 'Mulish', sans-serif;
            color: white;
            padding: 10px 24px; /* EDIT: CTA button padding */
            border-radius: 8px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s;
            font-size: 16px;
        }

        #nav-cta-button:hover {
            background-color: #1f2937;
        }

        /* Mobile Navigation Menu */
        #mobile-menu-button {
            display: block;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #111827;
        }

        @media (min-width: 768px) {
            #mobile-menu-button {
                display: none;
            }
        }

        #mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-bottom: 1px solid #f3f4f6;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        #mobile-menu.active {
            display: block;
        }

        #mobile-menu-links {
            display: flex;
            flex-direction: column;
            padding: 16px 24px;
            gap: 16px;
        }

        .mobile-nav-link {
            font-family: 'Mulish', sans-serif;
            color: #6b7280;
            text-decoration: none;
            font-weight: 500;
            padding: 12px 0;
            border-bottom: 1px solid #f3f4f6;
            transition: color 0.2s;
        }

        .mobile-nav-link:hover {
            color: #111827;
        }

        .mobile-nav-link.active {
            color: #111827;
        }

        #hero-section {
            padding-top: 80px; /* Add space for fixed navigation */
            position: relative;
            overflow: hidden;
            height: 70vh;
            max-height: 800px;
            background-image: url('heroimage.png');
            background-size: 60%;
            background-position-x: right;
            background-position-y: 40px;
            background-repeat: no-repeat;
        }

        #hero-container {
            margin: 0 auto;
            height: 100%;
            position: relative;
        }

        #hero-grid {
            display: flex;
            height: 100%;
            position: relative;
        }

        #hero-left-content {
            width: 50%;
            padding-left: 250px;
            display: flex;
            flex-direction: column;
            z-index: 10;
            padding-top: 12rem;
        }


        #hero-headline {
            font-size: 36px;
            font-weight: bold;
            font-weight: 800;
            font-family: 'Mulish', sans-serif;
            color: rgba(0, 0, 0, 1);
            line-height: 110.00000000000001%;
            letter-spacing: 0.15px;
            margin-bottom: 20px;
        }

        #hero-subheading {
            font-family: "Open Sans", sans-serif;
            font-weight: 400;
            font-size: 20px;
            color: #000000;
            line-height: 130%;
            letter-spacing: 0.15px;
            max-width: 512px;
            margin-bottom: 45px; /* EDIT: Subheading margin */
        }

        #hero-buttons-container {
            display: flex;
            align-items: center;
            gap: 16px; /* EDIT: Buttons spacing */
            flex-wrap: wrap;
        }

        #hero-primary-button {
            background-color: #111827;
            color: white;
            padding: 14px 32px; /* EDIT: Primary button padding */
            border-radius: 8px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s;
            font-size: 18px;
        }

        #hero-primary-button:hover {
            background-color: #1f2937;
        }

        #hero-secondary-button {
            color: #374151;
            padding: 14px 32px; /* EDIT: Secondary button padding */
            border-radius: 8px;
            font-weight: 500;
            border: 1px solid #e5e7eb;
            background: white;
            cursor: pointer;
            transition: background-color 0.2s;
            font-size: 18px;
        }

        #hero-secondary-button:hover {
            background-color: #f9fafb;
        }

        #play-button-container {
            position: absolute;
            top: 50%;
            right: 25%;
            transform: translateY(-50%);
            z-index: 5;
        }

        #play-button {
            width: 64px;
            height: 64px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: box-shadow 0.2s;
        }

        #play-button:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        #play-icon {
            width: 24px;
            height: 24px;
            color: #374151;
            margin-left: 4px;
        }
        /*Yes*/
        .logo-marquee {
            background: white;
            mask-image: linear-gradient(to right, transparent, white 30%, white 80%, transparent);
            -webkit-mask-image: linear-gradient(to left, transparent, white 30%, white 80%, transparent);
            position: relative;
            overflow: hidden;
            width: 100%;
            margin-top: 4.5rem;
            background-color: rgb(255, 255, 255);
            align-items: center;
            margin-bottom: 5.5rem;
        }

        .logo-track {
        display: flex;
        animation: marquee 12s linear infinite;
        }

        .logo-track img {
        margin: 0 40px; /* Logo spacing */
        }

        .mind1{
        height: 50px; /* Adjust logo height */
        width: 100%;
        margin: 0 40px; /* Logo spacing */
        }

        /* Gradient Overlays for dark fade */
        .gradient {
        position: absolute;
        top: 0;
        width: 520px; /* Adjust gradient width */
        height: 100%;
        pointer-events: none;
        z-index: 2;
        }

        .gradient-left {
        left: 0;
        background: linear-gradient(to right, black 30%, transparent 100%);
        }

        .gradient-right {
        right: 0;
        background: linear-gradient(to left, black 30%, transparent 100%);
        }

        /* Optimize for mac 13.6inch*/
        @media (min-width: 1440px){
        .card {
            text-align: left;
            width: 1360px;
            height: 583px;
            flex-shrink: 0;
            border-radius: 64px;
            border: 0px solid #DDD6FE;
            background: #F8F7FD;
            padding: 75px;
            margin: 0 auto; /* Center it */
        }}
        
        /* Optimize for 27inch ext display*/
        @media (min-width: 1920px) {
            .card {
                width: 1570px;
                height: 583px;
            }
        }
        
        /* Optional: For even larger ultra-wides */
        @media (min-width: 2560px) {
            .card {
                width: 1360px;
            }
        }
        

        .grid {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .grid img{
            width: 40%;
            height: auto;
        }

        .text-content {
            display: flex;
            flex-direction: column;
            width: 70%;
            gap: 48px;
        }

        @media (min-width: 320px) and (max-width: 800px) {
            .text-content {
                display: flex;
                flex-direction: column;
                width: 100%;
                gap: 48px;
            }
        }


        .text-header {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .main-title {
            font-family: 'Mulish', sans-serif;
            font-size: 36px;
            margin-bottom: 16px;
            font-weight: 800;
            color: #1C1C1C;
            line-height: 100%;
            margin: 0;
        }

        .subtitle {
            font-family: 'Open Sans', sans-serif;
            font-size:24px;
            font-weight: 400;
            color: #1C1C1C;
            margin: 0;
        }

        .bullet-points {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .bullet-item {
            display: flex;
            align-items: flex-start;
            gap: 22px;
        }

        .bullet-bar {
            width: 4px;
            height: 24px;
            background-color: #3b82f6;
            border-radius: 9999px;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .bullet-text {
            font-family: 'Open Sans', sans-serif;
            font-weight: 600;
            font-size: 20px;
            color: #374151;
            margin: 0;
            line-height: 22.44px;
            letter-spacing: 0.17px;
        }

        @media (max-width: 1400px) {
            .card {
                width: 90vw;
                max-width: 1312px;
                height: auto;
                min-height: 583px;
            }
        }

        @media (max-width: 1024px) {
            .grid {
                display: grid;
                grid-template-columns: 1fr;
                align-items: center;
                gap: 32px;
            }
            
            .main-title {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1.125rem;
            }
        }
        
        .ttc-container {
            margin: 0 auto;
            padding: 5.5rem 0;
        }

        /* Optimize for 27inch ext display*/
        .ttc-main-card {
            width: 1360px;
            height: 950px;
            border-radius: 64px;
            background-color: #fdf8f5;
            padding-left: 3rem;
            padding-right: 3rem;
            padding-top: 5rem;
            padding-bottom: 60rem;
            box-sizing: border-box;
        }
                
        /* Optimize for mac 13.6inch*/
        @media (min-width: 1920px) {
            .ttc-main-card {
                width: 1570px;
                height: 950px;
                border-radius: 64px;
                background-color: #fdf8f5;
                padding-left: 3rem;
                padding-right: 3rem;
                padding-top: 5rem;
                padding-bottom: 60rem;
                box-sizing: border-box;
            }}

        @media (min-width: 2560px) {
            .card {
                    width: 1360px;
            }
        }

        .ttc-content-wrapper {
            max-width: 1210px;
            margin: 0 auto;
            text-align: center;
        }

        @media (min-width: 1920px) {
        .ttc-content-wrapper {
            max-width: 1420px;
            margin: 0 auto;
            text-align: center;
        }}
        
        .ttc-title {
            font-family: 'Mulish', sans-serif;
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 100%;
            color: #000000;
            line-height: 1.2;
        }
        
        .ttc-subtitle {
            font-family: 'Open Sans', sans-serif;
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 5rem;
            max-width: 64rem;
            margin-left: auto;
            margin-right: auto;
            color: #000000;
            line-height: 1.2;
        }
        
        .ttc-tabs-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .ttc-tab-group {
            display: flex;
            align-items: center;
        }
        
        .ttc-tab-button {
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            transition: all 0.2s ease-out;
            border: 1px solid;
            background: white;
            cursor: pointer;
            font-size: 1rem;
            font-family: 'Open Sans', sans-serif;
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
        }
        
        .ttc-tab-button::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: rgba(248, 215, 186, 0.1);
            transition: height 0.2s ease-out;
        }
        
        .ttc-tab-button:hover::after {
            height: 100%;
        }
        
        .ttc-tab-button.ttc-active {
            background-color: #fff0e6;
            border-color: #f8d7ba;
            color: #111827;
        }
        
        .ttc-tab-button.ttc-inactive {
            background-color: white;
            border-color: #e5e7eb;
            color: #6b7280;
        }
        
        .ttc-tab-connector {
            width: 3rem;
            height: 1px;
            background-color: #f8d7ba;
            position: relative;
            margin: 0 0.5rem;
        }
        
        .ttc-tab-connector::after {
            content: '';
            position: absolute;
            right: -1px;
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
            width: 0.5rem;
            height: 0.5rem;
            border-top: 1px solid #f8d7ba;
            border-right: 1px solid #f8d7ba;
        }
        
        .ttc-cards-container {
            position: relative;
            min-height: 400px; /* Set a minimum height to prevent layout shifts */
        }
        
        .ttc-tab-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            position: absolute;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease-out, visibility 0s linear 0.3s;
        }
        
        .ttc-tab-content.ttc-active {
            opacity: 1;
            visibility: visible;
            position: relative;
            transition: opacity 0.5s ease-out;
        }
        
        .ttc-card {
            border-radius: 0.75rem;
            overflow: hidden;
            transform: translateY(20px);
            transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
            box-sizing: border-box;
        }
        
        .ttc-tab-content.ttc-active .ttc-card {
            transform: translateY(0);
        }
        
        .ttc-tab-content.ttc-active .ttc-card:nth-child(1) {
            transition-delay: 0.05s;
        }
        
        .ttc-tab-content.ttc-active .ttc-card:nth-child(2) {
            transition-delay: 0.1s;
        }
        
        .ttc-tab-content.ttc-active .ttc-card:nth-child(3) {
            transition-delay: 0.15s;
        }
        
        
        .ttc-card-inner {
            height: 100%;
            background-color: white;
            border-radius: 12px;
            border: 1px solid var(--Light-Other-Outlined-Border, rgba(76, 78, 100, 0.22));
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        
        .ttc-card-image img{
            height: 100%;
            width: 100%;
        }
        
        .ttc-card-content {
            padding: 1.5rem;
            text-align: left;
            box-sizing: border-box;
        }
        
        .ttc-card-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }
        
        .ttc-card-icon {
            font-size: 1.5rem;
        }
        
        .ttc-card-title {
            font-family: 'Mulish', sans-serif;
            font-size: 20px;
            font-weight: 700;
            line-height: 1;
            color: #111827;
        }
        
        .ttc-card-description {
            font-family: 'Open Sans', sans-serif;
            font-size: 16px;
            font-weight: 400;
            color: #374151;
            line-height: 1.5;
        }

        .feature-card {
            max-width: 1360px;
            width: 100%;
            background-color: #F2FBF8;;
            border-radius: 64px;
            overflow: hidden;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @media (min-width: 1920px){
            .feature-card {
                max-width: 1570px;
                width: 100%;
                background-color: #F2FBF8;;
                border-radius: 64px;
                overflow: hidden;
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
        }


        @media (min-width: 2560px) {
            .card {
                    width: 1360px;
            }
        }

        .inner-content {
            padding-top: 5rem;
            padding-left: 3rem;
            padding-right: 3rem;
            padding-bottom: 5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0;
            box-sizing: border-box;
            background: #F2FBF8;
        }

        .main-heading {
            font-family: 'Mulish', sans-serif;
            font-size: 36px;
            font-weight: 800;
            text-align: center;
            margin: 0 0 0.5rem 0;
            padding: 0;
            color: #1e293b;
            box-sizing: border-box;
        }

        .description-text {
            font-family: 'Open Sans', sans-serif;
            text-align: center;
            font-size: 24px;
            font-weight: 400;
            max-width: 55rem;
            margin: 0 0 5rem 0;
            padding: 0;
            color: #000000;
            line-height: 1.2;
            box-sizing: border-box;
        }

        .visual-container {
            width: 96%;
            border-radius: 70px;
            background-color: #e4fce4;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin: 0;
            padding: 0;
        }

        .visual-container video{
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 70px;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .diagram-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .testimonial-container {
            position: relative;
            width: 1360px;
            max-width: 100%;
            height: auto;
            min-height: 537px;
            background: white;
            border-radius: 64px;
            padding: 60px 80px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            margin: 5.5rem 0;
            box-sizing: border-box;
        }

        @media (min-width: 1920px){
            .testimonial-container {
                position: relative;
                width: 1580px;
                max-width: 100%;
                height: auto;
                min-height: 537px;
                background: white;
                border-radius: 64px;
                padding: 60px 80px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
                margin-top: 3rem;
                box-sizing: border-box;
            }}

        .quote-marks {
            position: absolute;
            top: 40px;
            left: 80px;
            font-size: 120px;
            font-weight: bold;
            color: #8b5cf6;
            line-height: 1;
            font-family: "Space Grotesk", sans-serif;
            opacity: 0.9;
        }

        .testimonial-content {
            margin-top: 40px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .testimonial-text {
            font-family: 'Mulish', sans-serif;
            font-size: 46px;
            line-height: 1.2;
            color: #000000;
            text-align: left;
            font-weight: 600;
            margin-bottom: 60px;
            letter-spacing: 0.05px;
        }

        .author-section {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: auto;
        }

        .author-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #f0f0f0;
        }

        .author-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .author-name {
            font-family: 'Mulish', sans-serif;
            text-align: left;
            font-size: 24px;
            font-weight: 700;
            color: #000000;
            line-height: 1.2;
        }

        .author-title {
            font-family: 'Mulish', sans-serif;
            font-size: 24px;
            color: #000000;
            line-height: 1.3;
            font-weight: 400;
        }


        .faq-container {
            max-width: 1360px;
            margin: 5.5rem 0;
            background: white;
            border: 1px solid #b396fb;
            border-radius: 64px;
            padding: 60px 75px;
            box-sizing: border-box;
        }

        @media (min-width: 1920px) {
            .faq-container {
                max-width: 1570px;
                margin-top: 3rem;
                background: white;
                border: 1px solid #b396fb;
                border-radius: 64px;
                padding: 60px 75px;
                box-sizing: border-box;
            }
        }


        .faq-title {
            font-family: "Mulish", sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 60px;
            line-height: 1.2;
        }

        .faq-item {
            border-bottom: 1px solid #e5e5e5;
            margin-bottom: 0;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 32px 0;
            cursor: pointer;
            transition: all 0.2s ease;
            user-select: none;
        }

        .faq-question:hover {
            opacity: 0.8;
        }

        .faq-question-text {
            font-family: 'Mulish', sans-serif;
            text-align: left;
            font-size: 28px;
            font-weight: 700;
            color: #000000;
            line-height: 1.3;
            flex: 1;
        }

        .faq-icon {
            font-size: 32px;
            font-weight: 300;
            color: #1a1a1a;
            transition: transform 0.3s ease;
            min-width: 32px;
            text-align: center;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0;
        }

        .faq-answer.expanded {
            max-height: 500px;
            padding-bottom: 32px;
        }

        .faq-answer-text {
            font-family: 'Open Sans', sans-serif;
            text-align: left;
            font-size: 20px;
            font-weight: 400;
            line-height: 1.6;
            color: #000000;
            padding-right: 60px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .nrev-hero-wrapper {
            margin-top: 3rem;
            background-color: #f9da87;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding-right: 40px;
            padding-left: 40px;
            padding-bottom: 70px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
        }

        .nrev-hero-wrapper * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .nrev-globe-visual {
            margin: 0 auto;
            align-items: center;
        }


        .nrev-main-title {
            font-size: 36px;
            font-family:'Mulish', sans-serif;
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1.1;
            margin-bottom: 32px;
            letter-spacing: -0.02em;
        }

        .nrev-subtitle-text {
            font-family: 'Open Sans', sans-serif;
            font-size: 28px;
            font-weight: 400;
            line-height: 1.5;
            color: #4a4a4a;
            margin-bottom: 48px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .nrev-button-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .nrev-action-button {

            padding: 16px 32px;
            font-size: 18px;
            font-weight: 700;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            min-width: 180px;
            text-align: center;
        }

        .nrev-button-dark {
            background: #2d3748;
            color: white;
        }

        .nrev-button-dark:hover {
            background: #1a202c;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(45, 55, 72, 0.3);
        }

        .nrev-button-light {
            background: white;
            color: #2d3748;
            border: 2px solid #e2e8f0;
        }

        .nrev-button-light:hover {
            background: #f7fafc;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .nrev-footer-wrapper {
            background-image: url('nRev.png');
            background-size: 45%;
            background-position-x: right;
            background-position-y: bottom;
            background-repeat: no-repeat;
            background-color: #1e1e1e;
            padding: 60px 0 35px 0;
            font-family: "Open Sans", sans-serif;
            box-sizing: border-box;
        }

        .nrev-footer-wrapper * {
            box-sizing: border-box;
        }

        .nrev-footer-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .nrev-footer-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 30px;
            border-bottom: 1px solid #4d4d4d;
        }

        .nrev-footer-logo-section {
            display: flex;
            align-items: center;
        }

        .nrev-footer-logo {
            display: flex;
            align-items: center;
        }

        .nrev-logo-icon {
            width: 45px;
            height: 45px;
        }

        .nrev-logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            margin-top: .5rem;
        }

        .nrev-footer-nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nrev-nav-link {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .nrev-nav-link:hover {
            color: #666cff;
        }

        .nrev-footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .nrev-footer-copyright {
            color: #bababa;
            font-size: 14px;
        }

        .nrev-footer-social-links {
            display: flex;
            gap: 20px;
        }

        .nrev-social-link {
            color:  #ffffff;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .nrev-social-link:hover {
            color: #666cff;
        }

        @media (max-width: 768px) {
            .nrev-footer-main {
                justify-content: center;
                gap: 20px;
                align-items: center;
            }

            .nrev-footer-nav {
                gap: 20px;
                flex-wrap: wrap;
                align-items: center;
            }

            .nrev-footer-bottom {
                flex-direction: row;
                gap: 15px;
            }
        }


        .nrev-modal-demo-page {
            min-height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            padding: 20px;
            box-sizing: border-box;
        }

        .nrev-modal-demo-page * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .nrev-demo-trigger-button {
            background: #2d3748;
            color: white;
            border: none;
            padding: 16px 32px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nrev-demo-trigger-button:hover {
            background: #1a202c;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(45, 55, 72, 0.3);
        }

        .nrev-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .nrev-modal-overlay.nrev-modal-active {
            opacity: 1;
            visibility: visible;
        }

        .nrev-modal-container {
            width: 1048px;
            height: 462px;
            max-width: 100%;
            max-height: 90vh;
            background: white;
            border-radius: 6.85px;
            display: flex;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            transform: scale(0.9) translateY(20px);
            transition: all 0.3s ease;
            position: relative;
        }

        .nrev-modal-overlay.nrev-modal-active .nrev-modal-container {
            transform: scale(1) translateY(0);
        }

        .nrev-modal-image-section {
            position: relative;
            height: 50%;
            width: auto;
        }

        .nrev-modal-content-section {
            flex: 1;
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .nrev-modal-close-button {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            font-size: 24px;
            color: #9ca3af;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .nrev-modal-close-button:hover {
            background: #f3f4f6;
            color: #374151;
        }

        .nrev-modal-title {
            font-family: 'Mulish', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: #000000;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .nrev-modal-subtitle {
            font-family: 'Open Sans', sans-serif;
            font-size: 20px;
            font-weight: 400;
            color: #000000;
            line-height: 1.5;
            margin-bottom: 40px;
        }

        .nrev-modal-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .nrev-form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .nrev-form-label {
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            color: #000000;
            font-weight: 400;
        }

        .nrev-form-input {
            padding: 16px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.2s ease;
            background: white;
        }

        .nrev-form-input:focus {
            outline: none;
            border-color: #6366f1;
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .nrev-form-input::placeholder {
            color: #9ca3af;
        }

        .nrev-form-submit-button {
            background: #2d3748;
            color: white;
            border: none;
            padding: 16px 24px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
            min-width: 180px;
        }

        .nrev-form-submit-button:hover {
            background: #1a202c;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(45, 55, 72, 0.3);
        }

        .nrev-form-submit-button:disabled {
            background: #9ca3af;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .nrev-success-message {
            display: none;
            text-align: center;
            color: #059669;
            font-size: 18px;
            font-weight: 600;
            padding: 10px;
            background: #ecfdf5;
            border-radius: 12px;
            border: 1px solid #a7f3d0;
            margin-top: 24px;
        }

        /* Mobile Responsive */
        @media (max-width: 1100px) {
            .nrev-modal-container {
                width: 95%;
                height: auto;
                min-height: 400px;
            }
        }

        @media (max-width: 768px) {
            .nrev-modal-container {
                flex-direction: column;
                width: 95%;
                height: auto;
                max-height: 90vh;
                overflow-y: auto;
            }
            
            .nrev-modal-image-section {
                height: 50%;
                width: auto;
            }
            
            .nrev-modal-content-section {
                padding: 40px 30px;
                flex: none;
            }
            
            .nrev-modal-title {
                font-size: 28px;
            }
            
            .nrev-modal-subtitle {
                font-size: 16px;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 480px) {
            .nrev-modal-overlay {
                padding: 10px;
            }
            
            .nrev-modal-container {
                border-radius: 16px;
            }
            
            .nrev-modal-content-section {
                padding: 30px 20px;
            }
            
            .nrev-modal-title {
                font-size: 24px;
            }
            
            .nrev-form-submit-button {
                width: 100%;
            }
        }

        /* Animation */
        @keyframes nrevModalSlideIn {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .nrev-modal-container.nrev-modal-entering {
            animation: nrevModalSlideIn 0.3s ease-out;
        }

        /* Infinite scroll effect */
        @keyframes marquee {
        from { transform: translateX(-13.25%); }
        to { transform: translateX(-80%); } /* half because images repeated once */
        }

        /* Animation */
        .nrev-footer-wrapper {
            animation: nrevFooterFadeIn 0.8s ease-out;
        }

        @keyframes nrevFooterFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Animations */
        .nrev-hero-wrapper {
            animation: nrevFadeIn 1s ease-out;
        }

        .nrev-globe-visual {
            animation: nrevFloat 6s ease-in-out infinite;
        }

        .nrev-plane-icon {
            animation: nrevFly 8s linear infinite;
        }

        @keyframes nrevFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes nrevFloat {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes nrevFly {
            0% {
                opacity: 0.7;
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0.7;
            }
        }

        /* Animation */
        .faq-container {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Animation */
        .testimonial-container {
            animation: fadeInUp 0.8s ease-out;
        }

        .quote-marks {
            animation: fadeIn 1s ease-out 0.3s both;
        }

        .testimonial-text {
            animation: fadeIn 1s ease-out 0.6s both;
        }

        .author-section {
            animation: fadeIn 1s ease-out 0.9s both;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* MOBILE RESPONSIVE STYLES - ENHANCED */
        /* Mobile Navigation */
        @media (max-width: 767px) {
            #nav-container {
                padding: 12px 16px;
            }
            #nav-cta-container{
                display: flex;
                justify-content: flex-end;
                justify-content: space-between;
            }
            
            #nav-cta-button {
                font-size: 14px;
                padding: 8px 16px;
                margin-right: 1rem;
            }
            
            #logo-container img {
                height: 20px;
            }
        }

        /* Mobile Hero Section */
        @media (max-width: 767px) {
            #hero-section {
                height: auto;
                background-size: 90%;
            }
            
            #hero-grid {
                flex-direction: column;
                height: auto;
            }
            
            #hero-left-content {
                width: 100%;
                padding: 100px 16px 0px;
                text-align: center;
                order: 1;
                margin-top: 5rem;
            }
            
            #hero-headline {
                font-size: 28px;
                line-height: 1.2;
                margin-bottom: 16px;
            }
            
            #hero-subheading {
                font-size: 16px;
                line-height: 1.4;
                margin-bottom: 24px;
                max-width: 100%;
            }
            
            #hero-buttons-container {
                flex-direction: column;
                gap: 12px;
                width: 100%;
            }
            
            #hero-primary-button,
            #hero-secondary-button {
                width: 100%;
                font-size: 16px;
                padding: 12px 24px;
            }
            
            #hero-right-content {
                position: relative;
                width: 100%;
                height: 200px;
                order: 2;
                margin-top: 20px;
            }
        }

        /* Mobile Logo Marquee */
        @media (max-width: 767px) {
            .logo-marquee {
                margin-top: 3rem;
                margin-bottom: 2rem;
                height: 60px;
            }
            
            .logo-track img {
                height: 30px;
                margin: 0 20px;
            }
            
            .mind1 {
                height: 30px;
                margin: 0 20px;
            }
            
            .gradient {
                display: none;
            }
        }

        /* Mobile Card Section */
        @media (max-width: 767px) {
            .card {
                width: calc(100vw - 32px);
                background: #F8F7FD;
                height: auto;
                padding: 24px 20px;
                border-radius: 24px;
                margin: 0 16px;
            }
            
            .grid {
                grid-template-columns: 1fr;
                gap: 24px;

            }
            
            .main-title {
                font-size: 24px;
                line-height: 1.3;
            }
            
            .subtitle {
                font-size: 16px;
                line-height: 1.4;
            }
            
            .bullet-points {
                text-align: left;
                gap: 16px;
            }
            
            .bullet-text {
                font-size: 16px;
            }
            
            .card img {
                height: 200px;
                width: 60%;
                margin-left: 3rem;
            }
        }

        /* Mobile Templates Section */
        @media (max-width: 767px) {
            .ttc-main-card {
                width: calc(100vw - 32px);
                height: auto;
                padding: 24px 16px;
                border-radius: 24px;
                margin: 0 16px;
            }
            
            .ttc-title {
                font-size: 24px;
                line-height: 1.3;
                margin-bottom: 16px;
            }
            
            .ttc-subtitle {
                font-size: 16px;
                margin-bottom: 32px;
                line-height: 1.4;
            }
            
            .ttc-tabs-container {
                flex-direction: column;
                gap: 12px;
                margin-bottom: 24px;
            }
            
            .ttc-tab-group {
                flex-direction: column;
                width: 100%;
                gap: 8px;
            }
            
            .ttc-tab-button {
                width: 100%;
                padding: 12px 16px;
                font-size: 14px;
            }
            
            .ttc-tab-connector {
                display: none;
            }
            
            .ttc-tab-content {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .ttc-card-image {
                height: auto;
            }
            
            .ttc-card-content {
                padding: 16px;
            }
            
            .ttc-card-title {
                font-size: 16px;
            }
            
            .ttc-card-description {
                font-size: 14px;
            }
        }

        /* Mobile Feature Card */
        @media (max-width: 767px) {
            .feature-card {
                width: calc(100vw - 32px);
                border-radius: 24px;
                margin: 0 16px;
            }

            .visual-container{
                width: 100%;
                height: auto;
                border-radius: 24px;
            }
            
            .inner-content {
                padding: 22px 10px;
            }
            
            .main-heading {
                font-size: 28px;
            }
            
            .description-text {
                font-size: 16px;
                margin-bottom: 32px;
            }
            
            .visual-container video{
                width: 120%;
                height: 120%;
            }
            
        }

        /* Mobile Testimonial */
        @media (max-width: 767px) {
            .testimonial-container {
                width: calc(100vw - 32px);
                padding: 32px 20px;
                border-radius: 24px;
                min-height: auto;
            }
            
            .quote-marks {
                font-size: 60px;
                top: 20px;
                left: 20px;
            }
            
            .testimonial-content {
                margin-top: 20px;
            }
            
            .testimonial-text {
                font-size: 25px;
                line-height: 1.3;
                margin-bottom: 24px;
            }
            
            .author-section {
                flex-direction: row;
                align-items: flex-start;
                gap: 12px;
            }
            
            .author-avatar {
                width: 48px;
                height: 48px;
            }
            
            .author-name {
                font-size: 16px;
            }
            
            .author-title {
                font-size: 14px;
            }
        }

        /* Mobile FAQ */
        @media (max-width: 767px) {
            .faq-container {
                width: calc(100vw - 32px);
                padding: 32px 20px;
                border-radius: 24px;
                margin: 3rem 16px 0;
            }
            
            .faq-title {
                font-family: 'Mulish', sans-serif;
                font-weight: 800;
                font-size: 28px;
                margin-bottom: 32px;
            }
            
            .faq-question {
                padding: 20px 0;
            }
            
            .faq-question-text {
                font-family: 'Open Sans', sans-serif;
                font-weight: 600;
                text-align: left;
                font-size: 18px;
            }
            
            .faq-icon {
                font-size: 24px;
                min-width: 24px;
            }
            
            .faq-answer-text {
                font-size: 14px;
                padding-right: 0;
            }
            
            .faq-answer.expanded {
                padding-bottom: 20px;
            }
        }

        /* Mobile Final CTA */
        @media (max-width: 767px) {
            .nrev-hero-wrapper {
                padding: 40px 16px;
                min-height: 80vh;
            }
            
            
            .nrev-main-title {
                font-size: 28px;
                line-height: 1.2;
                margin-bottom: 20px;
                text-align: center;
            }
            
            .nrev-subtitle-text {
                font-size: 16px;
                line-height: 1.4;
                margin-bottom: 32px;
            }
            
            .nrev-button-group {
                flex-direction: column;
                gap: 12px;
                width: 100%;
            }
            
            .nrev-action-button {
                width: 100%;
                max-width: 300px;
                font-size: 16px;
                padding: 14px 24px;
                min-width: auto;
            }
        }

        /* Mobile Footer */
        @media (max-width: 767px) {
            .nrev-footer-wrapper {
                padding: 40px 0 30px 0;
            }
            
            .nrev-footer-container {
                grid-template-columns: 1fr;
                gap: 32px;
                padding: 0 16px;
            }
            
            .nrev-footer-logo-section {
                justify-content: center;
                margin-bottom: 20px;
            }
            
            .nrev-footer-column {
                text-align: center;
            }
            
            .nrev-footer-column-title {
                font-size: 16px;
                margin-bottom: 16px;
            }
            
            .nrev-footer-link {
                font-size: 14px;
            }
            
            .nrev-footer-bottom {
                padding: 24px 16px 0;
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }
            
            .nrev-footer-copyright {
                font-size: 12px;
            }
            
            .nrev-footer-social-links {
                gap: 16px;
            }
            
            .nrev-social-link {
                font-size: 12px;
            }
            
            .nrev-logo-icon {
                width: 40px;
                height: 40px;
            }
            
            .nrev-logo-letter {
                font-size: 24px;
            }
        }

        /* Tablet Responsive (768px - 1023px) */
        @media (min-width: 768px) and (max-width: 1023px) {
            #hero-left-content {
                padding-left: 40px;
                width: 55%;
                padding-top: 8rem;
            }
            
            #hero-headline {
                font-size: 36px;
            }
            
            #hero-subheading {
                font-size: 18px;
            }
            
            .card {
                width: calc(100vw - 64px);
                padding: 40px;
                margin: 0 32px;
            }
            
            .ttc-main-card {
                width: calc(100vw - 64px);
                padding: 40px 32px;
                margin: 0 32px;
            }
            
            .feature-card {
                width: calc(100vw - 64px);
                margin: 0 32px;
            }
            
            .testimonial-container {
                width: calc(100vw - 64px);
                margin: 3rem 32px 0;
                padding: 40px 50px;
            }
            
            .faq-container {
                width: calc(100vw - 64px);
                margin: 3rem 32px 0;
                padding: 40px 50px;
            }
            
            .nrev-hero-wrapper {
                padding: 60px 32px;
            }
            
            .nrev-footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
                padding: 0 32px;
            }
            
            .nrev-footer-logo-section {
                grid-column: 1 / -1;
                justify-content: center;
                margin-bottom: 20px;
            }
        }

        /* Large Mobile (480px - 767px) */
        @media (min-width: 480px) and (max-width: 767px) {
            #hero-headline {
                font-size: 32px;
                font-family: 'Mulish', sans-serif;
            }
            
            .main-title {
                font-size: 28px;
                font-family: 'Mulish', sans-serif;
            }
            
            .ttc-title {
                font-size: 28px;
                font-family: 'Mulish', sans-serif;
            }

            .main-heading{
                font-size: 28px;
                font-family: 'Mulish', sans-serif;
            }
            
            .testimonial-text {
                font-size: 28px;
            }
            
            .faq-title {
                font-size: 28px;
                font-family: 'Mulish', sans-serif;
            }
            
            .nrev-main-title {
                font-size: 32px;
                font-family: 'Mulish', sans-serif;
            }
        }

        /* Small Mobile (max-width: 479px) */
        @media (max-width: 479px) {
            .card,
            .ttc-main-card,
            .feature-card,
            .faq-container {
                margin: 0 8px;
                width: calc(100vw - 16px);
            }

            .testimonial-container{
                width: 100%;
            }
            
            .nrev-hero-wrapper {
                padding: 32px 8px;
            }
            
            .nrev-footer-container {
                padding: 0 8px;
            }
            
            .nrev-footer-bottom {
                padding: 20px 8px 0;
            }
        }

        .video-modal-trigger {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .video-modal-trigger:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
        }

        .video-modal-trigger:active {
            transform: translateY(0);
        }

        .play-icon {
            width: 0;
            height: 0;
            border-left: 12px solid white;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            margin-left: 3px;
        }

        .video-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .video-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .video-modal-content {
            position: relative;
            background: #000;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            transform: scale(0.8);
            transition: transform 0.3s ease;
            max-width: 90vw;
            max-height: 90vh;
        }

        .video-modal-overlay.active .video-modal-content {
            transform: scale(1);
        }

        .video-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            font-weight: bold;
            z-index: 1001;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .youtube-iframe {
            width: 1200px;
            height: 675px;
            border: none;
            display: block;
        }

        .video-modal-title {
            position: absolute;
            bottom: 15px;
            left: 15px;
            color: white;
            font-size: 18px;
            font-weight: 600;
            z-index: 1001;
            background: rgba(0, 0, 0, 0.7);
            padding: 8px 15px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }

        @media (max-width: 768px) {
            .video-modal-content {
                margin: 10px;
                border-radius: 10px;
            }
            
            .youtube-iframe {
                width: 100%;
                height: 56.25vw; /* 16:9 aspect ratio */
                max-height: 300px;
                min-height: 200px;
            }

            .video-modal-trigger {
                padding: 12px 25px;
                font-size: 16px;
            }

            .video-modal-close {
                top: 10px;
                right: 10px;
                width: 35px;
                height: 35px;
                font-size: 18px;
            }

            .video-modal-title {
                bottom: 10px;
                left: 10px;
                font-size: 16px;
                padding: 6px 12px;
            }
        }

        @media (max-width: 480px) {
            .video-modal-content {
                margin: 5px;
                border-radius: 8px;
            }

            .youtube-iframe {
                height: 50vw;
                max-height: 250px;
                min-height: 180px;
            }

            .video-modal-close {
                width: 32px;
                height: 32px;
                font-size: 16px;
                top: 8px;
                right: 8px;
            }

            .video-modal-title {
                font-size: 14px;
                padding: 5px 10px;
                bottom: 8px;
                left: 8px;
            }
        }

        /* Add touch-friendly styles */
        @media (hover: none) and (pointer: coarse) {
            .video-modal-close {
                width: 44px;
                height: 44px;
                font-size: 20px;
            }
            
            .video-modal-trigger:hover {
                transform: none;
            }
        }

        /* Enhanced mobile touch support */
        .video-modal-overlay {
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
        }

        .video-modal-content {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            will-change: transform;
        }

        /* Prevent zoom on double tap for iOS */
        .video-modal-close {
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        /* Better iframe handling on mobile */
        .youtube-iframe {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
