@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Outfit:wght@400;600;800&display=swap');

:root {
    --primary-red: #ee1b22;
    --primary-red-hover: #1c3584;
    --logo-blue: #1c3584;
    /* Approximate from logo */
    --logo-blue-dark: #122256;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f4f7f6;
    --bg-white: #ffffff;
    --bg-dark: #1a1a2e;
    --transition-speed: 0.3s;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 220px;
}

.loader-logo {
    height: 70px;
    position: relative;
    z-index: 10;
    animation: floatingLogo 2s ease-in-out infinite alternate;
}

.loader-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-red);
    border-bottom-color: var(--logo-blue);
    animation: spin-fast 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    box-shadow: 0 0 15px rgba(238, 27, 34, 0.1);
}

.loader-spinner::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: var(--logo-blue);
    border-right-color: var(--primary-red);
    animation: spin-reverse 2s linear infinite;
}

.loader-spinner::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 35px;
    right: 35px;
    bottom: 35px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: rgba(238, 27, 34, 0.6);
    border-bottom-color: rgba(28, 53, 132, 0.6);
    animation: spin-fast 3s linear infinite;
}

@keyframes floatingLogo {
    0% {
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 5px 15px rgba(28, 53, 132, 0.15));
    }

    100% {
        transform: translateY(-12px) scale(1.08);
        filter: drop-shadow(0 15px 25px rgba(238, 27, 34, 0.3));
    }
}

@keyframes spin-fast {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes bounceTruck {
    0% {
        transform: translateX(-50%) translateY(0px);
    }

    100% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes moveRoad {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-85px);
    }
}

@keyframes dustCloud {
    0% {
        transform: translateX(80px) scale(0.5) translateY(0);
        opacity: 0.8;
    }

    100% {
        transform: translateX(-20px) scale(2.5) translateY(-20px);
        opacity: 0;
    }
}

@keyframes floatingLogo {
    0% {
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 5px 15px rgba(28, 53, 132, 0.15));
    }

    100% {
        transform: translateY(-10px) scale(1.05);
        filter: drop-shadow(0 15px 25px rgba(238, 27, 34, 0.3));
    }
}

@keyframes pulseText {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
        color: var(--primary-red);
    }
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--logo-blue);
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    border-radius: 2px;
}

.text-red {
    color: var(--primary-red);
}

.text-blue {
    color: var(--logo-blue);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-red {
    background-color: var(--primary-red);
    color: var(--bg-white);
}

.btn-red:hover {
    background-color: var(--primary-red-hover);
    box-shadow: 0 4px 15px rgba(230, 35, 40, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--logo-blue);
}

/* Header & Top Bar */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    background-color: var(--logo-blue-dark);
    color: var(--bg-white);
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info,
.top-bar-social {
    display: flex;
    gap: 20px;
}

.top-bar-info i {
    color: var(--primary-red);
    margin-right: 5px;
}

.top-bar-social a {
    color: var(--bg-white);
}

.top-bar-social a:hover {
    color: var(--primary-red);
}

header {
    background: transparent;
    transition: all var(--transition-speed);
    padding: 20px 0;
}

.header-wrapper.scrolled header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    /* Larger logo */
    transition: transform var(--transition-speed);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.get-in-touch-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links>li>a {
    font-weight: 800;
    color: var(--logo-blue-dark);
    position: relative;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: color var(--transition-speed);
}

.header-wrapper.scrolled .nav-links>li>a {
    color: var(--logo-blue);
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-red);
    transition: width var(--transition-speed);
}

.nav-links>li>a:hover::after {
    width: 100%;
}

.nav-links>li>a:hover {
    color: var(--primary-red);
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition-speed);
    border-radius: 4px;
    border-top: 3px solid var(--primary-red);
    padding: 10px 0;
    z-index: 1001;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-speed);
}

.dropdown-menu li a:hover {
    background-color: #f8fafc;
    color: var(--primary-red);
    padding-left: 25px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--bg-white);
    cursor: pointer;
    transition: color var(--transition-speed);
}

.header-wrapper.scrolled .mobile-menu-btn {
    color: var(--logo-blue);
}

/* Hero Section with Video */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(255 255 255 / 67%), rgb(73 73 83 / 44%));
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInDown 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--logo-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--bg-white);
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.exp-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding-bottom: 20px;
    z-index: 1;
}

.main-exp-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: block;
    position: relative;
    z-index: 2;
}

.shape-img {
    position: absolute;
    bottom: -248px;
    right: -333px;
    left: auto;
    width: 634px;
    opacity: 0.15;
    z-index: -1;
    animation: shapeUpDown 3s ease-in-out infinite alternate;
}

@keyframes shapeUpDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(25px);
    }
}

.exp-badge {
    position: absolute;
    bottom: -10px;
    right: -30px;
    background: var(--bg-white);
    padding: 12px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-red);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.exp-number {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.exp-text {
    font-size: 18px;
    color: var(--logo-blue);
    font-weight: 600;
    text-transform: uppercase;
}

.exp-content {
    position: relative;
    z-index: 1;
}

.exp-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.exp-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Features/Services Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('../images/2-2.webp');
    color: var(--bg-white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.features-section .section-title {
    color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform var(--transition-speed), background var(--transition-speed);
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-red);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--bg-white);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: #cbd5e1;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.products-slider {
    padding: 20px 10px 80px 10px;
}

.products-slider .swiper-slide {
    height: auto;
    display: flex;
}

.products-slider .product-card {
    height: 100%;
    width: 100%;
}

.swiper-pagination {
    bottom: 25px !important;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-red) !important;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: var(--bg-white) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: var(--primary-red) !important;
    top: auto !important;
    bottom: 10px !important;
    margin-top: 0 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-button-next {
    right: 20px !important;
}

.swiper-button-prev {
    left: 20px !important;
}

.product-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(28, 53, 132, 0.06);
    border: 1px solid rgba(28, 53, 132, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(28, 53, 132, 0.12);
}

.product-img-wrapper {
    position: relative;
    padding: 30px;
    background: radial-gradient(circle, #ffffff 0%, #f0f4f8 100%);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.product-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.15) rotate(-2deg);
}

.product-info {
    padding: 35px 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: var(--logo-blue-dark);
    font-weight: 800;
    line-height: 1.4;
    min-height: 55px;
}

.product-info .btn-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px !important;
    text-transform: uppercase;
    font-size: 0.9rem !important;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-top: auto;
    transition: all 0.4s ease;
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.product-info .btn-product:hover {
    background-color: var(--primary-red);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(238, 27, 34, 0.2);
}

.product-info .btn-product i {
    transition: transform 0.3s ease;
}

.product-info .btn-product:hover i {
    transform: translateX(5px);
}

/* Stats Section Redesigned */
.stats-section.light-bg {
    padding: 100px 0;
    background: linear-gradient(135deg, #e9bfc01c 0%, #ee1b2200 100%);
    position: relative;
    overflow: hidden;
}

.stats-center-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.stats-side {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
}

.stats-center-img {
    flex: 1.2;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stats-center-img img {
    max-width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.stat-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(238, 27, 34, 0.05);
    border: 1px solid rgba(238, 27, 34, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 3;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(238, 27, 34, 0.1);
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(238, 27, 34, 0.08);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--logo-blue-dark);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* CTA Card Section */
.cta-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.cta-card {
    position: relative;
    background-color: var(--primary-red);
    border-radius: 24px;
    padding: 70px 60px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(238, 27, 34, 0.2);
}

.cta-circles {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.95);
    background-image: url('../images/logo.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
    border-radius: 50%;
    box-shadow:
        0 0 0 60px rgba(255, 255, 255, 0.8),
        0 0 0 120px rgba(255, 255, 255, 0.6),
        0 0 0 180px rgba(255, 255, 255, 0.4),
        0 0 0 240px rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.cta-card-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.cta-card-content h2 {
    color: var(--bg-white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-card-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-pill {
    display: inline-flex;
    align-items: center;
    background-color: var(--logo-blue-dark);
    color: var(--bg-white) !important;
    padding: 8px 8px 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn-pill span {
    margin-right: 20px;
}

.cta-btn-pill .btn-icon {
    width: 35px;
    height: 35px;
    background-color: #cbd5e1;
    color: var(--logo-blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.cta-btn-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3);
}

.cta-btn-pill:hover .btn-icon {
    background-color: var(--bg-white);
}

@media (max-width: 992px) {
    .cta-card-content {
        max-width: 100%;
        text-align: center;
    }

    .cta-circles {
        right: 50%;
        transform: translate(50%, -50%);
        opacity: 0.5;
    }

    .cta-buttons {
        justify-content: center;
    }
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #f1f5f9;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-widget h4 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
}

.footer-logo {
    /* background: white; */
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 150px;
}

.contact-info li {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-info i {
    color: var(--primary-red);
    margin-top: 5px;
    margin-right: 15px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '›';
    color: var(--primary-red);
    margin-right: 10px;
    font-size: 1.2rem;
}

.footer-links a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--bg-white);
    transition: all var(--transition-speed);
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-bottom {
    background: #020617;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-bottom span {
    color: var(--primary-red);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-text {
        text-align: center;
    }

    .stats-center-layout {
        flex-direction: column;
    }

    .stats-side {
        flex-direction: row;
        width: 100%;
        order: 2;
    }

    .stats-center-img {
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .top-bar .container {
        justify-content: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .exp-badge {
        right: 0;
        left: 0;
        margin: 0 auto;
        width: max-content;
        bottom: -30px;
    }

    .exp-number {
        font-size: 3rem;
    }

    .exp-text {
        font-size: 1.2rem;
    }

    .stats-side {
        flex-direction: column;
    }

    .stat-card {
        margin-bottom: 20px;
    }

    .nav-right {
        gap: 15px;
    }

    .get-in-touch-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .logo img {
        height: 60px;
        /* smaller logo on mobile */
    }

    .shape-img {
        width: 350px;
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: -140px;
        opacity: 0.1;
    }

    .menu-columns {
        flex-direction: column;
        gap: 5px !important;
    }

    .menu-columns ul {
        flex: none !important;
    }

    .menu-left {
        padding: 60px 20px 20px !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .menu-left ul li {
        margin-bottom: 22px !important;
    }

    .menu-left ul li a {
        font-size: 1rem !important;
    }

    .close-btn {
        top: 20px;
        right: 20px;
        font-size: 2rem;
        z-index: 10000;
    }

    .products-slider {
        padding: 20px 10px 60px 10px !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* Hamburger Icon in Header */
.header-hamburger {
    font-size: 1.8rem;
    color: var(--primary-red);
    cursor: pointer;
    transition: color var(--transition-speed);
}

.header-wrapper.scrolled .header-hamburger {
    color: var(--logo-blue);
}

.header-hamburger:hover {
    color: var(--bg-white);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../images/back.jpeg') center/cover no-repeat;
    z-index: 9999;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.9s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
}

.menu-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 30, 0.85);
    z-index: -1;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2.5rem;
    color: var(--bg-white);
    cursor: pointer;
    z-index: 2001;
    transition: transform var(--transition-speed);
}

.close-btn:hover {
    transform: rotate(90deg);
    color: var(--primary-red);
}

.menu-content {
    display: flex;
    width: 100%;
    height: 100%;
}

.menu-left {
    flex: 1.8;
    display: flex;
    align-items: center;
    padding-left: 8%;
    padding-right: 5%;
}

.menu-columns {
    display: flex;
    gap: 80px;
    width: 100%;
}

.menu-columns ul {
    flex: 1;
}

.menu-left ul li {
    margin-bottom: 25px;
    list-style: none;
}

.menu-left ul li a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bg-white);
    font-family: 'Inter', sans-serif;
    transition: color 0.3s, padding-left 0.3s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.menu-icon {
    width: 35px;
    color: var(--primary-red);
    font-size: 1.2rem;
    text-align: center;
}

.menu-left ul li a:hover {
    color: var(--primary-red);
    padding-left: 15px;
}

/* Sub-menu styling for fullscreen menu */
.menu-left ul li.menu-item-has-children {
    position: relative;
}

.menu-left ul li .sub-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding-left: 35px;
    margin-top: 0;
    margin-bottom: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.menu-left ul li.menu-item-has-children:hover .sub-menu {
    max-height: 500px;
    margin-top: 15px;
    opacity: 1;
}

.menu-left ul li .sub-menu li {
    margin-bottom: 15px;
}

.menu-left ul li .sub-menu li a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #cbd5e1;
    text-transform: capitalize;
}

.menu-left ul li .sub-menu li a:hover {
    color: var(--bg-white);
    padding-left: 10px;
}

.menu-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    color: var(--bg-white);
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.info-card p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-contact p {
    margin-bottom: 10px;
    color: var(--bg-white);
    display: flex;
    align-items: center;
}

.card-contact i {
    color: var(--primary-red);
    width: 25px;
}

@media (max-width: 992px) {
    .menu-content {
        flex-direction: column;
    }

    .menu-right {
        display: none;
        /* Hide image on mobile for a cleaner menu */
    }

    .menu-left {
        padding: 40px;
        justify-content: center;
    }

    .menu-left ul li a {
        font-size: 22px;
    }

}

/* ========================================================================= */
/* ABOUT US PAGE STYLES */
/* ========================================================================= */

/* 1. Page Hero */
.page-hero {
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero {
    height: 60vh;
    background: url('../images/1.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero .hero-overlay {
    background: rgba(15, 23, 42, 0.7);
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.5rem;
    color: #cbd5e1;
}

/* 2. Overview Section */
.about-overview-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.overview-new-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.overview-image-wrapper {
    position: relative;
    border-radius: 12px;
}

.main-overview-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.experience-floating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--logo-blue-dark);
    color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.4);
    border: 4px solid var(--bg-white);
}

.experience-floating-badge .badge-num {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: #f59e0b;
    font-family: 'Outfit', sans-serif;
}

.experience-floating-badge .badge-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 10px;
}

.overview-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.overview-section-header .sub-heading-tag {
    margin-bottom: 20px;
}

.lead-text-center {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.6;
    margin-top: 15px;
}

.sub-heading-tag {
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 5px;
}

.company-name-new {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--logo-blue-dark);
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .company-name-new {
        font-size: 2rem;
        margin-bottom: 15px;
    }
}

.lead-text {
    font-size: 1.3rem !important;
    color: #334155 !important;
    font-weight: 600;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
    border-left: 4px solid var(--primary-red);
    padding-left: 20px;
}

.text-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card-small {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-card-small:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.info-card-small i {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.info-card-small p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 3. Bottom Blocks */
.overview-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
}

.overview-block {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    overflow: hidden;
    cursor: pointer;
}

.overview-block .block-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    transition: all 0.4s ease;
}

.overview-block h4 {
    color: var(--bg-white);
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.overview-block .block-line {
    width: 50px;
    height: 2px;
    background-color: #f59e0b;
    position: relative;
    z-index: 2;
    margin-top: 20px;
    transition: width 0.4s ease;
}

.overview-block:hover .block-overlay {
    background: rgba(238, 27, 34, 0.8);
}

.overview-block:hover h4 {
    transform: translateY(-10px);
}

.overview-block:hover .block-line {
    width: 100px;
}

/* 4. Stats Section */
.about-stats-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 100px 0 1px;
    position: relative;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    margin-bottom: 80px;
}

.about-stat-item i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.about-stat-item .stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 10px;
    line-height: 1;
}

.about-stat-item .stat-label {
    font-size: 1.2rem;
    color: #94a3b8;
}

.stats-bottom-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

.stats-bottom-title h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bg-white);
    letter-spacing: 2px;
}

.stats-bottom-title .red-line {
    width: 80px;
    height: 3px;
    background-color: var(--primary-red);
}

/* ========================================================================= */
/* PRODUCT PAGE STYLES */
/* ========================================================================= */

.product-hero {
    height: 60vh;
    background: url('../images/3.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-hero .hero-overlay {
    background: rgb(0 0 0 / 34%);
}

.products-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--primary-red);
}

.product-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f1f5f9;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-box img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-btn {
    background: var(--primary-red);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.product-card:hover .view-btn {
    transform: translateY(0);
}

.view-btn:hover {
    background: #fff;
    color: var(--primary-red);
}

.product-content {
    padding: 30px;
    text-align: center;
}

.product-content h3 {
    font-size: 1.4rem;
    color: var(--logo-blue-dark);
    margin-bottom: 15px;
}

.product-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('../images/back.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
}

/* 5. Why Choose Us Section */
.about-why-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(238, 27, 34, 0.1);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: var(--primary-red);
    color: #fff;
}

.why-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.why-image-wrapper {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.image-frame {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: 10px solid rgba(238, 27, 34, 0.1);
    border-radius: 12px;
    z-index: 1;
}

.why-image-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.why-floating-box {
    position: absolute;
    top: 40px;
    right: -20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    font-weight: 700;
    color: var(--logo-blue-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-floating-box i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.red-underline {
    width: 80px;
    height: 2px;
    background-color: var(--primary-red);
    margin: 20px 0 40px 0;
}

/* ========================================================================= */
/* GALLERY & LIGHTBOX STYLES */
/* ========================================================================= */

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #e2e8f0;
    border-radius: 30px;
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}

.gallery-item.hide {
    display: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    background: #f1f5f9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-red);
}


/* ========================================================================= */
/* CAREER PAGE STYLES */
/* ========================================================================= */

.career-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.career-image-container img {
    width: 100%;
    height: auto;
}

.career-form-container {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.career-form .form-row {
    margin-bottom: 25px;
}

.career-form .full-width {
    width: 100%;
}

.career-form .two-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.career-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    color: #334155;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    font-family: inherit;
}

.career-form .form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.career-form textarea.form-control {
    resize: vertical;
}

/* File Upload Custom Styling */
.upload-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.file-input {
    display: none;
}

.file-btn {
    padding: 10px 20px;
    background-color: #e2e8f0;
    color: #334155;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.file-btn:hover {
    background-color: #cbd5e1;
}

.file-name {
    color: #94a3b8;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .career-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .career-form .two-cols {
        grid-template-columns: 1fr;
    }
}


/* ========================================================================= */
/* CONTACT PAGE STYLES */
/* ========================================================================= */

/* Contact Split Grid */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vertical-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 0;
    border-left: 5px solid var(--primary-red);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    cursor: default;
}

.vertical-card:hover {
    background: var(--primary-red);
    transform: translateX(10px);
}

.vertical-card .icon-circle {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: all 0.4s ease;
}

.vertical-card:hover .icon-circle {
    background: #fff;
    color: var(--primary-red);
}

.vertical-card .card-content {
    flex-grow: 1;
}

.vertical-card h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 700;
    transition: all 0.4s ease;
}

.vertical-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    transition: all 0.4s ease;
    word-break: break-word;
}

.vertical-card:hover h3,
.vertical-card:hover p {
    color: #fff;
}

.contact-form-side .career-form-container {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.map-section iframe {
    display: block;
}

@media (max-width: 991px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    .contact-info-vertical {
        height: auto !important;
        align-self: start;
    }
    .vertical-card {
        height: auto !important;
        flex: 0 0 auto !important;
    }
}

/* ========================================================================= */
/* PRODUCT DETAILS PAGE STYLES */
/* ========================================================================= */
.product-split-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-image-col {
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.product-image-col img.detail-main-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.detail-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.detail-desc {
    color: #475569;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.detail-features ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.detail-features li {
    margin-bottom: 0;
    font-size: 1.05rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-features li i {
    color: var(--primary-red);
}

/* Specifications Table */
.specs-section .table-responsive {
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.specs-table th,
.specs-table td {
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    color: #334155;
    vertical-align: middle;
}

.specs-table th {
    background: var(--primary-red);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: 1px solid #dc2626;
}

.specs-table tbody tr:hover {
    background-color: #f8fafc;
}

/* ========================================================================= */
/* SPARES & ACCESSORIES DETAILS STYLES */
/* ========================================================================= */
.spares-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.spare-feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.spare-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.spare-feature-card .sf-icon {
    width: 70px;
    height: 70px;
    background: #f1f5f9;
    color: var(--primary-red);
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.spare-feature-card:hover .sf-icon {
    background: var(--primary-red);
    color: #fff;
}

.spare-feature-card h4 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.spare-feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.compatibility-banner {
    background: linear-gradient(135deg, var(--primary-dark), #0f172a);
    border-radius: 15px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.2);
}

.compatibility-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.compat-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.compat-content p {
    font-size: 1.1rem;
    color: #ef272d;
    margin: 0;
    max-width: 600px;
}

.compat-icon {
    background: var(--primary-red);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

/* ========================================================================= */
/* UPDATE FOOTER GRID */
/* ========================================================================= */
.footer-grid {
    display: grid !important;
    grid-template-columns: 1.8fr 1.5fr 1fr 1.3fr 1.3fr !important;
    gap: 30px !important;
}

.footer-widget .social-links {
    margin-top: 25px;
}

.footer-widget .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-widget .social-links a:hover {
    background: var(--primary-red);
    color: #fff;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

/* Footer Shapes */
.footer-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
    animation: floatShape 4s ease-in-out infinite;
    pointer-events: none;
}

.footer-shape-left {
    top: -49px;
    left: -113px;
    width: 350px;
}

.footer-shape-right {
    bottom: 0;
    right: 0;
    width: 350px;
    animation-delay: 2s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .product-split-view {
        grid-template-columns: 1fr;
    }

    .spares-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compatibility-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .spares-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations CSS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/* Responsive Media Queries for About Us */
@media (max-width: 992px) {

    .overview-new-layout,
    .why-new-layout,
    .text-content-grid {
        grid-template-columns: 1fr;
    }

    .why-cards-grid,
    .products-grid,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .overview-blocks {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .about-stats-grid,
    .why-cards-grid,
    .products-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .experience-floating-badge {
        right: 50%;
        transform: translateX(50%);
        width: 80%;
        max-width: 300px;
        bottom: -40px;
    }

    .overview-image-wrapper {
        margin-bottom: 60px;
    }

    /* Mobile Hero Fonts */
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .btn {
        display: block;
        margin: 15px auto !important;
        width: 100%;
        max-width: 280px;
    }

}

/* Mobile Menu Dropdown */
.menu-item-has-children .sub-menu {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
}

.menu-item-has-children.active .sub-menu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.menu-item-has-children>a i.fa-chevron-down {
    transition: transform 0.3s ease;
}

.menu-item-has-children.active>a i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Scroll Top Button */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: var(--primary-red);
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(238, 27, 34, 0.4);
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    background-color: var(--logo-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.4);
}

/* WhatsApp Widget */
.whatsapp-widget-container {
    display: none;
    position: fixed;
    bottom: 0;
    left: 20px;
    width: 270px;
    z-index: 9999;
    background: white;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(calc(100% - 55px));
    transition: transform 0.4s ease-in-out;
}

.whatsapp-widget-container:hover {
    transform: translateY(0);
}

.wa-widget-header {
    background: #2eae1e;
    color: white;
    height: 55px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 12px 12px 0 0;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    cursor: pointer;
}

.wa-icon-wrapper {
    position: absolute;
    right: 20px;
    top: -20px;
    background: #2eae1e;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    border: 3px solid white;
}

.wa-widget-body {
    padding: 20px;
    background: #fff;
}

.wa-widget-body p {
    font-size: 14.5px;
    color: #222;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.wa-chat-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s;
}

.wa-chat-btn:hover {
    opacity: 0.9;
}

.wa-avatar-icon {
    width: 45px;
    height: 45px;
    background: #20b2aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin-right: 15px;
    border: 3px solid #25D366;
    box-shadow: 0 0 0 2px #dcf8c6;
    flex-shrink: 0;
    position: relative;
}

.wa-chat-bubble {
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #eee;
}

.wa-chat-bubble::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #fff;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
}


/* Mobile View WhatsApp Button Override */
@media (max-width: 768px) {
    .whatsapp-widget-container {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        bottom: 90px !important;
        right: 30px !important;
        left: auto !important;
        transform: translateY(0) !important;
        background: #25D366 !important;
        overflow: hidden !important;
        padding: 0 !important;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
    }

    .whatsapp-widget-container .wa-widget-header {
        display: none !important;
    }

    .whatsapp-widget-container .wa-widget-body {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
    }

    .whatsapp-widget-container .wa-widget-body p,
    .whatsapp-widget-container .wa-widget-body .wa-avatar-icon,
    .whatsapp-widget-container .wa-widget-body .wa-chat-bubble {
        display: none !important;
    }

    .whatsapp-widget-container .wa-chat-btn {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .whatsapp-widget-container .wa-chat-btn::before {
        content: '\f232';
        /* padding-left: 20px;
    margin-top: 10px; */
    }

    .menu-item-has-children.active .sub-menu {
        display: block;
        animation: fadeInDown 0.3s ease;
    }

    .menu-item-has-children>a i.fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .menu-item-has-children.active>a i.fa-chevron-down {
        transform: rotate(180deg);
    }

    /* Scroll Top Button */
    #scrollTopBtn {
        display: none;
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 999;
        font-size: 20px;
        border: none;
        outline: none;
        background-color: var(--primary-red);
        color: white;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(238, 27, 34, 0.4);
        transition: all 0.3s ease;
    }

    #scrollTopBtn:hover {
        background-color: var(--logo-blue-dark);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(15, 23, 42, 0.4);
    }

    /* WhatsApp Widget */
    .whatsapp-widget-container {
        display: none;
        position: fixed;
        bottom: 0;
        left: 20px;
        width: 270px;
        z-index: 9999;
        background: white;
        border-radius: 12px 12px 0 0;
        box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15);
        transform: translateY(calc(100% - 55px));
        transition: transform 0.4s ease-in-out;
    }

    .whatsapp-widget-container:hover {
        transform: translateY(0);
    }

    .wa-widget-header {
        background: #2eae1e;
        color: white;
        height: 55px;
        display: flex;
        align-items: center;
        padding: 0 20px;
        border-radius: 12px 12px 0 0;
        font-weight: 600;
        font-size: 16px;
        position: relative;
        cursor: pointer;
    }

    .wa-icon-wrapper {
        position: absolute;
        right: 20px;
        top: -20px;
        background: #2eae1e;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: white;
        border: 3px solid white;
    }

    .wa-widget-body {
        padding: 20px;
        background: #fff;
    }

    .wa-widget-body p {
        font-size: 14.5px;
        color: #222;
        margin: 0 0 20px 0;
        font-weight: 500;
    }

    .wa-chat-btn {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #333;
        transition: opacity 0.3s;
    }

    .wa-chat-btn:hover {
        opacity: 0.9;
    }

    .wa-avatar-icon {
        width: 45px;
        height: 45px;
        background: #20b2aa;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 22px;
        margin-right: 15px;
        border: 3px solid #25D366;
        box-shadow: 0 0 0 2px #dcf8c6;
        flex-shrink: 0;
        position: relative;
    }

    .wa-chat-bubble {
        background: #fff;
        padding: 10px 15px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        position: relative;
        font-weight: 600;
        font-size: 14px;
        border: 1px solid #eee;
    }

    .wa-chat-bubble::before {
        content: '';
        position: absolute;
        left: -6px;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        width: 10px;
        height: 10px;
        background: #fff;
        border-left: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }


    /* Mobile View WhatsApp Button Override */
    @media (max-width: 768px) {
        .whatsapp-widget-container {
            width: 50px !important;
            height: 50px !important;
            border-radius: 50% !important;
            bottom: 90px !important;
            right: 30px !important;
            left: auto !important;
            transform: translateY(0) !important;
            background: #25D366 !important;
            overflow: hidden !important;
            padding: 0 !important;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
        }

        .whatsapp-widget-container .wa-widget-header {
            display: none !important;
        }

        .whatsapp-widget-container .wa-widget-body {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            height: 100% !important;
            width: 100% !important;
            padding: 0 !important;
            background: transparent !important;
            border: none !important;
        }

        .whatsapp-widget-container .wa-widget-body p,
        .whatsapp-widget-container .wa-widget-body .wa-avatar-icon,
        .whatsapp-widget-container .wa-widget-body .wa-chat-bubble {
            display: none !important;
        }

        .whatsapp-widget-container .wa-chat-btn {
            width: 100% !important;
            height: 100% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            background: transparent !important;
            border: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        .whatsapp-widget-container .wa-chat-btn::before {
            content: '\f232';
            font-family: 'Font Awesome 6 Brands';
            color: white;
            font-size: 28px;
        }
    }
}

/* Form Styles */
.career-form-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.form-row {
    margin-bottom: 25px;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

@media (max-width: 767px) {
    .form-row.two-cols {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .career-form-container {
        padding: 30px 20px !important;
        margin: 0 -17px;
    }
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    color: #333;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(238, 27, 34, 0.1);
    background-color: #fff;
}

.form-control::placeholder {
    color: #94a3b8;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* File Upload Styles */
.upload-row {
    background-color: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.upload-row:hover {
    border-color: var(--primary-red);
}

.upload-label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--logo-blue-dark);
}

.file-upload-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.file-input {
    position: absolute;
    left: -9999px;
}

.file-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--logo-blue);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.file-btn:hover {
    background-color: var(--logo-blue-dark);
}

.file-name {
    color: #64748b;
    font-size: 14px;
}

/* Global Presence Section */
.global-presence-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--logo-blue-dark);
    background-image: url('../images/world_map_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--bg-white);
    overflow: hidden;
}

.global-presence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 71%);
    /* Dark overlay */
    z-index: 1;
}

.global-presence-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.global-presence-content .section-title {
    text-align: center !important;
    margin-bottom: 20px !important;
}

.global-presence-content .section-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.presence-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.presence-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 50px;
}

.presence-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.p-stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, border-color 0.3s ease;
    flex: 1 1 220px;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.p-stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-red);
}

.p-stat-item h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 10px;
}

.p-stat-item p {
    font-size: 1rem;
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .presence-stats {
        flex-direction: column;
        gap: 20px;
    }

    .presence-subtitle {
        font-size: 1.1rem;
    }

    .presence-desc {
        font-size: 1rem;
    }

    .p-stat-item h3 {
        font-size: 2.2rem;
    }
}

/* Infrastructure Page Styles extracted from inline CSS */
.page-banner-infra {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 190px 0;
    color: #fff;
    text-align: center;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 45%);
    ;
}

.page-banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.page-banner-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.infra-overview-sec {
    padding: 80px 0;
    background: #fff;
}

.infra-overview-img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.infra-overview-pad {
    padding: 20px;
}

.infra-overview-h5 {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.infra-overview-h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--logo-blue-dark);
    margin-bottom: 25px;
}

.infra-overview-p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.infra-overview-p:last-of-type {
    margin-bottom: 0;
}

.infra-facilities-sec {
    padding: 80px 0;
    background: #f8fafc;
}

.infra-facilities-h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--logo-blue-dark);
}

.infra-facilities-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    margin: 20px auto;
}

.infra-highlight-sec {
    padding: 100px 0;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.infra-highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 17, 32, 0.95) 0%, rgba(11, 17, 32, 0.7) 100%);
}

.infra-highlight-h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.infra-highlight-p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-contact-custom {
    border: 2px solid var(--primary-red);
    background: var(--primary-red);
    padding: 12px 35px;
    color: #fff;
    display: inline-block;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.btn-contact-custom:hover {
    background: transparent;
    color: var(--primary-red);
}

/* Custom Grid for Infrastructure Page */
.infra-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.infra-row.align-center {
    align-items: center;
}

.infra-col-6 {
    width: 50%;
    padding: 0 15px;
}

.infra-col-4 {
    width: 33.3333%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.infra-col-8 {
    width: 66.6666%;
    padding: 0 15px;
}

@media (max-width: 991px) {

    .infra-col-6,
    .infra-col-8 {
        width: 100%;
        margin-bottom: 30px;
    }

    .infra-col-4 {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .infra-col-4 {
        width: 100%;
    }
}

/* Facility Cards CSS */
.facility-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--logo-blue-dark) 0%, #1e293b 100%);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.facility-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.facility-card .fc-icon {
    width: 70px;
    height: 70px;
    background: rgba(220, 53, 69, 0.1);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.facility-card:hover .fc-icon {
    background: var(--primary-red);
    color: #fff;
    transform: rotateY(360deg);
}

.facility-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--logo-blue-dark);
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.facility-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    transition: color 0.4s ease;
}

.facility-card:hover h3,
.facility-card:hover p {
    color: #fff;
}


/* Global Presence Styles */
.gp-section-h2 {
    color: var(--logo-blue-dark);
    font-size: 3rem;
    font-weight: 800;
    margin: 15px 0;
}

.gp-section-p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.gp-dark-map-box {
    background-color: #08101a;
    background-size: cover;
    background-position: left center;
    border-radius: 24px;
    padding: 80px 70px;
    margin: 60px -257px 0 -257px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.gp-map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 16, 26, 0.1) 0%, rgba(8, 16, 26, 0.95) 70%, rgba(8, 16, 26, 1) 100%);
    z-index: 1;
}

.gp-timeline-h3 {
    color: var(--logo-blue-dark);
    font-size: 1.2rem;
    font-weight: 700;
}

.gp-timeline-p {
    color: #64748b;
    margin: 5px 0 0;
}

.gp-trust-sec {
    padding: 80px 0;
    background: #fff;
}

.gp-trust-title-wrap {
    margin-bottom: 50px;
}

.gp-trust-h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--logo-blue-dark);
}

/* User Custom Map CSS - Mixed Theme */
.global-presence {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

@media (max-width: 991px) {
    .dark-map-box {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 40px 20px !important;
    }
}

.map-wrapper {
    position: relative;
    width: 100%;
}

.world-map {
    width: 100%;
    display: block;
    opacity: 1;
}

/* LOCATION PINS */
.pin {
    position: absolute;
    cursor: pointer;
}

.pin span {
    width: 16px;
    height: 16px;
    background: var(--primary-red);
    display: block;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px rgba(238, 27, 34, 0.5);
}

.pin span::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid #ee1b22;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.label {
    position: absolute;
    left: 30px;
    top: -18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    border-radius: 8px;
    min-width: 160px;
    opacity: 0;
    transform: translateY(15px);
    transition: .35s;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.label h4 {
    color: var(--logo-blue-dark);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.label p {
    color: #64748b;
    font-size: 13px;
    margin: 0;
}

.pin:hover .label {
    opacity: 1;
    transform: translateY(0);
}

/* PIN POSITIONS FOR WIDE BACKGROUND */
.usa {
    top: 43%;
    left: 12%;
}

.uk {
    top: 22%;
    left: 22%;
}

.uae {
    top: 39%;
    left: 28%;
}

.india {
    top: 48%;
    left: 38.5%;
}

.australia {
    top: 70%;
    left: 48%
}

/* Timeline Styles */
.timeline-wrapper {
    position: relative;
    padding-left: 50px;
    margin-left: 20px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -41px;
    top: 25px;
    width: 14px;
    height: 14px;
    background: var(--primary-red);
    border-radius: 50%;
    border: 3px solid #08101a;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    border-left: 4px solid var(--logo-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-card h3 {
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.timeline-card p {
    color: #cbd5e1 !important;
}

.timeline-card::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 31px;
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot {
    background: #ffffff;
    box-shadow: 0 0 10px var(--primary-red), 0 0 0 3px rgba(238, 27, 34, 0.4);
    border-color: var(--primary-red);
}

.timeline-item:hover .timeline-card {
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    border-left: 4px solid var(--primary-red);
    background: rgba(255, 255, 255, 0.12);
}

.timeline-item:hover .timeline-card::before {
    background: var(--primary-red);
    box-shadow: 0 0 10px rgba(238, 27, 34, 0.5);
}

.timeline-item:hover .timeline-card h3 {
    color: var(--primary-red) !important;
    text-shadow: 0 0 15px rgba(238, 27, 34, 0.3);
}

@media(max-width:991px) {
    .timeline-wrapper {
        margin-top: 50px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .label {
        display: none;
    }

    .pin {
        display: none;
    }

    /* Hide map pins on mobile */
}

@media(max-width:576px) {
    .global-presence {
        padding: 70px 0;
    }

    .timeline-wrapper {
        margin-left: 0;
        padding-left: 20px;
    }

    .timeline-wrapper::before {
        left: 5px;
    }

    .timeline-dot {
        left: -21px;
    }

    .timeline-card::before {
        left: -30px;
        width: 30px;
    }
}

/* Stat Glass Cards */
.stat-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(238, 27, 34, 0.5);
}

.stat-glass-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(238, 27, 34, 0.1);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
}

.stat-glass-card .stat-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 5px 0;
    line-height: 1;
}

.stat-glass-card .stat-info p {
    color: #cbd5e1;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Region Cards */
.region-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    height: 100%;
}

.region-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.region-card .r-icon {
    font-size: 3rem;
    color: var(--logo-blue-dark);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.region-card:hover .r-icon {
    color: var(--primary-red);
}

.region-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--logo-blue-dark);
    margin-bottom: 15px;
}

.region-card p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Trust Boxes */
.trust-box {
    text-align: center;
    padding: 30px;
}

.trust-box i {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    display: inline-block;
}

.trust-box h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--logo-blue-dark);
    margin-bottom: 15px;
}

.trust-box p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Custom Grid Columns added for Global Presence */
.infra-col-12 {
    width: 100%;
    padding: 0 15px;
}

.infra-col-7 {
    width: 58.3333%;
    padding: 0 15px;
}

.infra-col-5 {
    width: 41.6666%;
    padding: 0 15px;
}

.infra-col-3 {
    width: 25%;
    padding: 0 15px;
}

@media (max-width: 991px) {

    .infra-col-7,
    .infra-col-5 {
        width: 100%;
        margin-bottom: 30px;
    }

    .infra-col-3 {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .infra-col-3 {
        width: 100%;
    }
}

.text-center {
    text-align: center;
}


/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

.mv-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    display: flex;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.mv-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(238, 27, 34, 0.03);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(238, 27, 34, 0.2);
}

.mv-card:hover::after {
    transform: scale(3);
    background: rgba(238, 27, 34, 0.05);
}

.mv-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--logo-blue-dark), var(--logo-blue));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(28, 53, 132, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.mv-icon i {
    transition: all 0.4s ease;
}

.mv-card:hover .mv-icon {
    background: linear-gradient(135deg, var(--primary-red), #ff4757);
    box-shadow: 0 10px 20px rgba(238, 27, 34, 0.3);
}

.mv-card:hover .mv-icon i {
    transform: rotateY(360deg);
}

.mv-content {
    position: relative;
    z-index: 2;
}

.mv-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--logo-blue-dark);
    margin-bottom: 15px;
}

.mv-line {
    width: 50px;
    height: 3px;
    background: var(--primary-red);
    margin-bottom: 20px;
    transition: width 0.4s ease;
}

.mv-card:hover .mv-line {
    width: 80px;
}

.mv-content p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}


@media (max-width: 767px) {
    .mv-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 20px;
    }

    .mv-icon {
        margin: 0 auto;
    }

    .mv-line {
        margin: 0 auto 20px auto;
    }

    .mv-card:hover .mv-line {
        margin: 0 auto 20px auto;
    }
}


/* Journey Section - Dark Theme */
.journey-section {
    padding: 100px 0;
    background-color: #141c2f;
    position: relative;
    overflow: hidden;
}

.journey-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 60px 0;
    /* Increased padding */
}

.journey-item:nth-child(even) {
    flex-direction: row-reverse;
}

.journey-content {
    flex: 1;
    max-width: 45%;
}

.journey-content h3 {
    font-size: 1.2rem;
    color: #a0aec0;
    font-weight: 400;
    margin-bottom: 10px;
}

.journey-content .journey-year {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: 2px;
}

.journey-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.journey-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.journey-bg-year {
    position: absolute;
    font-size: 8rem;
    /* Slightly smaller to fit nicely */
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #ee1b226e;
    z-index: 1;
    top: 1%;
    left: 67%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.8;
    /* Higher opacity so it's clear */
    letter-spacing: 5px;
    line-height: 0.8;
    /* Prevents huge vertical bounding box */
    white-space: nowrap;
}

.journey-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgb(238 27 34 / 23%);
    object-fit: cover;
}

/* Pagination / Timeline */
.journey-pagination-wrapper {
    position: relative;
    /* margin-top: 60px; */
    padding-top: 40px;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.journey-pagination-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.journey-pagination {
    position: relative !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    width: 100% !important;
    z-index: 2 !important;
    bottom: auto !important;
}

.journey-pagination .swiper-pagination-bullet {
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    padding-bottom: 20px !important;
    position: relative !important;
    margin: 0 !important;
    border-radius: 0 !important;
    cursor: pointer;
}

.journey-pagination .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: transparent;
    transition: all 0.3s;
}

.journey-pagination .swiper-pagination-bullet-active {
    color: #ee1b22 !important
}

.journey-pagination .swiper-pagination-bullet-active::after {
    background: #ee1b22;
}

@media (max-width: 991px) {
    .journey-item {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-top: -57px;
    }

    .journey-content,
    .journey-image-wrapper {
        max-width: 100%;
    }

    .journey-bg-year {
        display: none;
    }

    .journey-content .journey-year {
        font-size: 3.5rem;
    }

    .journey-pagination .swiper-pagination-bullet {
        font-size: 0.9rem !important;
    }

    .journey-pagination-wrapper {
        margin-top: -48px;
    }
}


@media (max-width: 768px) {
    .quick-links-list {
        display: grid;
        grid-template-rows: repeat(5, auto);
        grid-auto-flow: column;
        gap: 0 15px;
    }
}