/* Enhanced CSS Reset for server compatibility - Override any server-side CSS frameworks */
.navbar,
.navbar *,
.nav-icon,
.nav-icon *,
.desktop-nav,
.desktop-nav *,
.nav-icons,
.nav-icons * {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    text-shadow: none !important;
}

/* Override Bootstrap/Foundation button styles if present */
.navbar .nav-icon.btn,
.navbar .nav-icon.button,
.navbar a.btn,
.navbar a.button {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Additional server compatibility resets */
.slider-arrow,
.slider-arrow *,
.video-slider,
.video-slider *,
.video-slide,
.video-slide * {
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
}

/* Ensure proper font rendering across all servers */
body,
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga", "kern";
}

/* Cross-browser video support */
video,
iframe {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Server-safe flexbox fallbacks */
.video-slider {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.slider-arrow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

:root {
    --primary-color: #2196F3;
    --secondary-color: #1976D2;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --black: #000000;
    --background: #f5f5f5;
    --dark-blue: #00033D;
    --blue: #0033FF;
    --light-blue: #077DFF;
    --gray: #f4f4f4;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

body {
    background: var(--dark-blue);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    font-size: 16px;
    overflow-x: hidden;
}

.fa, .fa-brands, .fa-duotone, .fa-light, .fa-regular, .fa-solid, .fa-thin, .fab, .fad, .fal, .far, .fas, .fat {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 2.5;
    text-rendering: auto;
}

/* Container for consistent spacing with server compatibility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Ensure containers work on all screen sizes */
@media (max-width: 1240px) {
    .container {
        max-width: calc(100% - 40px);
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: calc(100% - 20px);
        margin: 0 10px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: calc(100% - 10px);
        margin: 0 5px;
        padding: 0 10px;
    }
}

/* Main element spacing */
main {
    padding-top: 100px; /* Account for fixed navbar */
    overflow-x: hidden;
}

/* Section spacing */
section {
    padding: 80px 0;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

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

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none !important;
    box-shadow: none !important;
}

/* Reset any default button/link styles that might be applied by the server */
.navbar * {
    box-sizing: border-box;
}

.navbar a {
    text-decoration: none !important;
}

.navbar button {
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.desktop-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-right: 20px;
}

.nav-icon {
    color: #fff !important;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.nav-icon:hover {
    color: #007bff !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.nav-icon.active {
    color: #007bff !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Additional specificity for desktop navigation */
.desktop-nav .nav-icon {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.desktop-nav .nav-icon:hover,
.desktop-nav .nav-icon.active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Font Awesome icon reset for navigation */
.nav-icon i,
.nav-icon .fa-solid,
.nav-icon .fas,
.nav-icon .far,
.nav-icon .fab {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure navigation icons don't inherit button styles */
.navbar .nav-icon,
.navbar .nav-icon:link,
.navbar .nav-icon:visited,
.navbar .nav-icon:hover,
.navbar .nav-icon:active,
.navbar .nav-icon:focus {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    text-decoration: none !important;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: #ffffff !important;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 3, 61, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-nav-menu.active {
    transform: translateX(0);
}

.mobile-nav-item {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin: 5px 0;
    background: transparent !important;
}

.mobile-nav-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
}

/* Ensure content doesn't scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-menu {
        display: flex;
    }

    .mobile-nav-menu.active {
        display: flex;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        overflow-x: hidden;
    }

    /* Hero section fixes */
    .hero {
        padding: 40px 10px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 20px;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 30px;
        word-wrap: break-word;
    }

    /* Text scaling fixes */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
        word-wrap: break-word;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    /* Layout fixes */
    main {
        padding-top: 60px;
        overflow-x: hidden;
    }

    section {
        padding: 40px 0;
    }

    /* Content width control */
    .content-wrapper {
        max-width: 100%;
        overflow-x: hidden;
        padding: 0 15px;
    }

    /* Text size adjustments for mobile */
    body {
        font-size: 16px;
        line-height: 1.5;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Prevent horizontal scroll */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .nav-contact-btn {
        display: none; /* Hide on mobile */
    }
    
    .mobile-nav-menu .nav-contact-btn {
        display: inline-block;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Adjust content spacing */
    .container {
        padding: 0 10px;
    }

    /* Smaller text for very small screens */
    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Tighter spacing */
    section {
        padding: 30px 0;
    }

    /* Better button sizing */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: auto;
        min-width: 120px;
    }
}

/* Prevent text overflow and ensure proper wrapping */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

/* Fix for large text elements */
h1, h2, h3, .hero-title, .section-title {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Highlight Text Color Override - Multiple Specificity Levels */
.highlight-text {
    color: white !important;
    font-family: 'Poppins', sans-serif !important;
}

.hero .highlight-text {
    color: white !important;
    font-family: 'Poppins', sans-serif !important;
}

span.highlight-text {
    color: white !important;
    font-family: 'Poppins', sans-serif !important;
}

.hero p .highlight-text {
    color: white !important;
    font-family: 'Poppins', sans-serif !important;
}

.hero-content .highlight-text {
    color: white !important;
    font-family: 'Poppins', sans-serif !important;
}

section.hero .hero-content p span.highlight-text {
    color: white !important;
    font-family: 'Poppins', sans-serif !important;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.trust-item i {
    color: var(--light-blue);
    font-size: 1.1rem;
}

.iphone-card {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    font-weight: 500;
}

.iphone-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.iphone-card i {
    font-size: 1.5rem;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 51, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 51, 255, 0.4);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Social Proof */
.social-proof {
    margin-top: 3rem;
    text-align: center;
}

.social-proof p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--light-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Section Styling */
.why-choose-section,
.video-showcase-section,
.testimonials-section,
/* .cta-section {
    background: transparent;
    border-top: none;
} */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0033FF, #077DFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #077DFF, #0033FF);
    box-shadow: 0 0 20px rgba(7, 125, 255, 0.3);
}

.card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0 0 15px;
    font-weight: 600;
}

.card p {
    color: #f4f4f4;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 120%; /* Further reduced height ratio for shorter cards */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-reel {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-card:hover .video-reel {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    transition: all 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-button {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-info {
    text-align: left;
    color: #fff;
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 2;
    width: calc(100% - 30px); /* Ensure full width minus padding */
}

.video-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.category-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-info span {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* CTA Section
.cta-section {
    background: transparent;
    border-top: none;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
} */

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn::before {
    content: 'Chat with us!';
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(37, 211, 102, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.whatsapp-btn:hover::before {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 51, 255, 0.1) 0%, rgba(7, 125, 255, 0.05) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content-contact {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 150px;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--light-blue);
    margin-bottom: 0.5rem;
    display: block;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-content {
    padding: 80px 0;
}

.contact-card-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-transparent-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-transparent-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-column {
    width: 100%;
}

.column-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.column-icon {
    flex-shrink: 0;
}

.column-icon i {
    font-size: 1.8rem;
    color: var(--light-blue);
    background: rgba(7, 125, 255, 0.15);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(7, 125, 255, 0.3);
}

.column-title h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 600;
}

.column-title p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Success and Error Messages */
.success-message,
.error-message {
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    animation: slideDown 0.5s ease-out;
}

.success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.success-message i,
.error-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.success-message h3,
.error-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-message p,
.error-message p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(7, 125, 255, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.error-text {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.character-count {
    text-align: right;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.contact-submit-btn {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    position: relative;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
}

.form-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-footer i {
    color: var(--light-blue);
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin: 0 0 0.5rem 0;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-details p {
    margin: 0 0 0.5rem 0;
    color: var(--white);
    font-size: 1rem;
}

.contact-details a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--light-blue);
}

.availability {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Quick Action Buttons */
.quick-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quick-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.whatsapp-btn-alt {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.call-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.call-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(7, 125, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(7, 125, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(7, 125, 255, 0.15);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light-blue);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.social-contact h3 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
}

.social-contact .social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.social-contact .social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-contact .social-links a:hover {
    background: var(--light-blue);
    border-color: var(--light-blue);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-item h3 i {
    color: var(--light-blue);
    font-size: 1.1rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0 0.25rem;
}

.breadcrumb-current {
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    text-align: left;
    padding-bottom: 12px;
    
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0033FF, #077DFF);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #f4f4f4;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #077DFF;
    transform: translateX(5px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: var(--light-blue);
    border-color: var(--light-blue);
    transform: translateY(-2px);
}

.contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f4f4f4;
}

.contact-info a {
    color: #f4f4f4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #077DFF;
}

.contact-info i {
    color: #077DFF;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .stats-row {
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .grid-container,
    .video-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn::before {
        display: none;
    }

    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    /* Contact Page Mobile Styles */
    .contact-hero {
        padding: 100px 0 60px;
    }

    .contact-content {
        padding: 60px 0;
    }

    .contact-card-container {
        padding: 0 1rem;
    }

    .contact-transparent-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .contact-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .column-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .column-header h2 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quick-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .stat-item {
        padding: 0.75rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .breadcrumbs {
        padding: 0.75rem 0;
    }

    .breadcrumb-nav {
        font-size: 0.8rem;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        padding: 0.4rem 0.6rem;
    }

    .social-contact .social-links {
        justify-content: center;
    }

    /* Mobile-specific slider improvements */
    .video-slider-container {
        padding: 0 35px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .prev-arrow {
        left: 5px;
    }

    .next-arrow {
        right: 5px;
    }

    .video-slide {
        max-width: 240px;
    }

    /* Mobile navigation improvements */
    .navbar {
        padding: 0.8rem 1rem;
    }

    .nav-brand img {
        max-width: 120px;
    }

    /* Text alignment fixes for mobile */
    .hero-content {
        text-align: center;
        padding: 0 10px;
    }

    .highlight-text {
        font-size: 60px !important;
        line-height: 1.1;
    }

    /* Grid improvements for mobile */
    .grid-container {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    /* Video card mobile improvements */
    .video-card {
        margin: 0 auto;
        max-width: 100%;
    }

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

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .performance-indicators {
        grid-template-columns: 1fr;
    }
    
    .company-highlights {
        flex-direction: column;
    }

    .highlight-item {
        justify-content: center;
    }
    
    .about-hero-stats,
    .contact-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .hero-stat {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    /* .cta-trust-indicators {
        flex-direction: column;
        align-items: center;
    } */
    
    .trust-indicator {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .feature-name {
        font-size: 0.8rem;
    }
    
    .clipzo-value,
    .traditional-value {
        font-size: 0.75rem;
        padding: 0.8rem 0.3rem;
    }
    
    .package-price {
        margin-bottom: 1rem;
    }

    .amount {
        font-size: 2rem;
    }
    
    .popular-badge {
        display: none;
    }
}

/* Disclaimer Page Styles */
html {
    scroll-behavior: smooth;
}

.toc-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toc-container h2 {
    margin-top: 0;
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Video Slider Styles */
.video-slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.video-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.video-slider::-webkit-scrollbar {
    display: none;
}

/* Video Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: #000;
    font-size: 18px;
}

.slider-arrow:hover {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

.slider-arrow i {
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
}

.slider-arrow:hover i {
    color: #000;
}

.video-slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 260px; /* Slightly reduced width */
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 120%; /* Further reduced height ratio for shorter cards */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-info {
    text-align: left;
    color: #fff;
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 2;
    width: calc(100% - 30px); /* Ensure full width minus padding */
}

.video-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.category-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.play-button {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .video-slide {
        max-width: 240px;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .video-slide {
        max-width: 220px;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
    }
    
    .category-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .video-slide {
        max-width: 200px;
    }
    
    .video-info h3 {
        font-size: 1rem;
        line-height: 1.1;
    }
    
    .category-name {
        font-size: 0.8rem;
    }
    
    .play-button {
        width: 35px;
        height: 35px;
        bottom: 12px;
    }
}

/* Showcase Page Styles */
.showcase-page {
    background: transparent;
    min-height: calc(100vh - 80px);
    padding: 60px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #a7d9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #fff;
    color: #004e92;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Video Showcase */
.video-showcase {
    padding: 80px 0;
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.video-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.video-showcase .section-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-showcase .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.video-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 140px; /* Maximum padding to ensure arrows are completely visible */
    overflow: visible; /* Allow arrows to show outside */
    height: 450px; /* Increased height for portrait videos */
}

.carousel.slide {
    height: 100%; /* Fill full container height */
    overflow: hidden; /* Hide content that goes beyond carousel */
}

.carousel-inner {
    height: 100%;
    border-radius: 20px;
}

.carousel-item {
    height: 100%;
    border-radius: 20px;
}

.video-slide-group {
    display: flex;
    width: 100%;
    height: 100%; /* Fill full carousel height */
    gap: 10px; /* Reduced spacing between video cards */
    padding: 0 3px;
    align-items: stretch; /* Stretch items to fill full height */
    justify-content: center;
}

.video-card {
    width: calc(33.333% - 7px); /* Fixed width for consistent sizing */
    height: 100%; /* Fill full height - no gaps */
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    flex-shrink: 0; /* Prevent shrinking */
    cursor: pointer; /* Indicate clickable */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.video-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 51, 255, 0.3);
    border-color: rgba(0, 51, 255, 0.4);
}

.video-card:first-child {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.video-card:last-child {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%; /* Fill full video card height */
    overflow: hidden;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card-empty {
    opacity: 0.3;
    width: calc(33.333% - 7px);
    height: 100%; /* Fill full height even for empty cards */
    flex-shrink: 0;
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    border-radius: 20px;
}

/* Bootstrap Carousel Controls - Moved outside */
.carousel-control-prev,
.carousel-control-next {
    width: 70px;
    height: 70px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1 !important;
    z-index: 20 !important;
    border: none;
    background: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev {
    left: -80px; /* Moved even further outside - within our 140px padding */
}

.carousel-control-next {
    right: -80px; /* Moved even further outside - within our 140px padding */
}

.carousel-nav-btn {
    background: linear-gradient(135deg, var(--blue), var(--light-blue));
    border: 4px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 51, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    z-index: 25 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.carousel-nav-btn:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--blue));
    border-color: var(--light-blue);
    transform: scale(1.15);
    box-shadow: 0 20px 40px rgba(0, 51, 255, 0.6);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none !important;
    background: none !important;
}

/* Ensure our custom buttons are visible */
.carousel-control-prev .carousel-nav-btn,
.carousel-control-next .carousel-nav-btn {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Force visibility of navigation arrows */
.video-carousel-container .carousel-control-prev,
.video-carousel-container .carousel-control-next {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: absolute !important;
}

/* Add a prominent glow effect to make arrows more visible */
.carousel-nav-btn::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, rgba(0, 51, 255, 0.4), rgba(7, 125, 255, 0.4));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: blur(2px);
}

.carousel-nav-btn:hover::before {
    opacity: 1;
    filter: blur(3px);
}

/* Custom Indicators */
.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 0 20px;
}

.carousel-indicators-custom button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-indicators-custom button:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.carousel-indicators-custom button.active {
    background: var(--blue);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(0, 51, 255, 0.3);
}

.carousel-indicators-custom button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-indicators-custom button.active::after {
    opacity: 1;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px;
    aspect-ratio: 9/16; /* Portrait ratio like mobile videos */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 15px;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.video-card:hover .video-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-info {
    color: #fff;
    text-align: left;
    transition: all 0.3s ease;
}

.video-card:hover .video-info {
    display: none;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
}

.video-badge {
    background: linear-gradient(135deg, var(--blue), var(--light-blue));
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 51, 255, 0.9), rgba(7, 125, 255, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.video-card:hover .video-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 15px 35px rgba(0, 51, 255, 0.4);
}

.video-play-icon i {
    margin-left: 5px;
}

.showcase-cta {
    text-align: center;
    margin-top: 40px;
}

.showcase-cta .btn {
    background: linear-gradient(135deg, var(--blue), var(--light-blue));
    border: 2px solid var(--blue);
    color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.showcase-cta .btn:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--blue));
    border-color: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 51, 255, 0.3);
}

.no-videos-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.no-videos-message i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--blue);
}

.no-videos-message h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.no-videos-message p {
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .video-carousel-container {
        padding: 0 110px; /* More padding for arrows visibility */
        height: 380px; /* Taller for portrait videos */
    }
    
    .carousel-nav-btn {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }
    
    .carousel-control-prev {
        left: -65px;
    }
    
    .carousel-control-next {
        right: -65px;
    }
}

@media (max-width: 768px) {
    .video-showcase {
        padding: 60px 0;
    }
    
    .video-showcase .section-title {
        font-size: 2rem;
    }
    
    .video-showcase .section-subtitle {
        font-size: 1rem;
    }
    
    .video-carousel-container {
        padding: 0 90px; /* More padding for arrows visibility */
        height: 320px; /* Taller for portrait videos */
    }
    
    .carousel-inner {
        border-radius: 15px;
    }
    
    .video-slide-group {
        gap: 8px;
        padding: 0 2px;
    }
    
    .video-card {
        width: calc(50% - 4px); /* 2 videos per slide on tablets */
        border-radius: 15px;
    }
    
    .video-card:first-child,
    .video-card:last-child {
        border-radius: 15px;
    }
    
    .video-wrapper {
        border-radius: 15px;
    }
    
    .video-overlay {
        padding: 12px;
        border-radius: 15px;
    }
    
    .video-title {
        font-size: 1rem;
    }
    
    .video-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .video-play-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .carousel-indicators-custom {
        margin-top: 15px;
    }
    
    .carousel-indicators-custom button {
        width: 10px;
        height: 10px;
    }
    
    .showcase-cta {
        margin-top: 25px;
    }
    
    .showcase-cta .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .carousel-nav-btn {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .carousel-control-prev {
        left: -50px;
    }
    
    .carousel-control-next {
        right: -50px;
    }
}

@media (max-width: 480px) {
    .video-carousel-container {
        padding: 0 80px; /* More padding for arrows visibility */
        height: 280px; /* Taller for portrait videos */
    }
    
    .carousel-inner {
        border-radius: 12px;
    }
    
    .video-slide-group {
        gap: 8px;
        padding: 0 2px;
    }
    
    .video-card {
        width: 100%; /* 1 video per slide on phones */
        border-radius: 12px;
    }
    
    .video-card:first-child,
    .video-card:last-child {
        border-radius: 12px;
    }
    
    .video-wrapper {
        border-radius: 12px;
    }
    
    .video-overlay {
        padding: 10px;
        border-radius: 12px;
    }
    
    .video-title {
        font-size: 0.9rem;
    }
    
    .video-badge {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .video-play-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .carousel-nav-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .carousel-control-prev {
        left: -45px;
    }
    
    .carousel-control-next {
        right: -45px;
    }
}

/* Showcase Page Styles */
.showcase-page {
    background: var(--dark-blue);
    min-height: 100vh;
    padding-top: 100px;
}

.page-header {
    background: var(--dark-blue);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 255, 0.1) 0%, rgba(7, 125, 255, 0.05) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.page-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.page-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-blue);
    margin-bottom: 5px;
}

.page-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Category Filter Styles */
.category-filter {
    background: var(--dark-blue);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.category-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 255, 0.05) 0%, rgba(7, 125, 255, 0.02) 100%);
    pointer-events: none;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 51, 255, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--blue), var(--light-blue));
    border-color: var(--light-blue);
    color: #fff;
    box-shadow: 0 12px 35px rgba(0, 51, 255, 0.5);
    transform: translateY(-2px);
}

.filter-btn i {
    font-size: 1.1rem;
}

/* Showcase Header */
.showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.showcase-header .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

/* Showcase specific video card styling - uses same carousel structure as index.php */
.showcase-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.showcase-header .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 50px;
    text-align: center;
}

/* Responsive Design for Showcase */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .page-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .page-stats .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .category-filter {
        padding: 40px 0;
    }
    
    .filter-tabs {
        gap: 12px;
        padding: 0 20px;
    }
    
    .filter-btn {
        padding: 12px 22px;
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .filter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 51, 255, 0.3);
    }
    
    .filter-btn.active {
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(0, 51, 255, 0.4);
    }
    
    .showcase-header .section-title {
        font-size: 2rem;
    }
    
    .showcase-header .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .category-filter {
        padding: 30px 0;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 15px;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .filter-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 15px rgba(0, 51, 255, 0.3);
    }
    
    .filter-btn.active {
        transform: none;
        box-shadow: 0 6px 20px rgba(0, 51, 255, 0.4);
    }
    
    .showcase-header .section-title {
        font-size: 1.8rem;
    }
    
    .showcase-header .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.video-modal-player {
    position: relative;
    width: 100%;
    background: #000;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    max-height: 80vh;
}

.video-modal-player video {
    width: 100%;
    height: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px 12px 0 0;
    outline: none;
}

.video-modal-player video::-webkit-media-controls-panel {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
}

.video-modal-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    display: none;
}

.video-modal-loading.active {
    display: block;
}

.video-modal-info {
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 0 0 12px 12px;
}

.video-modal-info h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.modal-video-badge {
    background: linear-gradient(135deg, var(--blue), var(--light-blue));
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .video-modal-content {
        max-width: 95vw;
        max-height: 95vh;
        margin: 10px;
    }
    
    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .video-modal-player {
        min-height: 50vh;
        max-height: 70vh;
    }
    
    .video-modal-info {
        padding: 15px;
    }
    
    .video-modal-info h3 {
        font-size: 1.2rem;
    }
    
    .modal-video-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        max-width: 98vw;
        max-height: 98vh;
        margin: 5px;
        border-radius: 8px;
    }
    
    .video-modal-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .video-modal-player {
        min-height: 40vh;
        max-height: 60vh;
    }
    
    .video-modal-player video {
        border-radius: 8px 8px 0 0;
    }
    
    .video-modal-info {
        padding: 12px;
        border-radius: 0 0 8px 8px;
    }
    
    .video-modal-info h3 {
        font-size: 1.1rem;
    }
    
    .modal-video-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
}

.video-title {
    font-size: 1.2rem;
    margin: 0 0 5px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-category {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.play-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn i {
    color: #004e92;
    font-size: 1.2rem;
    margin-left: 3px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #004e92;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev {
    left: 0;
}

.nav-arrow.next {
    right: 0;
}

/* No Videos State */
.no-videos {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.no-videos i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Enhanced Hero Section */
.hero-description {
    font-size: 2.125rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 2rem 0;
}

.hero .highlight-text {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: white !important;
    display: block;
    margin-top: 0.5rem;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

/* Popular Plans Section */
.popular-plans {
    padding: 5rem 0;
    background: transparent;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.plan-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.title-highlight {
    display: inline-block;
    position: relative;
    margin-bottom: 1rem;
}

.highlight-badge {
    font-size: 0.9rem;
    text-transform: uppercase;
    background: linear-gradient(45deg, #2e08ad, #0056b3);
    padding: 0.4rem 1.2rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(60, 7, 234, 0.4);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch; /* Ensure equal height */
}

.plan-card {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.95), rgba(46, 8, 173, 0.95));
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #007bff;
    backdrop-filter: blur(10px);
    height: 100%; /* Equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(0);
    box-shadow: 0 10px 40px rgba(0, 123, 255, 0.2);
}

.plan-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.3), 0 10px 20px rgba(46, 8, 173, 0.4);
    border-color: #007bff;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.98), rgba(46, 8, 173, 0.98));
}

.plan-card.featured {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.95), rgba(46, 8, 173, 0.95));
    border-color: #007bff;
    transform: translateY(0); /* Same alignment as other card */
    box-shadow: 0 10px 40px rgba(0, 123, 255, 0.2);
}

.plan-card.featured:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.3), 0 10px 20px rgba(46, 8, 173, 0.4);
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.98), rgba(46, 8, 173, 0.98));
}

.most-popular-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(45deg, #dc3545, #ff1744);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    animation: pulse-badge 2s infinite;
    z-index: 2;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
    }
}

.plan-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.plan-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.plan-card .price {
    margin: 2rem 0;
    color: white;
}

.plan-card .price .currency {
    font-size: 2rem;
    vertical-align: top;
    margin-right: 5px;
    font-weight: 700;
}

.plan-card .price .amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    display: inline-block;
}

.plan-card:hover .price .amount {
    transform: scale(1.1);
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-list {
    margin: 2rem 0;
    text-align: left;
}

.features-list h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: white;
    padding: 0.5rem 0;
}

.feature-item i {
    color: #28a745;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.plan-card:hover .feature-item i {
    transform: scale(1.2);
    color: #32cd32;
}

.feature-item span {
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-card .btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto; /* Push button to bottom */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.plan-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: center 0.5s;
}

.plan-card .btn:hover::before {
    left: 100%;
}

.plan-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Perfect Plans Section */
.perfect-plans {
    padding: 5rem 0;
    background: transparent;
    position: relative;
}

.perfect-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.perfect-plan-card {
    background: rgba(5, 36, 96, 0.95);
    border: 1px solid rgba(46, 8, 173, 0.5);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.perfect-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: #2e08ad;
}

.plan-type {
    color: rgb(179, 190, 244);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.perfect-plan-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.plan-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.starting-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.perfect-plan-card .price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.perfect-plan-card .price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.5rem;
}

.package-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.package-pill {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.package-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.pill-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.pill-name {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.package-inclusions {
    margin: 2rem 0;
}

.package-inclusions h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-inclusions ul {
    list-style: none;
    padding: 0;
}

.package-inclusions li {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.package-inclusions i {
    color: #28a745;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(5, 36, 96, 0.95);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 8, 173, 0.3);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #2e08ad;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* CTA Section
.cta-section {
    background: transparent;
    padding: 5rem 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Showcase Section Enhancements */
.showcase-cta {
    text-align: center;
    margin-top: 3rem;
} */

.btn-outline {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

/* No Videos Message */
.no-videos-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    text-align: center;
    color: white;
    padding: 2rem;
}

.no-videos-message i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #007bff;
}

.no-videos-message h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.no-videos-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .showcase-page {
        padding: 40px 0;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .video-card {
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .category-filter {
        gap: 8px;
        padding: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .video-showcase {
        padding: 0 40px;
    }

    .video-card {
        max-width: 220px;
    }

    .video-title {
        font-size: 1.1rem;
    }

    .play-btn {
        width: 40px;
        height: 40px;
    }

    /* .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }*/

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto;
    } 
}

@media (max-width: 480px) {
    .showcase-page {
        padding: 30px 0;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .video-showcase {
        padding: 0 30px;
    }

    .video-card {
        max-width: 200px;
    }

    .video-title {
        font-size: 1rem;
    }

    .video-category {
        font-size: 0.8rem;
    }

    .play-btn {
        width: 35px;
        height: 35px;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
    }

    /* Enhanced mobile styles for new sections */
    .hero .highlight-text {
        font-size: 3.5rem !important;
    }

    .hero-description {
        font-size: 1.5rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .plan-card {
        padding: 1.5rem;
    }

    .plan-card h3 {
        font-size: 1.8rem;
    }

    .plan-card .price .amount {
        font-size: 2.8rem;
    }

    .perfect-plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .perfect-plan-card {
        padding: 2rem;
    }

    .perfect-plan-card h3 {
        font-size: 1.8rem;
    }

    .package-types {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    /* .cta-section h2 {
        font-size: 2.2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }*/

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    } 

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

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

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

.social-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.float-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.float-btn i {
    font-size: 24px;
    color: #fff;
}

.float-btn::after {
    content: attr(title);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.float-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background: #25D366;
}

.instagram-btn {
    background: #E4405F;
}

.instagram-dm-btn {
    background: #833AB4;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .social-float {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .float-btn {
        width: 40px;
        height: 40px;
    }

    .float-btn i {
        font-size: 20px;
    }
    
    .float-btn::after {
        display: none; /* Hide tooltips on mobile */
    }
}









/* Enhanced CSS Reset for server compatibility - Override any server-side CSS frameworks */
.navbar,
.navbar *,
.nav-icon,
.nav-icon *,
.desktop-nav,
.desktop-nav *,
.nav-icons,
.nav-icons * {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    text-shadow: none !important;
}

/* Override Bootstrap/Foundation button styles if present */
.navbar .nav-icon.btn,
.navbar .nav-icon.button,
.navbar a.btn,
.navbar a.button {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Additional server compatibility resets */
.slider-arrow,
.slider-arrow *,
.video-slider,
.video-slider *,
.video-slide,
.video-slide * {
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
}

/* Ensure proper font rendering across all servers */
body,
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga", "kern";
}

/* Cross-browser video support */
video,
iframe {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Server-safe flexbox fallbacks */
.video-slider {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.slider-arrow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

:root {
    --primary-color: #2196F3;
    --secondary-color: #1976D2;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --black: #000000;
    --background: #f5f5f5;
    --dark-blue: #00033D;
    --blue: #0033FF;
    --light-blue: #077DFF;
    --gray: #f4f4f4;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

body {
    background: var(--dark-blue);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    font-size: 16px;
    overflow-x: hidden;
}

.fa, .fa-brands, .fa-duotone, .fa-light, .fa-regular, .fa-solid, .fa-thin, .fab, .fad, .fal, .far, .fas, .fat {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 2.5;
    text-rendering: auto;
}

/* Container for consistent spacing with server compatibility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Main element spacing */
main {
    padding-top: 80px; /* Reduced from 100px to account for fixed navbar */
    overflow-x: hidden;
}

/* Section spacing */
section {
    padding: 40px 0; /* Reduced padding for better fit */
}

/* Hero Section */
.hero {
    min-height: 80vh; /* Adjusted to ensure content fits on one page */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    padding: 0 15px; /* Reduced padding for better fit */
}

.hero h1 {
    font-size: 2rem; /* Reduced from 3.5rem for better fit */
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.5rem; /* Reduced from 2.125rem for better fit */
    font-weight: 400;
    line-height: 1.3;
    margin: 1.5rem 0; /* Reduced margin */
}

.hero .highlight-text {
    font-size: 3.5rem; /* Reduced from 5rem for better fit */
    font-weight: 900;
    color: white !important;
    display: block;
    margin-top: 0.5rem;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem; /* Reduced gap for better fit */
    margin: 1.5rem 0; /* Reduced margin */
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1rem; /* Reduced padding */
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-size: 0.85rem; /* Reduced font size */
    transition: all 0.3s ease;
}

.trust-item i {
    color: var(--light-blue);
    font-size: 1rem; /* Reduced font size */
}

/* iPhone Card */
.iphone-card {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem; /* Reduced gap */
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 0.8rem 1.2rem; /* Reduced padding */
    margin: 1.5rem 0; /* Reduced margin */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    font-weight: 500;
}

.iphone-card i {
    font-size: 1.2rem; /* Reduced font size */
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem; 
    justify-content: center;
    margin: 2rem 0; 
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem; /* Reduced gap */
    padding: 0.8rem 1.5rem; /* Reduced padding */
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem; /* Reduced font size */
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 51, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 51, 255, 0.4);
}

.btn-large {
    padding: 1rem 2rem; /* Adjusted padding */
    font-size: 1rem; /* Adjusted font size */
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.8rem 1.5rem; /* Reduced padding */
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none !important;
    box-shadow: none !important;
}

.nav-brand img {
    height: 40px; /* Adjusted logo size */
}

.nav-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem; /* Reduced gap */
    margin-right: 10px; /* Reduced margin */
}

.nav-icon {
    color: #fff !important;
    font-size: 1rem; /* Reduced font size */
    transition: color 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px; /* Reduced size */
    height: 30px; /* Reduced size */
}

.nav-icon:hover {
    color: #007bff !important;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 25px; /* Reduced size */
    height: 25px; /* Reduced size */
    cursor: pointer;
    z-index: 1000;
}

.hamburger-line {
    width: 20px; /* Reduced size */
    height: 2px;
    background-color: #ffffff !important;
    margin: 3px 0; /* Reduced margin */
    transition: all 0.3s ease;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 3, 61, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px; /* Reduced padding */
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-nav-item {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 15px; /* Reduced padding */
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem; /* Reduced font size */
    margin: 5px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 70vh; /* Adjusted for mobile */
        padding: 20px 10px; /* Reduced padding */
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 1.5rem; /* Further reduced for mobile */
    }

    .hero-description {
        font-size: 1.2rem; /* Further reduced for mobile */
    }

    .hero .highlight-text {
        font-size: 2.5rem; /* Further reduced for mobile */
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
    }

    .iphone-card {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .navbar {
        padding: 0.6rem 1rem; /* Reduced padding */
    }

    .nav-icons {
        gap: 1rem; /* Reduced gap */
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh; /* Further adjusted for small screens */
        padding: 15px 5px; /* Reduced padding */
    }

    .hero h1 {
        font-size: 1.2rem; /* Further reduced */
    }

    .hero-description {
        font-size: 1rem; /* Further reduced */
    }

    .hero .highlight-text {
        font-size: 2rem; /* Further reduced */
    }

    .trust-indicators {
        gap: 0.8rem; /* Reduced gap */
    }

    .trust-item {
        padding: 0.5rem 0.8rem; /* Reduced padding */
        font-size: 0.8rem; /* Reduced font size */
    }

    .iphone-card {
        padding: 0.6rem 1rem; /* Reduced padding */
        font-size: 0.9rem; /* Reduced font size */
    }

    .cta-buttons {
        gap: 0.8rem;
    }

    .btn {
        padding: 0.7rem 1.2rem; /* Reduced padding */
        font-size: 0.85rem; /* Reduced font size */
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Social Float */
.social-float {
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
}

.float-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.float-btn i {
    font-size: 20px;
    color: #fff;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background: #25D366;
}

.instagram-btn {
    background: #E4405F;
}

.instagram-dm-btn {
    background: #833AB4;
}


/* Category Tabs Styling */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.category-tab {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

.category-tab:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border-color: #ff6b6b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Video Slider Container */
.video-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 30px;
}

.video-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.video-slide {
    min-width: 300px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.video-slide.hidden {
    display: none;
}

/* Video Container */
.video-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.video-reel {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-pause-btn {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-pause-btn:hover {
    background: white;
    transform: scale(1.1);
}

.play-pause-btn i {
    font-size: 24px;
    color: #ff6b6b;
}

.video-controls {
    position: absolute;
    top: 15px;
    right: 15px;
}

.sound-toggle {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    padding: 8px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sound-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Video Info */
.video-info {
    padding: 20px;
}

.video-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.category-name {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.prev-arrow {
    left: -25px;
}

.next-arrow {
    right: -25px;
}

.slider-arrow i {
    font-size: 18px;
    color: #ff6b6b;
}

/* No Videos Message */
.no-videos-message {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-videos-message i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-videos-message h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-tabs {
        padding: 0 10px;
    }
    
    .category-tab {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .video-slide {
        min-width: 280px;
    }
    
    .video-wrapper {
        height: 350px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .prev-arrow {
        left: -20px;
    }
    
    .next-arrow {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .video-slide {
        min-width: 250px;
    }
    
    .video-wrapper {
        height: 300px;
    }
    
    .video-info {
        padding: 15px;
    }
    
    .video-title {
        font-size: 16px;
    }
}



.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns per row */
    gap: 20px;
    margin-top: 40px;
}

/* Responsive: Stack on smaller screens */
@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 per row for tablets */
    }
}

@media (max-width: 576px) {
    .grid-container {
        grid-template-columns: 1fr; /* 1 per row on phones */
    }
}


