:root {
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #0b1120;
    --accent: #E31837;
    --accent-hover: #C2122B;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.text-accent {
    color: var(--accent);
}

.center {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mt-2 { margin-top: 2rem; }

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--accent);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* Header */
.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    background-color: #fff;
    color: #333;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
}

.site-logo-img {
    height: 40px;
    width: auto;
    transform: scale(3) translateY(2px);
    transform-origin: left center;
    margin-left: 20px;
}

.top-contact {
    display: flex;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.contact-text strong {
    color: #111;
    font-size: 0.95rem;
}

.bottom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem 0 3.5rem;
    color: #fff;
    margin-left: 14%;
    height: 60px;
    position: relative;
}

.bottom-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    /* Create the slanted left edge */
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.4rem;
    align-items: center;
    white-space: nowrap;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 0.8;
}

.mobile-menu-mail-item {
    display: none !important;
}

/* Dropdown Menu */
.nav-links .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 1000;
    padding: 1rem 0;
    list-style: none;
}

/* Invisible bridge to prevent hover loss */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

/* Arrow */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 25px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    color: #111;
    padding: 0.8rem 1.5rem;
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: none;
    opacity: 1;
}

.dropdown-menu li a:hover {
    color: var(--accent);
    opacity: 1;
    background-color: rgba(0,0,0,0.02);
}

/* =========================================================================
   MEGA PRODUCTS DROPDOWN (DESKTOP)
   ========================================================================= */
@media (min-width: 993px) {
    .nav-links .dropdown-menu.mega-products-menu {
        position: fixed !important;
        top: 130px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: min(1200px, 94vw) !important;
        max-width: 1200px !important;
        margin: 0 !important;
        background-color: #ffffff !important;
        border-radius: 12px !important;
        border-top: 3px solid #ff4500 !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
        padding: 1.8rem 2rem !important;
        z-index: 99999 !important;
        box-sizing: border-box !important;
    }

    /* Hover bridge so mouse movement from nav to menu doesn't lose hover */
    .nav-links .dropdown-menu.mega-products-menu::after {
        content: '' !important;
        position: absolute !important;
        top: -30px !important;
        left: 0 !important;
        right: 0 !important;
        height: 30px !important;
        background: transparent !important;
    }

    .mega-products-menu * {
        box-sizing: border-box !important;
    }

    .mega-products-menu div[style*="grid-template-columns"] {
        display: grid !important;
        grid-template-columns: 1.25fr 1fr 1fr 0.85fr 1fr !important;
        gap: 1.5rem !important;
        align-items: start !important;
        width: 100% !important;
    }

    .mega-products-menu div[style*="min-width: 180px"] {
        min-width: 0 !important;
        width: 100% !important;
    }

    .mega-products-menu ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .mega-products-menu li {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Crucial: Override white-space: nowrap from .nav-links so text wraps within its column */
    .mega-products-menu a {
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
        display: block !important;
        font-size: 0.84rem !important;
        line-height: 1.35 !important;
        padding: 0.35rem 0.5rem !important;
        border-radius: 5px !important;
        color: #334155 !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        transition: all 0.15s ease !important;
    }

    .mega-products-menu a:hover {
        background-color: #fff1ed !important;
        color: #ff4500 !important;
        padding-left: 0.75rem !important;
    }
}

/* Responsive adjustment for medium desktop/laptops */
@media (min-width: 993px) and (max-width: 1160px) {
    .nav-links .dropdown-menu.mega-products-menu {
        padding: 1.4rem 1.6rem !important;
    }
    .mega-products-menu div[style*="grid-template-columns"] {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 1.25rem !important;
    }
    .mega-products-menu a {
        font-size: 0.8rem !important;
    }
}

.search-icon {
    font-size: 1.2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-bottom: 5rem; /* Space for overlapping cards */
}

.hero-bg {
    height: 80vh;
    background-color: #333;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('images/hero-bg.png'); /* Custom generic truck background */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    color: #fff;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Overlapping Cards */
.hero-cards-wrapper {
    position: relative;
    margin-top: -100px; /* Pulls cards up over the hero bg */
    z-index: 10;
}

.hero-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero-card {
    background-color: var(--bg-card);
    color: #fff;
    padding: 2.5rem 2rem;
    flex: 1;
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-bottom: 4px solid var(--accent);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.hero-card:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
    background-image: linear-gradient(rgba(15,15,15,0.85), rgba(15,15,15,0.95)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
}

.card-icon {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.card-icon svg {
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}

.hero-card:hover .card-icon svg {
    stroke: var(--accent);
}

.hero-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    position: relative;
    z-index: 2;
    transition: margin 0.3s ease;
}

.hero-card:hover h3 {
    margin-bottom: 0.5rem;
}

.card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.hero-card:hover .card-desc {
    max-height: 100px;
    opacity: 1;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.card-hover-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translate(20px, -20px);
    z-index: 1;
    pointer-events: none;
}

.card-hover-decor::before,
.card-hover-decor::after {
    content: '';
    position: absolute;
    transform: skewX(-20deg);
}

.card-hover-decor::before {
    top: 30px;
    right: 30px;
    width: 80px;
    height: 40px;
    background-color: var(--accent);
}

.card-hover-decor::after {
    top: 70px;
    right: 15px;
    width: 50px;
    height: 25px;
    background-color: #ffaa00;
}

.hero-card:hover .card-hover-decor {
    opacity: 1;
    transform: translate(0, 0);
}

.btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.55rem 1.15rem;
    background: linear-gradient(135deg, #e31837 0%, #c4122d 100%);
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(227, 24, 55, 0.25);
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.btn-card:hover {
    background: linear-gradient(135deg, #ff2a4b 0%, #e31837 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 24, 55, 0.4);
}

/* New Services Section */
.services-section {
    padding: 8rem 0 6rem;
    background-color: #fdfdfd;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
    overflow: hidden;
}

.relative-container {
    position: relative;
    z-index: 10;
}

.services-bg-watermark {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14rem;
    color: rgba(0,0,0,0.02);
    font-family: var(--font-heading);
    font-weight: 900;
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    -webkit-text-stroke: 1px rgba(0,0,0,0.05);
}

.title-underline {
    width: 50px;
    height: 2px;
    background-color: var(--accent);
    margin: 1.5rem auto 4rem;
}

.services-carousel {
    text-align: center;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card-new {
    background-color: transparent;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.service-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 8px 8px 0 0;
}

.service-content {
    background: #fff;
    margin: -50px 15px 0 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 120px;
    transition: all 0.4s ease;
}

.service-icon-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s ease;
}

.service-icon-box svg {
    transition: all 0.4s ease;
}

.service-text {
    padding: 1.5rem 1.5rem 1.5rem 110px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    transition: all 0.4s ease;
}

.service-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
    color: #222;
    font-weight: 800;
}

.service-category {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
    transition: all 0.3s ease;
}

.service-desc {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    transition: all 0.4s ease;
}

.btn-service {
    display: inline-block;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 3px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    align-self: flex-start;
}

/* Hover States */
.service-card-new:hover .service-content {
    height: 280px;
    margin-top: -210px;
}

.service-card-new:hover .service-icon-box {
    left: auto;
    right: 0;
    width: 60px;
    height: 60px;
}

.service-card-new:hover .service-icon-box svg {
    width: 24px !important;
    height: 24px !important;
}

.service-card-new:hover .service-text {
    padding: 2rem 2rem 2rem 1.5rem;
    justify-content: flex-start;
}

.service-card-new:hover .service-category {
    opacity: 0;
    max-height: 0;
    margin: 0;
    overflow: hidden;
}

.service-card-new:hover .service-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-card-new:hover .btn-service {
    opacity: 1;
    transform: translateY(0);
}

.carousel-controls {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.carousel-controls .arrow {
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}
.carousel-controls .arrow:hover {
    color: var(--accent);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: #fff;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.title {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: #111;
    line-height: 1.2;
}

.about-left p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

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

.stats-row {
    display: flex;
    gap: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
}

/* Gears & Badge */
.gears-container {
    position: relative;
    width: 400px;
    height: 450px;
}

.badge-container {
    position: relative;
    width: 160px;
    height: 160px;
    border: 2px dashed #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
    background-color: #fff;
}

.absolute-badge {
    position: absolute;
    top: -30px;
    left: -30px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.badge-inner {
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #333;
    animation: rotate-reverse 20s linear infinite;
}

.gear-wrapper {
    position: absolute;
    width: 220px;
    height: 220px;
    clip-path: url(#gear-clip);
    -webkit-clip-path: url(#gear-clip);
    animation: rotateGear 25s linear infinite;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
}

.gear-image {
    width: 150%;
    height: 150%;
    background-size: cover;
    background-position: center;
    animation: counterRotateGear 25s linear infinite;
}

.gear-1 {
    top: 0;
    right: 0;
}

.gear-2 {
    top: 140px;
    left: 20px;
    animation-direction: reverse;
}
.gear-2 .gear-image {
    animation-direction: reverse;
}

.gear-3 {
    bottom: -20px;
    right: 40px;
}

@keyframes rotateGear {
    100% { transform: rotate(360deg); }
}
@keyframes counterRotateGear {
    100% { transform: rotate(-360deg); }
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}
@keyframes rotate-reverse {
    100% { transform: rotate(-360deg); }
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    color: var(--text-muted);
    padding: 2rem 0;
}

@media (max-width: 992px) {
    .about-layout { grid-template-columns: 1fr; }
    .hero-cards { flex-direction: column; align-items: center; }
    .hero-cards-wrapper { margin-top: -50px; }
}

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

/* Stats Banner */
.stats-banner {
    background-color: #fff;
    padding: 6rem 0;
}

.stats-banner-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.banner-stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.banner-icon-box {
    width: 80px;
    height: 80px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.banner-stat-text {
    display: flex;
    flex-direction: column;
}

.banner-stat-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b1120;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.banner-stat-text p {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Banner */
.cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #050a11;
    padding: 3.5rem 0;
    overflow: hidden;
}

.cta-decor-left,
.cta-decor-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.cta-decor-left { left: 0; }
.cta-decor-right { right: 0; }

.decor-box {
    width: 60px;
    height: 30px;
    transform: skewY(-20deg);
}

.cta-decor-left .decor-orange { background-color: var(--accent); margin-left: -10px; margin-bottom: -15px; }
.cta-decor-left .decor-white { background-color: #fff; margin-left: -30px; }

.cta-decor-right .decor-orange { background-color: var(--accent); margin-right: -10px; margin-bottom: -15px; }
.cta-decor-right .decor-white { background-color: #fff; margin-right: -30px; }

.cta-content {
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 800px;
}

.cta-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.cta-title {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose {
    padding: 6rem 0;
    background-color: #fff;
}

.why-choose-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-image-col {
    position: relative;
}

.why-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #444;
}

.check-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

@media (max-width: 992px) {
    .why-choose-layout {
        grid-template-columns: 1fr;
    }
}

/* Global Presence Section */
.global-presence {
    padding: 6rem 0;
    background-color: #fff;
}

.map-container {
    margin: 3rem 0;
}

.world-map-img {
    max-width: 900px;
    width: 100%;
    height: auto;
}

.locations-content {
    max-width: 1000px;
    margin: 0 auto;
}

.country-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.country-header h3 {
    font-size: 1.5rem;
    color: #0b1120;
    font-weight: 800;
}

.flag-icon {
    font-size: 1.5rem;
}

.india-section {
    margin-bottom: 3rem;
}

.india-cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-left: 2rem;
    border-left: 2px solid #eee;
}

.city h4 {
    font-size: 1rem;
    color: #0b1120;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.city p, .location-card p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.location-card {
    background-color: #fafafa;
    border-left: 3px solid var(--accent);
    padding: 1.5rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-header h4 {
    font-size: 1.1rem;
    color: #0b1120;
    font-weight: 800;
}

@media (max-width: 992px) {
    .global-grid { grid-template-columns: 1fr 1fr; }
    .india-cities { grid-template-columns: 1fr; border-left: none; padding-left: 0; }
}
@media (max-width: 768px) {
    .global-grid { grid-template-columns: 1fr; }
}

/* Blog Section */
.blog-section {
    padding: 8rem 0;
    background-color: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.bg-boxes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.box {
    position: absolute;
    background-color: #ffffff;
    opacity: 0.4;
    transform: rotate(30deg);
}

.box-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -150px;
}

.box-2 {
    width: 200px;
    height: 400px;
    top: 20%;
    left: -50px;
}

.box-3 {
    width: 400px;
    height: 400px;
    top: -50px;
    right: -200px;
}

.blog-bg-watermark {
    position: absolute;
    top: -10px;
    left: -20px;
    font-size: 8rem;
    color: rgba(0,0,0,0.03);
    font-family: var(--font-heading);
    font-weight: 900;
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    -webkit-text-stroke: 1px rgba(0,0,0,0.05);
}

.blog-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.blog-header-left {
    max-width: 600px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.blog-img-container {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 220px;
    transition: all 0.4s ease;
    z-index: 1;
}
.blog-card:hover .blog-img-container {
    height: 100%;
}

.blog-img-overlay {
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(5, 10, 25, 0.75);
    opacity: 0;
    transition: all 0.4s ease;
}
.blog-card:hover .blog-img-overlay {
    opacity: 1;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--accent);
    color: #fff;
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    z-index: 3;
}
.blog-card:hover .blog-tag {
    opacity: 0;
}

.blog-hover-date {
    position: absolute; 
    top: 0; right: 0;
    background-color: var(--accent); color: #fff;
    width: 75px; height: 75px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(-20px); transition: all 0.4s ease;
    z-index: 4; text-align: center; line-height: 1.1;
}
.blog-hover-date .date-day { font-size: 1.4rem; font-weight: 800; margin-bottom: 2px;}
.blog-hover-date .date-month { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; }
.blog-card:hover .blog-hover-date {
    opacity: 1; transform: translateY(0);
}

.blog-content {
    padding: 2rem;
    padding-top: 240px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    display: flex; flex-direction: column; flex: 1;
}

.blog-card:hover .blog-content {
    padding-top: 50px;
    justify-content: center;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.4s ease;
}
.blog-card:hover .blog-meta {
    opacity: 0;
    height: 0; margin-bottom: 0; overflow: hidden;
}

.meta-icon {
    display: flex;
    align-items: center;
}

.blog-title {
    font-size: 1.25rem;
    color: #0d1e50;
    font-family: var(--font-heading);
    line-height: 1.4;
    font-weight: 800;
    transition: all 0.4s ease;
}
.blog-card:hover .blog-title {
    color: #fff;
}

.btn-blog {
    display: inline-block;
    background-color: var(--accent); color: #fff;
    padding: 0.6rem 1.2rem; text-decoration: none; font-weight: 700; font-size: 0.8rem;
    border-radius: 3px; align-self: flex-start;
    margin-top: 1.5rem;
    opacity: 0; transform: translateY(10px); transition: all 0.4s ease;
}
.blog-card:hover .btn-blog {
    opacity: 1; transform: translateY(0);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Footer Main */
.footer-main {
    position: relative;
    background-color: #0b0f15;
    background-image: url('images/world-map.png');
    background-size: cover;
    background-position: center;
    color: #e2e8f0;
    padding-top: 5rem;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 8, 12, 0.95);
    z-index: 1;
}

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

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

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

.footer-desc {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 350px;
}

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

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent);
    color: #fff;
}

.footer-heading {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--accent);
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.footer-gallery img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--transition);
}

.footer-gallery img:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.8rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
    letter-spacing: 0.2px;
}

.footer-credit {
    font-size: 0.95rem;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: 500;
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.footer-credit:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 69, 0, 0.3);
}

.footer-credit .heart-icon {
    color: #ff3366;
    display: inline-block;
    animation: heartPulse 1.6s infinite ease-in-out;
    font-size: 1.05rem;
    line-height: 1;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.28); }
}

.footer-credit .regortz-link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.25s ease;
    padding: 0 2px;
}

.footer-credit .regortz-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ff4500;
    transition: width 0.25s ease;
    border-radius: 2px;
}

.footer-credit .regortz-link:hover {
    color: #ff4500;
}

.footer-credit .regortz-link:hover::after {
    width: 100%;
}


.scroll-top {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background-color: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    z-index: 10;
    transition: var(--transition);
}

.scroll-top:hover {
    background-color: var(--accent-hover);
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonial-section {
    padding: 6rem 0;
    background-color: #fff;
}

.testimonial-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.section-subtitle-wrap {
    margin-bottom: 1rem;
}

.subtitle-underline {
    width: 150px;
    height: 2px;
    background-color: var(--accent);
    margin-top: 5px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 4px;
    display: inline-flex;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
}

.contact-details p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: #0d1e50;
    font-weight: 800;
}

.testimonial-slider-col {
    position: relative;
    padding: 2rem 0;
}

.testimonial-slider-wrapper {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4rem;
    overflow: hidden;
    color: #fff;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 15, 0, 0.85); /* Dark brown/orange tint */
    z-index: 1;
}

.testimonial-slide {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
}

.author-info {
    margin-bottom: 1.5rem;
}

.author-role {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ddd;
    display: block;
    margin-bottom: 0.3rem;
}

.author-name {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
}

.quote-text-wrapper {
    position: relative;
    display: inline-block;
    padding: 0 2rem;
}

.quote-text {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
    color: #fff;
    margin: 0;
    display: inline;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 0;
    position: relative;
    top: 10px;
    margin-right: 5px;
    font-family: Georgia, serif;
}

.quote-icon-right {
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 0;
    position: relative;
    top: 10px;
    margin-left: 5px;
    font-family: Georgia, serif;
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    display: flex;
    gap: 0.5rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    display: block;
    cursor: pointer;
}

.slider-dots .dot.active {
    background-color: #fff;
}

@media (max-width: 992px) {
    .testimonial-layout {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   RESPONSIVE LAYOUTS (TABLET & MOBILE)
   ========================================================================= */

/* Mobile Menu Hidden Checkbox */
.mobile-menu-toggle {
    display: none;
}
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    color: #fff;
    padding: 0.5rem;
    order: -1;
}

@media (max-width: 992px) {
    /* About & Why Choose Us */
    .why-choose-layout, .about-layout {
        grid-template-columns: 1fr !important;
    }
    
    /* Global Presence */
    .global-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Testimonials */
    .testimonial-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Blog Grid */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 992px) {
    /* Global & Typography */
    html {
        font-size: 14px;
    }
    .container {
        padding: 0 1rem !important;
    }
    section, .services-section, .why-choose, .global-presence, .testimonial-section, .blog-section {
        padding: 4rem 0 !important;
    }

    /* Header & Navigation Mobile Refinements */
    .main-header {
        position: relative !important;
        background: #ffffff !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        top: 0 !important;
        width: 100% !important;
    }
    .top-bar {
        padding: 1rem 1.25rem !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
        background: #ffffff !important;
        min-height: 80px !important;
    }
    .top-bar .logo {
        display: inline-flex !important;
        align-items: center !important;
        overflow: visible !important;
    }
    .top-bar .logo img,
    .top-bar .logo .site-logo-img,
    .site-logo-img {
        height: 96px !important;
        width: auto !important;
        max-width: 260px !important;
        object-fit: contain !important;
        transform: none !important;
        margin-left: 0 !important;
    }
    .top-contact {
        display: none !important; /* Hide extra contact info to save space */
    }
    .bottom-nav {

        position: static !important;
        margin-left: 0 !important;
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        display: block !important;
        clip-path: none !important;
    }
    .bottom-nav::before {
        display: none !important;
    }
    .mobile-menu-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer;
        position: absolute !important;
        top: 50% !important;
        right: 1.25rem !important;
        transform: translateY(-50%) !important;
        padding: 10px 14px !important;
        border-radius: 8px !important;
        background: #ff4500 !important;
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(255, 69, 0, 0.35) !important;
        z-index: 1000 !important;
        transition: all 0.2s ease !important;
    }
    .mobile-menu-icon:hover {
        background: #e03e00 !important;
        transform: translateY(-50%) scale(1.04) !important;
    }
    .mobile-menu-icon svg {
        stroke: #ffffff !important;
        width: 26px !important;
        height: 26px !important;
    }
    .search-icon {
        display: none !important; /* Hidden on header bar or handled via search */
    }
    .nav-links {
        display: none !important;
        flex-direction: column !important;
        width: 100% !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        background: #0b1120 !important;
        padding: 0.5rem 0 1.2rem 0 !important;
        z-index: 9999 !important;
        gap: 0 !important;
        box-shadow: 0 15px 30px rgba(0,0,0,0.45) !important;
        border-bottom: 3px solid #ff4500 !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
    }

    .nav-links li {
        width: 100% !important;
        position: relative !important;
    }
    .nav-links a {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0.95rem 1.5rem !important;
        color: #f1f5f9 !important;
        font-size: 1.02rem !important;
        font-weight: 600 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
    }
    .nav-links a:hover, .nav-links a:active {
        background: rgba(255, 69, 0, 0.15) !important;
        color: #ff4500 !important;
        padding-left: 1.8rem !important;
    }
    .mobile-menu-mail-item {
        display: block !important;
        width: 100% !important;
    }
    .mobile-menu-mail-item a {
        background: rgba(255, 69, 0, 0.08) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-bottom: none !important;
        margin-top: 0.5rem !important;
        padding: 1rem 1.5rem !important;
    }
    .mobile-menu-mail-item a:hover {
        background: rgba(255, 69, 0, 0.2) !important;
    }
    .mobile-menu-toggle:checked ~ .nav-links,
    .nav-links.active {

        display: flex !important;
        animation: mobileNavFade 0.25s ease-out !important;
    }
    @keyframes mobileNavFade {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }
    /* Mobile Products Dropdown Accordion */
    .nav-links .dropdown {
        position: static !important;
        width: 100% !important;
    }
    .nav-links .dropdown > a {
        cursor: pointer !important;
        user-select: none !important;
    }
    .nav-links .dropdown.open > a,
    .nav-links .dropdown.active > a {
        color: #ff4500 !important;
        background: rgba(255, 69, 0, 0.18) !important;
    }
    .nav-links .dropdown .dropdown-menu,
    .nav-links .dropdown-menu.mega-products-menu {
        display: none !important;
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        margin: 0 !important;
        padding: 0.8rem 1rem !important;
        background: #111a2e !important;
        border: none !important;
        border-radius: 0 !important;
        border-left: 3px solid #ff4500 !important;
        box-shadow: inset 0 2px 8px rgba(0,0,0,0.3) !important;
        max-height: 400px !important;
        overflow-y: auto !important;
    }
    .nav-links .dropdown.open .dropdown-menu,
    .nav-links .dropdown.active .dropdown-menu {
        display: block !important;
        animation: mobileSubFade 0.25s ease !important;
    }
    @keyframes mobileSubFade {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    .nav-links .dropdown-menu div[style*="display: flex; justify-content: space-between"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
    .nav-links .dropdown-menu div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }
    .nav-links .dropdown-menu div[style*="font-family:'Outfit'"],
    .nav-links .dropdown-menu div[style*="font-family: 'Outfit'"] {
        color: #ffffff !important;
    }
    .nav-links .dropdown-menu div[style*="font-family:'Outfit'"] span,
    .nav-links .dropdown-menu div[style*="font-family: 'Outfit'"] span {
        color: #94a3b8 !important;
    }
    .nav-links .dropdown-menu div[style*="border-bottom: 2px solid"] {
        color: #ff7a45 !important;
    }
    .nav-links .dropdown-menu div[style*="min-width: 180px"] {
        min-width: 100% !important;
    }
    .nav-links .dropdown-menu a {
        padding: 0.55rem 0.8rem !important;
        font-size: 0.9rem !important;
        color: #cbd5e1 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }
    .nav-links .dropdown-menu a:hover {
        color: #ff4500 !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }

    /* Hero Section */
    .hero-title {
        font-size: 3.2rem !important;
    }
    .hero-bg {
        padding: 6rem 0 8rem 0 !important;
    }
    .hero-cards-wrapper {
        margin-top: -60px !important;
    }
    .hero-cards {
        flex-direction: column;
        align-items: center;
    }
    .hero-card {
        width: 100%;
        max-width: 100%;
    }

    /* Services Section */
    .services-grid-new {
        grid-template-columns: 1fr !important;
    }

    /* Global Presence */
    .global-grid {
        grid-template-columns: 1fr !important;
    }
    .india-cities {
        grid-template-columns: 1fr !important;
        padding-left: 0 !important;
        border-left: none !important;
    }

    /* Blog Section */
    .blog-grid {
        grid-template-columns: 1fr !important;
    }
    .blog-header-row {
        flex-direction: column;
        align-items: flex-start !important;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* CTA Section */
    .cta-title {
        font-size: 2.5rem !important;
    }
    .cta-decor-left, .cta-decor-right {
        display: none !important;
    }

    /* About Stats & Gears */
    .stats-row {
        gap: 1.5rem !important;
        flex-direction: column;
    }
    .stat-num {
        font-size: 2.5rem !important;
    }
    .gears-container {
        width: 100% !important;
        max-width: 400px;
        transform: scale(0.8);
        transform-origin: top center;
    }
    
    /* Stats Banner */
    .stats-banner-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* --- Inner Page Styles --- */
.inner-banner {
    background-color: #020617; /* Dark blue */
    padding: 12rem 0 6rem;
    color: #fff;
    text-align: center;
}

.breadcrumbs {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}
.breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}
.breadcrumbs a:hover {
    color: var(--accent);
}

.inner-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
}

/* Vision Mission Section */
.vm-section {
    padding: 6rem 0;
    background-color: #fff;
}

.vm-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .vm-layout {
        grid-template-columns: 1fr;
    }
    .vm-empty {
        display: none;
    }
}

.vm-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #0b1120;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.vm-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.vm-tabs {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}

.vm-tab-btn {
    background: none;
    border: none;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    position: relative;
    font-family: var(--font-heading);
}

.vm-tab-btn.active {
    color: var(--accent);
}

.vm-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
}

.vm-tab-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Investors Relation Page Styles --- */
.investor-intro {
    padding: 6rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.investor-intro-content {
    position: relative;
}

.investor-watermark {
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    font-family: var(--font-heading);
    z-index: -1;
}

.investor-mission {
    padding: 4rem 0;
}

.mission-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-card {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

.mission-icon {
    background-color: #3b82f6; /* bright blue */
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-text {
    padding: 1rem 2rem;
    font-weight: 700;
    color: #0b1120;
}

.corp-gov {
    padding: 4rem 0 6rem;
}

.gov-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gov-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.gov-number {
    background-color: #f59e0b; /* amber */
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: var(--font-heading);
    border-radius: 4px;
    flex-shrink: 0;
}

.gov-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #0b1120;
    margin-bottom: 0.5rem;
}

.gov-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
}

.gov-dot {
    text-align: center;
    margin-top: 4rem;
    color: var(--accent);
}

@media (max-width: 992px) {
    .investor-intro {
        grid-template-columns: 1fr;
    }
    .gov-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Product Categories Layout --- */
.products-page-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-card {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.product-img-placeholder {
    width: 100%;
    height: 180px;
    background-color: #f8f9fa;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.product-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.product-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.product-features li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.btn-enquire {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    align-self: flex-start;
    transition: background-color 0.3s;
}

.btn-enquire:hover {
    background-color: #cc3700;
}

/* Sidebar Styles */
.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #0b1120;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background-color: var(--accent);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.8rem;
}

.sidebar-menu li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-menu a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.sidebar-menu a::before {
    content: '›';
    font-size: 1.2rem;
    color: var(--accent);
    margin-right: 0.5rem;
}

.sidebar-menu a:hover, .sidebar-menu a.active {
    color: var(--accent);
}

/* Featured product card in sidebar */
.sidebar-product {
    background-color: white;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    text-align: center;
}

.sidebar-product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.sidebar-product-title {
    color: #0b1120;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .products-page-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Newsroom Styles --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}
.news-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.news-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.news-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.news-date {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.news-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #0b1120;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.news-excerpt {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}
.news-link {
    display: inline-block;
    color: #0b1120;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color 0.3s;
}
.news-link:hover {
    color: var(--accent);
}

/* --- Newsroom Styles --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}
.news-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.news-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.news-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.news-date {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.news-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #0b1120;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.news-excerpt {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}
.news-link {
    display: inline-block;
    color: #0b1120;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color 0.3s;
}
.news-link:hover {
    color: var(--accent);
}


/* --- Responsive Inner Pages Fixes --- */
@media (max-width: 768px) {
    .inner-banner {
        padding: 8rem 0 4rem !important; 
    }
    .inner-title {
        font-size: 2rem !important;
    }
    .products-page-container {
        margin: 2rem auto !important;
        gap: 2rem !important;
    }
    .product-sidebar {
        gap: 1.5rem !important;
    }
}


/* --- Mobile Menu Layout Fix (Cleaned up: Handled in main mobile query above) --- */

/* --- Mobile Inner Pages Fixes --- */
@media (max-width: 768px) {
    .investor-watermark {
        font-size: 4rem !important;
        top: -10px !important;
        left: 0 !important;
        opacity: 0.03 !important;
    }
    .title[style], h2[style*="font-size: 2"] {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    .gov-item {
        gap: 1rem !important;
    }
    .gov-number {
        min-width: 40px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
    .investor-card {
        padding: 1.5rem !important;
    }
    .investor-icon {
        min-width: 50px !important;
    }
}

/* --- REAL Mobile Inner Pages Fixes --- */
@media (max-width: 768px) {
    .mission-card {
        padding: 1rem !important;
        gap: 1rem !important;
    }
    .mission-icon {
        min-width: 45px !important;
        width: 45px !important;
        height: 45px !important;
    }
    .gov-card {
        gap: 1rem !important;
        align-items: flex-start !important;
        margin-bottom: 1.5rem !important;
    }
    .gov-number {
        min-width: 45px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
        line-height: 45px !important;
    }
}

/* =========================================================================
   GLOBAL LIVE SEARCH MODAL & OVERLAY
   ========================================================================= */
.site-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 8vh 1.5rem 2rem 1.5rem;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.site-search-modal.active {
    display: flex;
    opacity: 1;
}

.site-search-container {
    background: #ffffff;
    width: 100%;
    max-width: 680px;
    border-radius: 16px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: translateY(-20px) scale(0.98);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

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

.site-search-header {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    gap: 1rem;
    background: #ffffff;
    position: relative;
}

.site-search-header .search-input-icon {
    font-size: 1.3rem;
    color: #ff4500;
    line-height: 1;
    display: flex;
    align-items: center;
}

.site-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.15rem;
    font-family: inherit;
    color: #0b1120;
    background: transparent;
}

.site-search-input::placeholder {
    color: #94a3b8;
}

.site-search-close {
    background: #f1f5f9;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}

.site-search-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.site-search-quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
}

.site-search-quick-tags span.tag-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-search-quick-tags button {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

.site-search-quick-tags button:hover {
    background: #ff4500;
    border-color: #ff4500;
    color: #ffffff;
}

.site-search-body {
    padding: 0.75rem 0;
    overflow-y: auto;
    flex: 1;
}

.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f8fafc;
    transition: background 0.15s;
}

.search-result-item:hover {
    background: #fff7ed;
}

.search-result-item:hover .search-item-title {
    color: #ff4500;
}

.search-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.search-item-cat {
    font-size: 0.7rem;
    font-weight: 700;
    color: #ff4500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-item-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0b1120;
    transition: color 0.15s;
}

.search-item-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.35;
    max-width: 480px;
}

.search-item-arrow {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-left: 1rem;
    transition: transform 0.15s, color 0.15s;
}

.search-result-item:hover .search-item-arrow {
    color: #ff4500;
    transform: translateX(3px);
}

.search-no-results {
    padding: 3rem 1.5rem;
    text-align: center;
    color: #64748b;
}

.search-no-results p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.site-search-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    font-size: 0.8rem;
    color: #64748b;
}

.site-search-footer a {
    color: #ff4500;
    text-decoration: none;
    font-weight: 700;
}

.site-search-footer a:hover {
    text-decoration: underline;
}

.search-icon {
    transition: transform 0.2s ease, opacity 0.2s;
    user-select: none;
}

.search-icon:hover {
    transform: scale(1.15);
    opacity: 0.9;
}

