:root {
    --primary-red: #e31e24;
    --navy-blue: #0a0e27;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
    --bg-overlay: rgba(0, 0, 0, 0.4);
    --font-main: 'Archivo', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: #fff;
    color: var(--navy-blue);
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1386px;
    margin: 0 auto;
    padding: 0 0px;
}
/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--navy-blue);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loader-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    animation: lightPulse 2s infinite ease-in-out;
}

@keyframes lightPulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

/* Top Bar */
.top-bar {
    background-color: var(--navy-blue);
    color: #FFF;
    height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    line-height: normal;
    width: 100%;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info span img {
    height: 16px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a img {
    height: 18px;
    width: auto;
    transition: var(--transition);
}

.social-links a:hover img {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* Header / Navbar */
.main-header {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(10, 14, 39, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.logo img {
    width: 140px;
    height: auto;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
    margin-left: 40px;
    transition: border-color 0.4s ease;
}

.main-header.scrolled .nav-right {
    border-bottom-color: transparent;
}

.nav-links {
    display: flex;
    gap: 35px;
    margin-right: 40px;
}

.nav-links li a {
    color: #FFF;
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}

.nav-links li a:hover {
    color: var(--primary-red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-contact {
    background-color: var(--primary-red);
    color: var(--text-white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
}

.btn-contact:hover {
    background-color: #c4181d;
    transform: translateY(-2px);
}

.search-btn,
.mobile-menu-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
    display: none;
}

/* Search Popup Overlay */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.search-popup.active {
    opacity: 1;
    visibility: visible;
}

.search-close-btn {
    position: absolute;
    top: 40px;
    right: 50px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-close-btn:hover {
    transform: rotate(90deg);
    color: var(--primary-red);
}

.search-popup-content {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.search-form {
    position: relative;
    width: 100%;
}

.search-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 36px;
    font-family: var(--font-main);
    padding: 15px 60px 15px 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-form input:focus {
    border-bottom-color: var(--primary-red);
}

.search-form button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-form button:hover {
    color: var(--primary-red);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-content>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .hero-content>* {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .hero-title {
    transition-delay: 0.3s;
}

.swiper-slide-active .hero-subtitle {
    transition-delay: 0.5s;
}

.swiper-slide-active .hero-btns {
    transition-delay: 0.7s;
}

.video-background,
.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-background {
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(87.9% 57.92% at 56.6% 34.06%, rgba(13, 90, 254, 0.50) 0%, #040032 100%);
    opacity: 0.8;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    min-height: 700px;
    padding-top: 100px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-white);
}

.hero-product-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.6s;
}

.swiper-slide-active .hero-product-image {
    opacity: 1;
    transform: translateX(0);
}

.hero-product-image img {
    max-width: 100%;
    max-height: 70vh;
    height: auto;
    object-fit: contain;
    animation: floatingParallax 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

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

@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .hero-product-image {
        margin-top: 40px;
        justify-content: center;
    }
    .hero-product-image img {
        max-height: 40vh;
    }
}

.hero-title {
    font-size: 84px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.hero-btns {
    display: flex;
    gap: 25px;
    align-items: center;
}

.btn-primary {
    border: 1px solid #F7BF4A;
    background: transparent;
    color: var(--text-white);
    padding: 0 35px;
    height: 54px;
    border-radius: 50px;
    font-weight: 400;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #F7BF4A;
    color: #fff;
}

.btn-secondary {
    color: var(--text-white);
    background: transparent;
    border: none;
    padding: 0 15px;
    height: 54px;
    font-weight: 400;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: var(--transition);
}

.btn-secondary:hover {
    gap: 20px;
    color: #F7BF4A;
}

/* Swiper Pagination */
.hero-bottom-wrapper {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
}

.swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
    text-align: left !important;
    width: auto !important;
    display: flex;
    margin-right: 20px;
}

.swiper-pagination-bullet {
    width: 40px;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0 10px 0 0 !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-red);
}

.hero-bottom-line {
    flex-grow: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* About Section */
.about-section {
    padding: 100px 0 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.about-left {
    position: relative;
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1.1;
    z-index: 2;
    position: relative;
}

.text-red {
    color: var(--primary-red);
}

.map-watermark {
    margin-top: 10px;
    opacity: 0.4;
    pointer-events: none;
}

.map-watermark img {
    width: 400px;
}

.about-right {
    display: flex;
    flex-direction: column;
}

.about-top {
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 40px;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    font-weight: 300;
}

.about-description strong {
    font-weight: 700;
    color: var(--navy-blue);
}

.learn-more {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.stat-number {
    font-size: 54px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.stat-unit {
    font-size: 24px;
    font-weight: 500;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 48px;
    }

    .about-grid {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .map-watermark {
        width: 300px;
        left: 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 38px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }

    .stat-number {
        font-size: 44px;
    }
}

/* Horizontal Products Scroll */
.products-scroll-section {
    overflow: hidden;
    width: 100%;
    background: #000;
}

.products-scroll-wrapper {
    display: flex;
    width: 500%;
    /* 5 slides * 100% */
    height: 750px;
}

.product-slide {
    width: 20%;
    /* 100% / 5 */
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Adding Product Background Colors */
.bg-teal {
    background: transparent;
}

.bg-yellow {
    background: transparent;
}

.bg-blue {
    background: transparent;
}

.bg-orange {
    background: transparent;
}

.bg-purple {
    background: transparent;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    max-width: 1386px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    align-items: stretch;
    gap: 30px;
}

.slide-left {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
}

.slide-number {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.slide-title {
    font-family: 'Archivo', sans-serif;
    color: #FFF;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
    margin-top: 0;
}

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

.product-img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

.slide-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.global-nav-arrows {
    position: absolute;
    top: 100px;
    right: max(20px, calc(50vw - 693px + 20px));
    z-index: 100;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.skip-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.skip-btn.bottom-skip {
    position: absolute;
    bottom: 80px;
    right: max(20px, calc(50vw - 693px + 20px));
    z-index: 100;
    padding-bottom: 15px;
}

.skip-btn:hover {
    opacity: 1;
    color: var(--primary-red);
}

.skip-btn i {
    font-size: 12px;
}

.nav-arrows {
    display: flex;
    gap: 15px;
}

.nav-arrows .arrow {
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.6;
}

.nav-arrows .arrow:hover {
    opacity: 1;
}

.nav-arrows .arrow img {
    width: 60px;
    height: 60px;
    transition: var(--transition);
    object-fit: contain;
}

.right-text-content {
    text-align: left;
}

.slide-desc {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.95;
}

.view-all {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.view-all .text-red {
    color: var(--primary-red);
    font-size: 14px;
}

.view-all:hover {
    gap: 15px;
}

@media (max-width: 992px) {
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .global-nav-arrows {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin-bottom: 30px;
        flex-direction: row;
    }

    .nav-arrows .arrow img {
        width: 50px;
        height: 50px;
    }

    .slide-title {
        font-size: 36px;
    }

    .view-all {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-arrows .arrow img {
        width: 45px;
        height: 45px;
    }
}

/* Logo Carousel Section */
.logo-carousel-section {
    padding: 30px 0 0 0;
    background-color: #fff;
}

.logo-swiper {
    width: 100%;
    padding: 10px 0 30px 0;
    border-bottom: 1px solid #eee;
}

.logo-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-swiper img {
    max-width: 160px;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-swiper img:hover {
    transform: scale(1.05);
}

/* Single Product Section */
.single-product-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.single-product-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.single-product-top .section-title {
    font-size: 42px;
    line-height: 1.2;
}

.single-product-desc {
    padding-top: 10px;
}

.single-product-desc p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

.single-product-slider {
    width: 100%;
    margin-top: 50px;
}

.single-prod-swiper {
    width: 100%;
    padding: 20px 0;
}

.prod-card {
    background-color: #f7f7f7;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 460px;
    transition: var(--transition);
}

.prod-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
}

.prod-card:hover img {
    transform: scale(1.08);
}

@media (max-width: 992px) {
    .single-product-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Video Showcase Section */
.video-showcase-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #F8F8F8;
}

.video-showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: radial-gradient(98.67% 98.67% at 50% 6.98%, #0D5AFE 0%, #040032 100%);
    z-index: 1;
}

.video-showcase-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.video-showcase-title {
    color: #FFF;
    text-align: center;
    font-family: 'Archivo', sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 60px;
}

.video-wrapper {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    cursor: none;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

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

.video-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: rgba(228, 30, 43, 0.9);
    /* Signature Red */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
}

.video-cursor.active {
    transform: translate(-50%, -50%) scale(1);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #F8F8F8;
    padding: 30px 0 90px;
}

.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.testi-header .section-title {
    color: #0A0A3A;
    font-family: 'Archivo', sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.testi-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.testi-nav .arrow {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: #555;
}

.testi-nav .arrow:hover {
    background-color: #0A0A3A;
    color: #fff;
    border-color: #0A0A3A;
}

.testi-swiper {
    padding: 20px 0 40px;
}

.testi-swiper .swiper-slide {
    height: auto;
}

.testi-card {
    background-color: #fff;
    padding: 40px;
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testi-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    z-index: 10;
}

.quote-icon {
    color: #313589;
    font-size: 28px;
    margin-bottom: 20px;
}

.testi-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    flex-grow: 1;
    margin-bottom: 30px;
    font-weight: 400;
}

.testi-author {
    margin-top: auto;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
}

.author-desig {
    font-size: 14px;
    color: #999;
}

@media (max-width: 768px) {
    .testi-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* CTA Section */
.cta-section {
    background-color: #040032;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.cta-text {
    flex: 1;
    max-width: 850px;
    padding-bottom: 80px;
}

.cta-title {
    color: #fff;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Archivo', sans-serif;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 30px;
    height: 54px;
    border: 1px solid #F7BF4A;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: var(--transition);
}

.btn-outline i {
    font-size: 14px;
}

.btn-outline:hover {
    background-color: #F7BF4A;
    color: #040032;
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    margin-bottom: -5px;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cta-text {
        padding-bottom: 40px;
    }
}

/* Updates Section */
.updates-section {
    padding: 100px 0 50px;
    background-color: #fff;
}

.updates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.updates-header .section-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 0;
    font-family: 'Archivo', sans-serif;
}

.updates-header-text {
    max-width: 500px;
}

.updates-header-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

.updates-swiper {
    padding-bottom: 30px;
}

.update-card {
    display: flex;
    flex-direction: column;
}

.update-date {
    font-size: 14px;
    color: #333;
    text-align: right;
    margin-bottom: 15px;
    font-weight: 500;
}

.update-img {
    margin-bottom: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.update-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.update-card:hover .update-img img {
    transform: scale(1.05);
}

.update-title {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}

.updates-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 10px;
}

.updates-footer::before {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: #eaeaea;
    margin-right: 20px;
}

.view-all-link {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.view-all-link .text-red {
    color: #E62A2B;
    font-size: 14px;
}

.view-all-link:hover {
    color: #E62A2B;
}

@media (max-width: 992px) {
    .updates-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

/* Reels Section */
.reels-section {
    padding: 50px 0 120px;
    background-color: #fff;
}

.reel-card {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    cursor: pointer;
    background-color: #f0f0f0;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.play-overlay i {
    width: 60px;
    height: 60px;
    background-color: #E62A2B;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding-left: 5px;
    box-shadow: 0 5px 15px rgba(230, 42, 43, 0.4);
}

.reel-card:hover .play-overlay {
    opacity: 0;
}

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

/* Footer Section */
.site-footer {
    background: linear-gradient(180deg, #040032 0%, #020016 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.footer-bg-text-wrapper {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

.footer-bg-text {
    font-size: 25vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    font-family: 'Archivo', sans-serif;
    padding-right: 100px;
    animation: marqueeText 50s linear infinite;
    white-space: nowrap;
}

@keyframes marqueeText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-left {
    flex: 0 0 45%;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 58px;
    object-fit: contain;
}

.brand-divider {
    width: 1px;
    height: 40px;
    background-color: #E62A2B;
}

.brand-text h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 5px;
    color: #fff;
}

.brand-text p {
    font-size: 12px;
    color: #888;
    margin-bottom: 0;
}

.footer-contact {
    margin-bottom: 50px;
}

.footer-contact h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}

.footer-contact p {
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    color: #fff;
    margin-bottom: 0;
}

.text-gold {
    color: #d3a44d;
}

.footer-contact a {
    color: #fff;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #d3a44d;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-social h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.social-links a img {
    width: 100%;
    height: auto;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-right {
    flex: 0 0 50%;
    display: flex;
    justify-content: space-between;
}

.footer-widget h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 0;
}

.footer-widget ul li a {
    color: #FFF;
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    display: inline-block;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-bottom::before {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 30px;
}

.footer-bottom p {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1.98px;
    color: #888;
    margin-bottom: 0;
}

.footer-bottom a {
    color: #888;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-bottom .divider {
    margin: 0 10px;
    color: #E62A2B;
}

@media (max-width: 992px) {

    .footer-left,
    .footer-right {
        flex: 0 0 100%;
    }

    .footer-right {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-widget {
        flex: 0 0 calc(50% - 15px);
    }

    .footer-bottom {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer-widget {
        flex: 0 0 100%;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-divider {
        width: 40px;
        height: 1px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 64px;
    }
}

@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .main-header {
        top: 0;
        padding: 15px 0;
        background: rgba(10, 14, 39, 0.8);
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        display: none;
    }

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

    .hero-title {
        font-size: 48px;
    }

    .btn-contact {
        padding: 8px 15px;
        font-size: 12px;
    }

    .search-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .nav-actions {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .hero-content {
        padding-top: 100px;
        padding-left: 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .swiper-pagination {
        left: 20px !important;
        bottom: 40px !important;
    }

    .swiper-pagination-bullet {
        width: 30px;
    }

    .hero-bottom-line {
        left: 20px;
        right: 20px;
        bottom: 40px;
    }
}