        /* --- NEW AND IMPROVED STYLES --- */

        :root {
            --primary-color: #8a1a1a;
            /* A deeper, professional blue */
            --primary-dark: #0e225e;
            --secondary-color: #ffffff;
            /* A vibrant accent yellow/gold */
            --success-color: #8a1a1a;
            --light-bg: #f8f9fa;
            --white-color: #ffffff;
            --dark-text: #212529;
            --light-text: #6c757d;
            --border-color: #dee2e6;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
            --transition: all 0.3s ease-in-out;
        }

        /* --- Universal Hover Hardening for Dark Backgrounds --- */
        #header .nav-links>li>a:hover,
        #header .social-links a:hover,
        #header .mobile-menu-btn:hover {
            color: var(--white-color) !important;
            opacity: 1;
        }

        footer a:hover,
        .footer-links a:hover {
            color: var(--white-color) !important;
            opacity: 1;
        }

        .service-card-overlay .btn:hover,
        .news-tabs .news-tab:hover {
            color: var(--white-color) !important;
        }

        /* --- Basic CSS Reset & Global Styles --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        html,
        body {
            overflow-x: hidden;
            width: 100%;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--dark-text);
            background: var(--white-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        section:nth-of-type(odd) {
            background-color: var(--light-bg);
        }

        h1,
        h2,
        h3 {
            font-weight: 600;
            line-height: 1.3;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary-color);
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
            margin: 15px auto 0;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
            color: var(--light-text);
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
        }

        /* --- Universal Tracking Platform Styles --- */
        .tracking-portal-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .tracking-portal-header h2 {
            margin-bottom: 5px;
        }

        .tracking-subtitle {
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-top: 0;
        }

        .tracking-container {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .tracking-input {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .tracking-input input {
            flex-grow: 1;
            padding: 18px 25px;
            border-radius: 50px;
            border: 2px solid #eee;
            font-size: 1rem;
            transition: var(--transition);
        }

        .tracking-input input:focus {
            border-color: var(--primary-color);
            background: #fff;
            box-shadow: 0 5px 15px rgba(138, 26, 26, 0.1);
        }

        .carrier-compatibility {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px dashed #eee;
        }

        .compatibility-label {
            display: block;
            font-size: 0.75rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .carrier-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .carrier-tag {
            font-size: 0.8rem;
            font-weight: 600;
            color: #777;
            background: #f8f9fa;
            padding: 6px 15px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 8px;
            filter: grayscale(1);
            opacity: 0.7;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .carrier-tag:hover {
            filter: grayscale(0);
            opacity: 1;
            color: var(--primary-color);
            background: #fff;
            border-color: rgba(138, 26, 26, 0.2);
        }

        .tracking-platform-badge {
            margin-top: 25px;
            font-size: 0.85rem;
            color: #888;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .tracking-platform-badge i {
            color: var(--success-color);
        }

        @media (max-width: 768px) {
            .tracking-input {
                flex-direction: column;
            }

            .tracking-container {
                padding: 25px 20px;
            }
        }

        ul {
            list-style: none;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white-color);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary-color);
            color: var(--white-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            background: var(--primary-dark);
            color: var(--white-color) !important;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-success {
            background: var(--success-color);
        }

        .btn-success:hover {
            background: #8a1a1a;
        }

        .btn-warning {
            background: var(--secondary-color);
            color: var(--dark-text);
        }

        .btn-warning:hover {
            background: #8a1a1a;
        }

        input,
        select,
        textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.2);
        }

        /* --- Glassmorphism Navigation --- */
        #header {
            background: #0e225e;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            transition: var(--transition);
            padding: 15px 0;
        }

        #header.scrolled {
            background: #1b427f;
            box-shadow: 0 5px 20px;
            padding: 10px 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* ===== LOGO ===== */
        .logo img {
            height: 45px;
            /* Adjust if needed */
        }

        /* ===== NAV LINKS ===== */
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }

        /* Wrapper for desktop alignment of extras */
        .nav-extras {
            display: flex;
            align-items: center;
        }

        .nav-links li {
            position: relative;
            margin: 0 15px;
        }

        .nav-links li a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
        }

        .nav-links li a::after {
            content: '';
            width: 0%;
            height: 2px;
            background: var(--secondary-color);
            position: absolute;
            left: 0;
            bottom: -5px;
            transition: 0.5s;
        }

        .nav-links li a:hover,
        .nav-links li a.active {
            color: var(--white-color);
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        /* ===== DROPDOWN MENU ===== */
        .dropdown {
            position: relative;
        }

        .dropdown a i {
            font-size: 0.8em;
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .dropdown:hover>a i {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border-radius: 5px;
            width: 220px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 1000;
            padding: 10px 0;
            list-style: none;
            /* Ensure no bullets */
            display: block;
            /* Override flex */
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            margin: 0;
            display: block;
            /* Stack items vertically */
            width: 100%;
        }

        .dropdown-menu li a {
            color: #333 !important;
            /* Force dark text */
            padding: 10px 20px;
            display: block;
            font-size: 0.95rem;
            border-radius: 0;
            transition: all 0.2s ease;
        }

        .dropdown-menu li a:hover {
            background-color: #f8f9fa;
            color: var(--primary-color) !important;
            padding-left: 25px;
            /* Slight slight shift */
        }

        .dropdown-menu li a::after {
            display: none;
            /* Remove underline animation for dropdown items */
        }

        /* Mobile Adjustments for Dropdown */
        @media (max-width: 768px) {
            .dropdown-menu {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: rgba(255, 255, 255, 0.05);
                /* Slight tint */
                display: none;
                /* Hidden by default on mobile */
                padding: 0;
                margin-top: 10px;
            }

            .dropdown.active .dropdown-menu {
                display: block;
                /* Show via JS on mobile click */
            }

            .dropdown-menu li a {
                color: #fff !important;
                padding-left: 40px;
                font-size: 0.9rem;
            }

            .dropdown-menu li a:hover {
                background: transparent;
                color: var(--secondary-color) !important;
            }
        }

        /* --- Social Icons in Nav --- */
        .social-links {
            display: flex;
            gap: 10px;
            margin-left: 20px;
        }

        .social-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            color: var(--primary-color);
            opacity: 1;
        }

        #header:not(.scrolled) .nav-links li a:hover,
        #header:not(.scrolled) .nav-links li a.active {
            color: var(--white-color);
        }

        .lang-dropdown>a {
            padding: 5px 12px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: var(--transition);
        }

        .lang-dropdown>a:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .lang-dropdown .dropdown-menu {
            min-width: 140px;
            left: auto;
            right: 0;
            padding: 8px 0;
        }

        .lang-dropdown .dropdown-menu li a {
            display: flex;
            align-items: center;
        }

        @media (max-width: 768px) {
            .lang-dropdown {
                margin: 20px auto;
                width: fit-content;
            }

            .lang-dropdown .dropdown-menu {
                right: auto;
                left: 50%;
                transform: translateX(-50%);
                text-align: left;
            }

            .dropdown.active .lang-dropdown .dropdown-menu {
                transform: translateX(-50%);
            }
        }

        /* --- Mobile Navigation --- */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-color);
            z-index: 1001;
        }

        #header:not(.scrolled) .mobile-menu-btn {
            color: var(--white-color);
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                height: calc(100vh - 70px);
                /* Full screen minus header */
                background: #1b427f;
                flex-direction: column;
                padding: 20px 0;
                text-align: center;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                overflow-y: auto;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 15px 0;
            }

            /* Container for bottom items on mobile */
            .nav-extras {
                margin-top: auto !important;
                /* Push to bottom */
                padding-bottom: 40px;
                display: flex;
                flex-direction: row;
                /* Side by side */
                justify-content: center;
                align-items: center;
                gap: 20px;
                width: 100%;
            }

            /* Reset Specifics within extras */
            .nav-extras .social-links {
                margin: 0 !important;
                padding: 0 !important;
                border: none;
            }

            .nav-links .social-links {
                /* Override previous mobile styles if any */
                margin: 0;
                justify-content: center;
            }
        }


        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            overflow: hidden;
            /* Ensure the zoomed background doesn't overflow */
        }

        /* Animated Background */
        /* Animated Background Slider */
        .hero-bg-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-bg-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            animation: imageFade 35s infinite, hero-zoom 35s infinite;
        }

        .hero-bg-slide.active {
            opacity: 1;
            z-index: 1;
        }

        /* Staggered starts for 5 images: 35s total / 5 = 7s each */
        .hero-bg-slide:nth-child(1) {
            animation-delay: 0s;
        }

        .hero-bg-slide:nth-child(2) {
            animation-delay: 7s;
        }

        .hero-bg-slide:nth-child(3) {
            animation-delay: 14s;
        }

        .hero-bg-slide:nth-child(4) {
            animation-delay: 21s;
        }

        .hero-bg-slide:nth-child(5) {
            animation-delay: 28s;
        }

        @keyframes imageFade {
            0% {
                opacity: 0;
            }

            2% {
                opacity: 1;
            }

            20% {
                opacity: 1;
            }

            22% {
                opacity: 0;
            }

            100% {
                opacity: 0;
            }
        }

        @keyframes hero-zoom {
            0% {
                transform: scale(1);
            }

            100% {
                transform: scale(1.15);
            }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            /* Gradient for better text readability and professional look - Updated to Black as requested */
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 20px;
        }

        /* Headline */
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            letter-spacing: -1px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        /* Paragraph */
        .hero-content p {
            font-size: 1.30rem;
            line-height: 1.8;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: var(--white-color);
        }

        /* Buttons alignment */
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1.25rem;
                line-height: 1.8;
                margin-bottom: 40px;
                opacity: 0.95;
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
            }

            /* Buttons alignment */
            .hero-buttons {
                display: flex;
                justify-content: center;
                gap: 20px;
                flex-wrap: wrap;
            }
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .hero-buttons {
                gap: 15px;
            }

            .btn {
                width: 100%;
                /* Full width buttons on mobile */
                margin-bottom: 10px;
            }
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            padding: 100px 0;
            background: #fdfdfd;
        }

        .services h2,
        .services h4,
        .services p {
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .services h2 {
            font-size: 2.6rem;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .services h4 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            font-weight: 700;
        }

        .services p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.6;
            margin-bottom: 50px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        .service-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        .service-img {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-card-overlay {
            position: absolute;
            inset: 0;
            background: rgba(138, 26, 26, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover .service-card-overlay {
            opacity: 1;
        }

        .service-card-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            /* Dark color as seen in screenshot */
            transition: color 0.3s ease;
            text-align: center;
            /* Centered as seen in screenshot */
            font-weight: 700;
        }

        .service-card p {
            font-size: 1rem;
            color: #4b5563;
            margin-bottom: 10px;
            flex-grow: 1;
            text-align: center;
            line-height: 1.7;
        }

        .btn-text {
            background: none;
            border: none;
            color: var(--primary-color);
            font-weight: 700;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 0;
            width: fit-content;
            transition: gap 0.3s ease;
        }

        .btn-text:hover {
            gap: 12px;
            color: var(--primary-dark);
        }

        /* Service Modal Customization */
        .service-highlight {
            background: rgba(138, 26, 26, 0.05);
            padding: 25px;
            border-left: 4px solid var(--primary-color);
            border-radius: 8px;
            margin-top: 30px;
        }

        .service-highlight h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .service-highlight ul {
            list-style: none;
            padding: 0;
        }

        .service-highlight li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            font-size: 0.95rem;
            color: #444;
        }

        .service-highlight li::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #2e7d32;
        }

        @media (max-width: 768px) {
            .services {
                padding: 60px 0;
            }

            .services h2 {
                font-size: 2rem;
            }

            .services h4 {
                font-size: 1.4rem;
            }
        }






        /* Icon styling for About page service and values sections */
        .service-img i {
            color: #8a1a1a !important;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-img i {
            transform: scale(1.1);
        }

        /* Section Title Enhancement */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        /* ===== SERVICE DESIGN OVERRIDES (Index Page) ===== */
        .service-design {
            background-color: #f9fafb;
            /* Match services bg */
            padding: 80px 0;
            /* Match services padding */
        }

        .service-design h2 {
            font-family: 'Poppins', sans-serif !important;
            /* Force match services */
            font-size: 2.4rem !important;
            margin-bottom: 20px !important;
        }

        /* ===== FEATURES CARD VIEW (Why Choose Redesign v2) ===== */
        .features-inline-bar {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .feature-inline-item {
            display: flex;
            flex-direction: column;
            /* Vertical stacking */
            align-items: center;
            text-align: center;
            gap: 20px;
            background: #fff;
            padding: 40px 25px;
            /* More airy vertical padding */
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            /* Softer, larger shadow */
            border: 1px solid rgba(0, 0, 0, 0.03);
            transition: var(--transition);
        }

        .feature-inline-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border-color: rgba(138, 26, 26, 0.1);
        }

        .feature-icon {
            width: auto;
            height: auto;
            background: none;
            /* No background as per image */
            border-radius: 0;
            display: block;
            margin-bottom: 5px;
            color: var(--primary-color);
            font-size: 2.5rem;
            /* Larger icon as per image */
            transition: var(--transition);
        }

        .feature-inline-item:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-text h3 {
            font-size: 1.4rem;
            /* Larger bold title */
            margin-bottom: 15px;
            color: #1e293b;
            /* Dark slate text */
            font-weight: 700;
        }

        .feature-text p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
            color: #475569;
            /* Moderate slate description */
            max-width: 250px;
        }

        @media (max-width: 768px) {
            .features-inline-bar {
                grid-template-columns: 1fr;
            }

            .feature-inline-item {
                padding: 20px;
            }
        }

        /* ===== OBT (About Page/Layout) UTILITIES ===== */
        .obt-section {
            padding: 80px 0;
            background-color: var(--white-color);
        }

        .obt-grid {
            display: grid;
            gap: 30px;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        }

        .obt-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
            padding: 30px;
            transition: var(--transition);
        }

        .obt-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .obt-font-heading {
            font-family: 'Poppins', sans-serif !important;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .obt-font-body {
            font-family: 'Poppins', sans-serif !important;
            color: #555;
            line-height: 1.8;
        }

        /* ===== INTRO TEXT UTILITY ===== */
        .intro-text-block {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .intro-text-block p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
        }

        .intro-text-block strong,
        .intro-text-block b {
            color: var(--primary-dark);
            font-weight: 600;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .section-header p {
            color: #ffffff;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== PAGE HERO ===== */
        .page-hero {
            height: 60vh;
            background: #009BE4;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }

        .page-hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
        }

        .page-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .page-hero h1 {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .page-hero p {
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* ===== SERVICES DETAILS ===== */
        .services-details {
            padding: 80px 0;
        }

        .service-detail {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 80px;
        }

        .service-detail.reverse {
            direction: rtl;
        }

        .service-detail.reverse>* {
            direction: ltr;
        }

        .service-detail-img img {
            width: 100%;
            border-radius: 10px;
            object-fit: cover;
        }

        .service-detail-text h2 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .service-detail-text p {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .service-detail {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        /* ===== TRACKING SECTION ===== */
        .tracking {
            background-color: #f8f9fa;
            /* Light grey background */
            padding: 100px 0;
            text-align: center;
        }

        .tracking h2 {
            color: var(--primary-color);
            /* Dark Red */
            font-size: 2.5rem;
            margin-bottom: 40px;
            font-weight: 700;
        }

        /* White card container for input */
        .tracking-container {
            max-width: 900px;
            margin: 0 auto;
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            /* Soft shadow */
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .tracking-input {
            width: 100%;
            display: flex;
            flex-wrap: nowrap;
            /* Prevent wrapping */
            gap: 15px;
            align-items: center;
        }

        .tracking-input input {
            flex: 1 1 auto;
            /* Allow shrink and grow */
            min-width: 0;
            /* Important for flex items to shrink below content size */
            padding: 15px 20px;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            /* Rounded corners */
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            color: #666;
        }

        .tracking-input input::placeholder {
            color: #aaa;
        }

        .tracking-input input:focus {
            border-color: var(--primary-color);
        }

        .tracking-input .btn {
            background-color: var(--primary-color);
            /* #8a1a1a */
            color: #fff;
            padding: 15px 30px;
            border-radius: 50px;
            /* Pill shape button */
            font-weight: 600;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: background-color 0.3s;
        }

        .tracking-input .btn:hover {
            background-color: #6d1414;
        }

        /* Tracking Results (keep mostly same, maybe adjust padding) */
        .tracking-results {
            margin-top: 30px;
            width: 100%;
            text-align: left;
            display: none;
            /* Hidden by default */
            border-top: 1px solid #eee;
            padding-top: 20px;
        }

        .tracking-timeline {
            position: relative;
            margin: 40px 0;
            padding-left: 20px;
        }

        .timeline-item {
            position: relative;
            padding-left: 40px;
            padding-bottom: 30px;
            border-left: 2px solid var(--border-color);
        }

        .timeline-item:last-child {
            border-left: 2px solid transparent;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -11px;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--border-color);
            border: 4px solid var(--light-bg);
        }

        .timeline-item.completed::before {
            background: var(--success-color);
        }

        .timeline-item.current::before {
            background: var(--secondary-color);
        }

        .timeline-item.current {
            font-weight: bold;
        }

        .shipment-details {
            margin-top: 30px;
        }

        .detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .detail-item {
            background: var(--light-bg);
            padding: 15px;
            border-radius: 8px;
        }

        .detail-label {
            display: block;
            font-weight: 600;
            color: var(--dark-text);
            font-size: 0.9em;
        }

        .detail-value {
            color: var(--light-text);
        }

        /* --- Calculator & Client Portal Sections --- */
        .calculator-container,
        .portal-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white-color);
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .calculator-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .full-width {
            grid-column: 1 / -1;
        }

        .quote-result {
            display: none;
            /* Initially hidden */
            margin-top: 30px;
            text-align: center;
            background: var(--light-bg);
            padding: 30px;
            border-radius: 8px;
        }

        .quote-amount {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .portal-tabs {
            display: flex;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--border-color);
        }

        .portal-tab {
            padding: 10px 20px;
            border: none;
            background: none;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--light-text);
            position: relative;
        }

        .portal-tab.active {
            color: var(--primary-color);
        }

        .portal-tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .portal-form {
            display: none;
            flex-direction: column;
            gap: 20px;
        }

        .portal-form.active {
            display: flex;
        }

        /* --- Documents Section --- */
        .document-lists {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .document-list {
            background: var(--white-color);
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .document-list h3 {
            color: var(--primary-color);
        }

        .document-list ul li {
            padding: 10px 0 10px 30px;
            position: relative;
            border-bottom: 1px dashed var(--border-color);
            color: var(--light-text);
        }

        .document-list ul li:last-child {
            border-bottom: none;
        }

        .document-list ul li::before {
            content: '\f058';
            /* Font Awesome check-circle */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 12px;
            color: var(--success-color);
        }

        /* --- About Section --- */
        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content>p {
            font-size: 1.1rem;
            margin-bottom: 50px;
        }

        /* --- Contact Section --- */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            background: var(--white-color);
            padding: 50px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .contact-detail i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-top: 5px;
        }

        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* --- Footer --- */
        footer {
            background: #1b427f;
            color: var(--white-color);
            padding-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding-bottom: 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        footer h3 {
            color: var(--white-color);
            margin-bottom: 20px;
        }

        footer p {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-links a:hover {
            color: var(--white-color);
            padding-left: 5px;
        }

        .footer-links i {
            margin-right: 10px;
        }

        .footer-social {
            margin-top: 20px;
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            display: inline-flex;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white-color);
            border-radius: 50%;
            justify-content: center;
            align-items: center;
        }

        .footer-social a:hover {
            background: var(--secondary-color) !important;
            color: var(--primary-dark) !important;
        }

        .footer-bottom {
            padding: 30px 0;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 0.9rem;
            margin: 0;
            color: rgba(255, 255, 255, 0.5);
        }

        /* --- Floating Live Chat Button --- */
        .live-chat-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            /* WhatsApp Green */
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* --- Global Responsive Adjustments --- */
        @media (max-width: 768px) {

            .contact-grid,
            .document-lists,
            .calculator-form {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .contact-grid,
            .document-lists,
            .calculator-container,
            .portal-container {
                padding: 30px 20px;
            }

            .tracking-input {
                flex-direction: column;
            }

            .tracking-input .btn {
                width: 100%;
            }

            section {
                padding: 60px 0;
            }

            h2 {
                font-size: 2rem;
            }
        }

        /* --- Loading Spinner --- */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 992px) {
            h2 {
                font-size: 2rem;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                display: block;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(27, 66, 127, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 0;
                text-align: center;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
            }

            .nav-links.active {
                max-height: 500px;
                padding: 30px 0;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-links li {
                margin: 20px 0;
                opacity: 0;
                transform: translateY(-10px);
                transition: opacity 0.3s ease, transform 0.3s ease;
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateY(0);
            }

            .nav-links.active li:nth-child(1) {
                transition-delay: 0.1s;
            }

            .nav-links.active li:nth-child(2) {
                transition-delay: 0.2s;
            }

            .nav-links.active li:nth-child(3) {
                transition-delay: 0.3s;
            }

            .nav-links.active li:nth-child(4) {
                transition-delay: 0.4s;
            }

            .nav-links.active li:nth-child(5) {
                transition-delay: 0.5s;
            }

            .nav-links li a {
                color: var(--white-color);
                font-size: 1.1rem;
            }

            .nav-links li a:hover {
                color: var(--secondary-color);
            }

            #header.scrolled {
                padding: 10px 0;
            }

            #header {
                padding: 15px 0;
            }

            .nav-links .social-links {
                margin: 25px auto 0;
                border-left: none;
                padding-left: 0;
                justify-content: center;
                opacity: 0;
                transition: opacity 0.3s ease 0.6s;
            }

            .nav-links.active .social-links {
                opacity: 1;
            }

            .social-links a i {
                color: var(--white-color);
            }

            section {
                padding: 60px 0;
            }

            .hero {
                height: 70vh;
            }

            /* Hero Section Refinements for Mini Devices */
            .hero-content {
                padding: 0 15px;
            }

            .hero-content h1 {
                font-size: 2rem;
                margin-bottom: 15px;
            }

            .hero-content p {
                font-size: 0.95rem;
                line-height: 1.6;
                margin-bottom: 25px;
            }

            .hero-buttons {
                gap: 10px;
                flex-direction: column;
                align-items: center;
            }

            .btn {
                padding: 12px 25px;
                font-size: 0.95rem;
                width: 100%;
                max-width: 300px;
                text-align: center;
                margin-left: auto;
                margin-right: auto;
                display: block;
            }

            .action-cards,
            .services-grid,
            .features-grid,
            .document-lists {
                grid-template-columns: 1fr;
            }

            .calculator-form {
                grid-template-columns: 1fr;
            }

            .tracking-input {
                flex-direction: column;
            }

            .calculator-container,
            .portal-container,
            .tracking-container,
            .contact-grid {
                padding: 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }
        }

        /* --- GALLERY SECTION STYLES --- */
        .gallery {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .gallery-upload {
            background: var(--white-color);
            padding: 40px;
            border-radius: 8px;
            margin-bottom: 50px;
            box-shadow: var(--shadow);
        }

        .gallery-upload h3 {
            margin-bottom: 25px;
            color: var(--primary-color);
        }

        .upload-area {
            border: 2px dashed var(--primary-color);
            border-radius: 8px;
            padding: 60px 20px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            background: var(--light-bg);
        }

        .upload-area:hover {
            border-color: var(--primary-dark);
            background: rgba(138, 26, 26, 0.05);
        }

        .upload-area.drag-over {
            border-color: var(--primary-dark);
            background: rgba(138, 26, 26, 0.1);
        }

        .upload-area i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: block;
        }

        .upload-area p {
            color: var(--light-text);
            margin: 0;
        }

        .upload-status {
            margin-top: 15px;
            padding: 15px;
            border-radius: 8px;
            display: none;
            text-align: center;
        }

        .upload-status.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: block;
        }

        .upload-status.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            display: block;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .gallery-item {
            background: var(--white-color);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .gallery-item-info {
            padding: 15px;
        }

        .gallery-item-info h4 {
            margin: 0 0 5px 0;
            color: var(--dark-text);
        }

        .gallery-item-info p {
            margin: 0;
            font-size: 0.9em;
            color: var(--light-text);
        }

        .gallery-item-delete {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(138, 26, 26, 0.9);
            color: white;
            border: none;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-item-delete {
            opacity: 1;
        }

        .gallery-item-delete:hover {
            background: rgba(138, 26, 26, 1);
        }

        .empty-gallery {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
            color: var(--light-text);
        }

        @media (max-width: 768px) {
            .gallery-upload {
                padding: 30px 20px;
            }

            .upload-area {
                padding: 40px 15px;
            }

            .upload-area i {
                font-size: 2rem;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 20px;
            }

            .gallery-item img {
                height: 150px;
            }
        }

        /* --- ANIMATIONS & INTERACTIVITY --- */

        /* Keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 40px, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translate3d(-50px, 0, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translate3d(50px, 0, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        /* Reveal Classes (Toggled by JS) */
        .reveal {
            opacity: 0;
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .reveal-left {
            opacity: 0;
            transition: all 0.8s ease-out;
        }

        .reveal-left.active {
            opacity: 1;
            animation: slideInLeft 0.8s ease-out forwards;
        }

        .reveal-right {
            opacity: 0;
            transition: all 0.8s ease-out;
        }

        .reveal-right.active {
            opacity: 1;
            animation: slideInRight 0.8s ease-out forwards;
        }

        /* Staggered Delays */
        .delay-100 {
            animation-delay: 0.1s;
        }

        .delay-200 {
            animation-delay: 0.2s;
        }

        .delay-300 {
            animation-delay: 0.3s;
        }

        .delay-400 {
            animation-delay: 0.4s;
        }

        /* --- STATS SECTION --- */
        .stats-section {
            background: linear-gradient(rgba(14, 34, 94, 0.9), rgba(14, 34, 94, 0.9)), url("img/hero-bg.jpg") center/cover fixed;
            color: var(--white-color);
            padding: 80px 0;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-item i {
            font-size: 2.4rem;
            /* Brand primary red on a white-tinted circular disc */
            color: #ffffff;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.4);
            width: 72px;
            height: 72px;
            border-radius: 50%;
            margin-bottom: 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .stat-item:hover i {
            transform: scale(1.15);
            background: rgba(255, 255, 255, 0.25);
        }

        .stat-number {
            display: block;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }


        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }

        /* =========================================
   About Page Redesign (OBT Style)
   ========================================= */

        /* Typography */
        .obt-font-heading {
            font-family: 'Darker Grotesque', sans-serif;
        }

        .obt-font-body {
            font-family: 'Roboto', sans-serif;
        }

        /* Sections */
        .obt-section {
            padding: 100px 0;
            background-color: #F7F7F7;
        }

        .obt-section h2 {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: 3.5rem;
            font-weight: 600;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 2rem;
        }

        @media (max-width: 768px) {
            .obt-section h2 {
                font-size: 1.25rem;
                /* Significantly reduced */
                word-wrap: break-word;
                /* Ensure clear wrapping */
                padding: 0 10px;
                line-height: 1.4;
            }

            .obt-section>.container>p {
                font-size: 1rem;
                padding: 0 10px;
            }
        }

        @media (max-width: 480px) {
            .obt-section h2 {
                font-size: 1.15rem;
            }
        }

        .obt-section>.container>p {
            font-family: 'Roboto', sans-serif;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            color: #243746;
            font-size: 1.2rem;
            line-height: 1.6;
        }

        /* Cards */
        .obt-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .obt-card {
            background: #FFFFFF;
            border-radius: 25px;
            /* Prominent rounded corners */
            padding: 40px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .obt-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .obt-card i {
            font-size: 3rem;
            color: var(--primary-color);
            /* Accent Color */
            margin-bottom: 25px;
        }

        .obt-card h3 {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: 2rem;
            color: #243746;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .obt-card p {
            font-family: 'Roboto', sans-serif;
            color: #555;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Gallery Update */
        .gallery {
            padding: 100px 0;
            background-color: #FFFFFF;
        }

        .gallery h2 {
            font-family: 'Darker Grotesque', sans-serif;
            font-size: 3.5rem;
            color: #243746;
            text-align: center;
            margin-bottom: 3rem;
        }

        .upload-area {
            border-radius: 25px;
            border: 2px dashed #009BE4;
            background-color: #F9FAFB;
            transition: all 0.3s ease;
        }

        .upload-area:hover {
            background-color: #E6F7FF;
        }

        .gallery-item img {
            border-radius: 15px;
        }

        /* Footer (if specific tweaks needed) */
        footer {
            font-family: 'Roboto', sans-serif;
        }

        /* --- LANGUAGE POPUP & TRANSLATION --- */
        .lang-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(14, 34, 94, 0.85);
            backdrop-filter: blur(8px);
            z-index: 9999;
            display: none;
            /* Hidden by default */
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.4s ease;
        }

        .lang-modal {
            background: white;
            width: 90%;
            max-width: 500px;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .lang-modal h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .lang-modal h2::after {
            display: none;
        }

        .lang-modal p {
            color: var(--light-text);
            margin-bottom: 30px;
        }

        .lang-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        .lang-option {
            padding: 15px;
            border: 1px solid #eee;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-weight: 500;
        }

        .lang-option:hover {
            border-color: var(--primary-color);
            background: rgba(138, 26, 26, 0.05);
            transform: translateY(-2px);
        }

        .lang-option img {
            width: 24px;
            height: 18px;
            object-fit: cover;
            border-radius: 2px;
        }

        .lang-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #ccc;
            transition: color 0.3s;
        }

        .lang-close:hover {
            color: var(--primary-color);
        }

        /* Language Toggle in Nav */
        .lang-toggle {
            margin-left: 15px;
            cursor: pointer;
            font-size: 1.2rem;
            color: var(--white-color);
            transition: transform 0.3s ease;
            padding: 5px;
            display: flex;
            align-items: center;
        }

        .lang-toggle:hover {
            transform: rotate(30deg);
            color: var(--secondary-color);
        }

        /* Hide Google Translate Power-by and Native element */
        .goog-te-banner-frame.skiptranslate,
        .goog-te-gadget-icon {
            display: none !important;
        }

        body {
            top: 0px !important;
        }

        .goog-te-gadget {
            color: transparent !important;
            font-size: 0 !important;
        }

        .goog-te-gadget .goog-te-combo {
            background: #fff;
            border: 1px solid #ddd;
            padding: 5px;
            border-radius: 50px;
            outline: none;
            margin: 0;
            font-family: inherit;
        }

        #google_translate_element {
            display: none;
            /* We'll trigger it manually */
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }


            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .lang-modal {
                padding: 30px 20px;
            }

            .lang-grid {
                gap: 10px;
            }

            .lang-toggle {
                margin: 0;
                color: var(--white-color);
                font-size: 1.5rem;
            }
        }

        /* ===== TEAM SECTION ===== */
        .team-section {
            padding: 80px 0;
            background: #f9fafb;
        }

        .team-section h2 {
            text-align: center;
            margin-bottom: 15px;
            font-size: 2.5rem;
            color: var(--primary-color);
        }

        .team-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .team-img {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
        }

        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-img img {
            transform: scale(1.1);
        }

        .team-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(138, 26, 26, 0.95) 0%, rgba(14, 34, 94, 0.95) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .team-card:hover .team-overlay {
            opacity: 1;
        }

        .team-social {
            display: flex;
            gap: 15px;
        }

        .team-social a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
        }

        .team-card:hover .team-social a {
            transform: translateY(0);
            opacity: 1;
        }

        .team-card:hover .team-social a:nth-child(1) {
            transition-delay: 0.1s;
        }

        .team-card:hover .team-social a:nth-child(2) {
            transition-delay: 0.2s;
        }

        .team-card:hover .team-social a:nth-child(3) {
            transition-delay: 0.3s;
        }

        .team-social a:hover {
            background: #fff;
            color: var(--primary-color);
            transform: translateY(-5px) scale(1.1);
        }

        .team-info {
            padding: 25px 20px;
            text-align: center;
        }

        .team-info h3 {
            font-size: 1.4rem;
            color: #222;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .team-position {
            font-size: 0.95rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .team-bio {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Responsive Design for Team Section */
        @media (max-width: 1024px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .team-section {
                padding: 60px 0;
            }

            .team-section h2 {
                font-size: 2rem;
            }

            .team-subtitle {
                font-size: 1rem;
                margin-bottom: 35px;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .team-img {
                height: 250px;
            }

            .team-info {
                padding: 20px 15px;
            }

            .team-info h3 {
                font-size: 1.2rem;
            }

            .team-position {
                font-size: 0.85rem;
            }

            .team-bio {
                font-size: 0.85rem;
            }

            .team-social a {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .team-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .team-img {
                height: 280px;
            }

            .team-info {
                padding: 25px 20px;
            }

            .team-info h3 {
                font-size: 1.3rem;
            }

            .team-position {
                font-size: 0.9rem;
            }

            .team-bio {
                font-size: 0.9rem;
            }
        }

        /* ===== NEWS AND UPDATES SECTION ===== */
        .news-section {
            padding: 80px 0;
            background: #fff;
        }

        .news-meta-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .ai-badge {
            font-size: 0.75rem;
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            padding: 2px 8px;
            border-radius: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .ai-badge i {
            font-size: 0.85rem;
        }

        .news-section h2 {
            text-align: center;
            margin-bottom: 15px;
            font-size: 2.5rem;
            color: var(--primary-color);
        }

        .news-section>.container>p {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .news-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Tab Navigation */
        .news-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .news-tab {
            padding: 15px 35px;
            background: #f8f9fa;
            border: 2px solid transparent;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .news-tab i {
            font-size: 1.2rem;
        }

        .news-tab:hover {
            background: #e9ecef;
            color: var(--primary-color);
        }

        .news-tab.active {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }

        /* News Content Container */
        .news-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .news-content.active {
            display: block;
        }

        /* News Carousel */
        .news-carousel {
            position: relative;
            min-height: 350px;
            overflow: hidden;
        }

        .news-slide {
            display: none;
            animation: slideIn 0.5s ease;
        }

        .news-slide.active {
            display: block;
        }

        .news-card {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            border: 1px solid #eee;
            margin-bottom: 20px;
        }

        .news-image {
            position: relative;
            overflow: hidden;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .news-card:hover .news-image img {
            transform: scale(1.05);
        }

        .news-date {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(138, 26, 26, 0.85);
            /* Transparent Red */
            color: #fff;
            padding: 8px 15px;
            font-size: 0.85rem;
            backdrop-filter: blur(5px);
        }

        .news-text {
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .news-source {
            font-size: 0.8rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
        }

        .news-text h3 {
            font-size: 1.6rem;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .news-text p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .read-more-btn {
            background: none;
            border: none;
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: gap 0.3s ease;
            width: fit-content;
        }

        .read-more-btn:hover {
            gap: 15px;
        }

        /* Carousel Indicators */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 25px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--primary-color);
            transform: scale(1.3);
        }

        @media (max-width: 768px) {
            .news-card {
                grid-template-columns: 1fr;
            }

            .news-image {
                height: 250px;
            }

            .news-text h3 {
                font-size: 1.3rem;
            }
        }

        .news-tab {
            padding: 15px 35px;
            background: #f8f9fa;
            border: 2px solid transparent;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .news-tab i {
            font-size: 1.2rem;
        }

        .news-tab:hover {
            background: #e9ecef;
            color: var(--primary-color);
        }

        .news-tab.active {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }

        /* News Content Container */
        .news-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .news-content.active {
            display: block;
        }

        /* News Carousel */
        .news-carousel {
            position: relative;
            min-height: 350px;
            overflow: hidden;
        }

        .news-slide {
            display: none;
            animation: slideIn 0.5s ease;
        }

        .news-slide.active {
            display: block;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .news-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            /* More modern rounding */
            padding: 0;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
            /* Softer, wider shadow */
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            display: flex;
            align-items: stretch;
            overflow: hidden;
            min-height: 400px;
            margin-bottom: 30px;
            position: relative;
        }

        .news-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--primary-color);
            transition: height 0.5s ease;
            z-index: 2;
        }

        .news-card:hover::before {
            height: 100%;
        }

        .news-card:hover {
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            transform: translateY(-10px) scale(1.01);
        }

        /* Text Section - Left Side */
        .news-text {
            flex: 1.2;
            /* Give text a bit more room */
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.8));
        }

        /* Image Section - Right Side */
        .news-image {
            flex: 0.8;
            position: relative;
            overflow: hidden;
        }

        .news-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #ffffff 0%, transparent 20%);
            z-index: 1;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .news-card:hover .news-image img {
            transform: scale(1.15) rotate(1deg);
        }

        .news-date {
            display: inline-flex;
            align-items: center;
            background: #8a1a1a;
            color: #fff;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            letter-spacing: 1px;
            text-transform: uppercase;
            width: fit-content;
        }

        .news-date i {
            margin-right: 8px;
        }

        .news-card h3 {
            font-size: 2.2rem;
            /* Larger, bolder heading */
            color: #111;
            margin-bottom: 20px;
            line-height: 1.25;
            font-weight: 800;
            transition: color 0.3s ease;
        }

        .news-card:hover h3 {
            color: var(--primary-color);
        }

        .news-card p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.7;
            margin-bottom: 35px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Read More Button - Premium Version */
        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 40px;
            border-radius: 50px;
            font-size: 0.95rem;
            background: var(--primary-color);
            color: #fff;
            border: none;
            transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
            font-weight: 700;
            letter-spacing: 0.5px;
            cursor: pointer;
            width: fit-content;
            box-shadow: 0 10px 20px rgba(138, 26, 26, 0.2);
        }

        .read-more-btn:hover {
            background: #1b427f;
            transform: translateX(5px);
            box-shadow: 0 15px 30px rgba(27, 66, 127, 0.3);
        }

        .read-more-btn i {
            margin-left: 8px;
            font-size: 0.9em;
        }

        .news-meta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .news-meta span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .news-meta i {
            color: var(--primary-color);
        }

        /* Carousel Controls */
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(138, 26, 26, 0.9);
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-control:hover {
            background: var(--primary-color);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-control.prev {
            left: -25px;
        }

        .carousel-control.next {
            right: -25px;
        }

        /* Carousel Indicators */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator:hover {
            background: #999;
        }

        /* --- NETWORK BADGE --- */
        .network-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #f0f7ff;
            color: #0056b3;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid #cce5ff;
            box-shadow: 0 2px 8px rgba(0, 86, 179, 0.05);
        }

        .network-badge i {
            color: #007bff;
        }

        .indicator.active {
            background: var(--primary-color);
            width: 35px;
            border-radius: 6px;
        }

        /* Tracking Updates Grid */
        .tracking-updates-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 20px;
        }

        @media (max-width: 1024px) {
            .tracking-updates-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .tracking-updates-grid {
                grid-template-columns: 1fr;
            }
        }

        .tracking-update-card {
            background: #fff;
            border: 1px solid #f1f3f5;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .tracking-update-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .tracking-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tracking-id {
            font-family: 'Courier New', Courier, monospace;
            font-size: 1.1rem;
            font-weight: 700;
            color: #831313;
            background: #f8ecec;
            padding: 10px 18px;
            border-radius: 8px;
            letter-spacing: 1px;
            display: inline-block;
        }

        .tracking-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
        }

        .tracking-status.delivered {
            background: #ddeadb;
            color: #0d5c2d;
        }

        .tracking-status.in-transit {
            background: #e1f5fe;
            color: #01579b;
        }

        .tracking-status.customs {
            background: #fff9c4;
            color: #fbc02d;
        }

        .tracking-status.arrived-at-facility {
            background: #f3e8ff;
            color: #7e22ce;
        }

        .tracking-update-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a1a;
            margin: 5px 0;
        }

        .tracking-route {
            color: #5b6e80;
            font-size: 1.05rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
            line-height: 1.4;
            font-weight: 400;
        }

        .tracking-route i {
            color: #8a1a1a;
            font-size: 1.2rem;
        }

        /* Mini Timeline */
        .tracking-timeline-mini {
            display: flex;
            justify-content: space-between;
            margin: 35px 0;
            position: relative;
            padding: 0 5px;
        }

        .tracking-timeline-mini::before {
            content: '';
            position: absolute;
            top: 21px;
            left: 12%;
            right: 12%;
            height: 1.5px;
            background: #e2e8f0;
            z-index: 0;
        }

        .timeline-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .timeline-step i {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #831313;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1rem;
            border: 3px solid #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .timeline-step span {
            font-size: 0.75rem;
            color: #94a3b8;
            font-weight: 500;
            text-align: center;
            white-space: nowrap;
            margin-top: 5px;
        }

        .timeline-step.completed span {
            color: #1e293b;
            font-weight: 600;
        }

        .timeline-step.pending i {
            background: #f1f5f9;
            color: #cbd5e1;
        }

        .timeline-step.active i {
            background: #831313;
            color: #fff;
            box-shadow: 0 0 0 4px rgba(131, 19, 19, 0.1);
        }

        .tracking-status i {
            font-size: 0.85rem;
        }

        .tracking-date {
            border-top: 1px solid #f1f3f5;
            padding-top: 20px;
            margin-top: 10px;
            color: #475569;
            font-size: 1.05rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .tracking-date i {
            color: #831313;
            font-size: 1.2rem;
        }



        /* Responsive Design for News Section */
        @media (max-width: 768px) {
            .news-section {
                padding: 60px 0;
            }

            .news-section h2 {
                font-size: 2rem;
            }

            .news-tabs {
                gap: 10px;
            }

            .news-tab {
                padding: 12px 25px;
                font-size: 0.95rem;
            }

            .news-card {
                padding: 0;
                flex-direction: column-reverse;
                /* Text on bottom, image on top */
                min-height: auto;
            }

            .news-text {
                padding: 25px 20px;
            }

            .news-image {
                width: 100%;
                height: 200px;
                /* Fixed height for mobile */
                min-width: auto;
            }

            .news-card h3 {
                font-size: 1.4rem;
            }

            .news-card p {
                font-size: 1rem;
            }

            .carousel-control {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .carousel-control.prev {
                left: -10px;
            }

            .carousel-control.next {
                right: -10px;
            }

            .tracking-updates-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .tracking-timeline-mini {
                gap: 5px;
            }

            .timeline-step i {
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .news-tab {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .news-card h3 {
                font-size: 1.2rem;
            }

            .tracking-id {
                font-size: 0.95rem;
            }

            .tracking-update-card h4 {
                font-size: 1.05rem;
            }
        }

        /* ===== SERVICES PAGE DETAILS SECTION ===== */
        .services-details {
            padding: 80px 0;
            background-color: #fcfcfc;
        }

        .service-detail {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            margin-bottom: 100px;
        }

        /* Alternating Layout */
        .service-detail.reverse {
            flex-direction: row-reverse;
        }

        /* Image Styling */
        .service-detail-img {
            flex: 1;
            max-width: 50%;
            height: 400px;
            /* Fixed height for consistency */
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .service-detail-img:hover {
            transform: translateY(-5px);
        }

        .service-detail-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        /* Text Styling */
        .service-detail-text {
            flex: 1;
            padding: 20px;
        }

        .service-detail-text h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .service-detail-text h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 60px;
            height: 4px;
            background: #a52a2a;
            /* Secondary accent */
            border-radius: 2px;
        }

        .service-detail-text p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #555;
            text-align: justify;
            /* clean alignment */
            margin-bottom: 15px;
        }

        /* Responsive Design for Services Page */
        @media (max-width: 992px) {
            .service-detail {
                gap: 40px;
            }

            .service-detail-img {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .services-details {
                padding: 50px 0;
            }

            .service-detail,
            .service-detail.reverse {
                flex-direction: column;
                gap: 30px;
                margin-bottom: 60px;
            }

            .service-detail-img {
                max-width: 100%;
                width: 100%;
                height: 250px;
                /* Smaller height for mobile */
            }

            .service-detail-text {
                padding: 0;
            }

            .service-detail-text h2 {
                font-size: 1.8rem;
            }

            .service-detail-text p {
                font-size: 1rem;
                text-align: left;
                /* Better readability on small screens */
            }
        }

        /* --- Google Translate Widget for 'Others' --- */
        #google_translate_element {
            /* Keep widget in DOM and "visible" to script, but hidden from user */
            position: absolute;
            top: 0;
            left: 0;
            width: 1px;
            height: 1px;
            margin: -1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
            opacity: 0;
        }

        #google_translate_element.active-widget {
            display: block !important;
            position: fixed;
            width: auto;
            height: auto;
            margin: 0;
            clip: auto;
            opacity: 1;
            bottom: 20px;
            right: 20px;
            z-index: 10000;
            background: #ffffff;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid #eee;
            animation: fadeInWidget 0.3s ease-out;
        }

        @keyframes fadeInWidget {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile optimization for Google Translate Widget */
        @media (max-width: 768px) {
            #google_translate_element.active-widget {
                bottom: 10px;
                right: 10px;
                left: 10px;
                /* Stretch across bottom */
                width: auto;
                text-align: center;
                padding: 15px;
                box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
            }

            /* Center the Google dropdown inside */
            div.skiptranslate {
                text-align: center;
                width: 100%;
            }

            .goog-te-gadget-simple {
                width: 100%;
                padding: 10px !important;
            }
        }

        /* =========================================
           PROFESSIONAL LANGUAGE SELECTION STYLES
           ========================================= */

        /* Overlay */
        .lang-overlay {
            display: none;
            /* Toggled by JS */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            /* Glassmorphism blur */
            z-index: 10001;
            /* Above everything */
            justify-content: center;
            align-items: center;
            animation: fadeInOverlay 0.3s ease;
        }

        @keyframes fadeInOverlay {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Modal Box */
        .lang-modal {
            background: #ffffff;
            width: 90%;
            max-width: 600px;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            text-align: center;
            position: relative;
            animation: scaleInModal 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        @keyframes scaleInModal {
            from {
                transform: scale(0.8);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Header */
        .lang-modal h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .lang-modal p {
            color: #666;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        /* Close Button */
        .lang-close {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 2rem;
            color: #aaa;
            cursor: pointer;
            transition: color 0.3s;
            line-height: 1;
        }

        .lang-close:hover {
            color: var(--primary-color);
        }

        /* Grid Layout */
        .lang-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        /* Option Cards */
        .lang-option {
            background: #fff;
            border: 2px solid #eee;
            border-radius: 15px;
            padding: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            transition: all 0.3s ease;
        }

        .lang-option img {
            width: 35px;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .lang-option i {
            font-size: 1.5rem;
            color: #555;
        }

        /* Hover States */
        .lang-option:hover {
            border-color: var(--primary-color);
            background: rgba(138, 26, 26, 0.05);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }

        /* Mobile Responsiveness for Modal */
        @media (max-width: 600px) {
            .lang-modal {
                width: 95%;
                padding: 30px 20px;
                max-width: none;
            }

            .lang-grid {
                grid-template-columns: 1fr;
                /* Stack vertically on small screens */
                gap: 15px;
            }

            .lang-modal h2 {
                font-size: 1.6rem;
            }

            .lang-option {
                padding: 15px;
                justify-content: flex-start;
                /* Align left on mobile list */
                padding-left: 30px;
            }
        }

        /* ===== LIVE CHAT BUTTON ===== */
        .live-chat-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 9999;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        .live-chat-btn:hover {
            transform: scale(1.1);
            color: #fff;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* ===== MAP CONTAINER ===== */
        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
            margin-bottom: 30px;
            border: 5px solid #fff;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        @media (max-width: 768px) {

            /* News Section Updates */
            .news-source {
                display: none !important;
                /* Hide as requested */
            }

            .read-more-btn {
                display: block;
                width: 100%;
                margin-top: 20px;
                background-color: var(--primary-color);
                color: #fff;
                border: none;
            }

            .read-more-btn:hover {
                background-color: var(--primary-dark);
                color: #fff;
            }

            .read-more-btn i {
                margin-left: 8px;
                font-size: 0.85em;
            }

            .map-container {
                height: 300px;
            }
        }

        /* ===== SERVICES CTA SECTION ===== */
        .services-cta {
            text-align: center;
            padding: 80px 0;
            background-color: #fff;
        }

        .services-cta h2 {
            font-size: 2.5rem;
            color: #8B1E1E;
            /* Dark Red to match screenshot */
            margin-bottom: 20px;
            font-weight: 700;
        }

        .services-cta p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
        }

        .services-cta .btn {
            background-color: #8B1E1E;
            /* Dark Red */
            color: #fff;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 30px;
            text-transform: capitalize;
            font-weight: 600;
            margin-top: 10px;
            display: inline-block;
        }

        .services-cta .btn:hover {
            background-color: #6d1616;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(139, 30, 30, 0.3);
        }

        /* ===== NEWS MODAL ===== */
        /* Duplicate legacy modal styles parsed out */

        /* ===== NEWS MODAL POP-UP ENHANCEMENTS ===== */
        .news-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 999999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .news-modal-overlay.active {
            display: flex !important;
            opacity: 1;
            pointer-events: auto;
        }

        .news-modal-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .news-modal-container {
            position: relative;
            pointer-events: auto;
            width: 100%;
            max-width: 1000px;
            max-height: 90vh;
            background: #fff;
            border-radius: 24px;
            overflow-y: auto;
            z-index: 10001;
            box-shadow: 0 40px 100px -12px rgba(0, 0, 0, 0.45);
            animation: modalPopUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        @keyframes modalPopUp {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .news-modal-close {
            /* Inline in header - no fixed positioning needed */
            position: relative;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            line-height: 1;
        }

        .news-modal-close:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: rotate(90deg) scale(1.1);
        }

        .reader-image-container {
            position: relative;
            height: 480px;
            width: 100%;
            overflow: hidden;
            border-top-left-radius: 24px;
            border-top-right-radius: 24px;
        }

        .reader-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .reader-meta {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 100%);
            padding: 40px 60px;
            display: flex;
            gap: 30px;
            color: #fff;
            flex-wrap: wrap;
            z-index: 2;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            font-weight: 500;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .meta-item i {
            color: var(--secondary-color);
            font-size: 1.1rem;
        }

        .reader-text-container {
            padding: 60px;
        }

        .reader-text-container h3 {
            font-size: 2.5rem;
            color: #1a2a4b;
            margin-bottom: 30px;
            line-height: 1.25;
            font-weight: 800;
        }

        .reader-text {
            font-size: 1.15rem;
            line-height: 1.9;
            color: #334155;
        }

        .reader-text p {
            margin-bottom: 25px;
        }

        @media (max-width: 768px) {
            .news-modal-container {
                max-height: 95vh;
                border-radius: 15px;
            }

            .news-modal-close {
                top: 15px;
                right: 15px;
            }

            .reader-image-container {
                height: 250px;
            }

            .reader-text-container {
                padding: 30px 20px;
            }

            .reader-text-container h3 {
                font-size: 1.6rem;
            }

            .reader-meta {
                padding: 20px;
                gap: 15px;
            }
        }

        /* --- COOKIE CONSENT BANNER --- */
        .cookie-banner {
            position: fixed;
            bottom: -100%;
            left: 0;
            width: 100%;
            background: #ffffff;
            padding: 20px 0;
            box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
            z-index: 9999;
            transition: all 0.5s ease;
        }

        .cookie-banner.active {
            bottom: 0;
        }

        .cookie-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .cookie-text {
            flex: 1;
        }

        .cookie-text p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--dark-text);
        }

        .cookie-btn-container {
            display: flex;
            gap: 15px;
        }

        .cookie-btn {
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-accept {
            background: var(--primary-color);
            color: #fff;
        }

        .btn-accept:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .cookie-container {
                flex-direction: column;
                text-align: center;
            }

            .cookie-btn-container {
                width: 100%;
                justify-content: center;
            }
        }

        /* --- AD SECTION STYLES --- */
        .ad-section {
            padding: 10px 0;
            background: #f0f2f5;
            text-align: center;
        }

        .ad-label {
            font-size: 0.65rem;
            color: var(--light-text);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2px;
            display: block;
        }

        .ad-slot {
            max-width: 100%;
            margin: 0 auto;
            background: #fff;
            border: 1px dashed var(--border-color);
            min-height: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .ad-slot .adsbygoogle {
            width: 100%;
        }

        .ad-leaderboard {
            width: 728px;
            height: 90px;
            max-width: 100%;
        }

        .ad-rectangle {
            width: 300px;
            height: 250px;
            max-width: 100%;
        }

        @media (max-width: 768px) {
            .ad-leaderboard {
                width: 320px;
                height: 50px;
            }
        }

        .ad-slot-container {
            width: 100%;
            margin: 5px auto;
            text-align: center;
            /* Provide min-height so ad-script knows it has space */
            min-height: 100px;
            max-height: 150px;
            background: #f9f9f9;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            padding: 5px 0;
            overflow: hidden;
            display: block;
            /* Flex can break ad calculation */
        }

        /* Utility classes for reducing section gaps around ads */
        .compact-ad-spacing {
            margin: -10px auto !important;
            padding: 5px 0 !important;
            min-height: 80px;
            max-height: 120px;
            z-index: 10;
            position: relative;
        }

        .ad-slot-container .adsbygoogle {
            width: 100%;
            max-height: 90px !important;
            /* Force tight ad boundary */
            display: block;
            margin: 0 auto;
        }

        /* --- Advanced Shipment Tracking Modal --- */
        .tracking-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(12px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .tracking-modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .tracking-modal-content {
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            width: 100%;
            max-width: 850px;
            max-height: 92vh;
            border-radius: 32px;
            position: relative;
            overflow-y: auto;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transform: translateY(20px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .tracking-modal-overlay.active .tracking-modal-content {
            transform: translateY(0) scale(1);
        }

        .modal-close-btn {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            background: rgba(241, 245, 249, 0.8);
            backdrop-filter: blur(4px);
            border-radius: 14px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 101;
            transition: all 0.3s ease;
            color: #475569;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .modal-close-btn:hover {
            background: #e11d48;
            color: #fff;
            transform: rotate(90deg) scale(1.1);
        }

        .modal-body {
            padding: 48px;
        }

        .detail-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 24px;
            border-bottom: 1px dashed #e2e8f0;
        }

        .tracking-main-info h2 {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary-color), #4a0404);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .detail-tracking-id {
            font-family: monospace;
            background: #f1f5f9;
            color: #64748b;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .detail-route-box {
            background: #fff;
            padding: 30px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
            border: 1px solid #f1f5f9;
        }

        .route-city {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            flex: 1;
        }

        .route-city i {
            font-size: 1.8rem;
            color: var(--primary-color);
            background: #fef2f2;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 18px;
        }

        .route-city span {
            font-weight: 700;
            color: #1e293b;
            font-size: 1.1rem;
        }

        .route-line {
            flex: 2;
            position: relative;
            height: 4px;
            background: #f1f5f9;
            margin: 0 20px;
            border-radius: 2px;
        }

        .route-plane-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #fff;
            padding: 8px;
            border-radius: 50%;
            border: 2px solid #f1f5f9;
            color: var(--primary-color);
            animation: moveRoute 3s infinite ease-in-out;
        }

        @keyframes moveRoute {

            0%,
            100% {
                left: 40%;
                opacity: 0.5;
            }

            50% {
                left: 60%;
                opacity: 1;
            }
        }

        .detail-timeline {
            display: flex;
            flex-direction: column;
            gap: 0;
            padding: 0 10px;
        }

        .timeline-step {
            display: flex;
            gap: 24px;
            position: relative;
            padding-bottom: 32px;
        }

        /* .timeline-step::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 40px;
            width: 2px;
            height: calc(100% - 40px);
            background: #e2e8f0;
        }

        .timeline-step:last-child::before {
            display: none;
        }

        .timeline-step.completed::before {
            background: var(--primary-color);
        } */

        .step-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            color: #94a3b8;
            border: 2px solid #fff;
            box-shadow: 0 0 0 2px #f1f5f9;
        }

        .timeline-step.completed .step-icon {
            background: var(--primary-color);
            color: #fff;
            box-shadow: 0 0 0 2px #fecaca;
        }

        .timeline-step.active .step-icon {
            background: var(--primary-color);
            color: #fff;
            box-shadow: 0 0 0 4px #fecaca;
            animation: pulseActive 2s infinite;
        }

        @keyframes pulseActive {
            0% {
                box-shadow: 0 0 0 0 rgba(165, 42, 42, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(165, 42, 42, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(165, 42, 42, 0);
            }
        }

        .step-content {
            flex: 1;
        }

        .step-content h4 {
            font-size: 1.1rem;
            color: #1e293b;
            margin-bottom: 4px;
            font-weight: 700;
        }

        .step-content p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .step-date {
            display: block;
            font-size: 0.8rem;
            color: #94a3b8;
            margin-top: 6px;
            font-weight: 500;
        }

        .detail-footer {
            margin-top: 40px;
            padding: 24px;
            background: #f8fafc;
            border-radius: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .detail-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #475569;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .detail-note {
            font-size: 0.85rem;
            color: #94a3b8;
            text-align: right;
            max-width: 300px;
        }

        @media (max-width: 768px) {
            .modal-body {
                padding: 30px 20px;
            }

            .detail-card-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .detail-route-box {
                padding: 15px;
            }

            .route-line {
                margin: 0 10px;
            }

            .route-city span {
                font-size: 0.9rem;
            }

            .detail-footer {
                flex-direction: column;
                text-align: center;
            }

            .detail-note {
                text-align: center;
            }

            .tracking-main-info h2 {
                font-size: 1.6rem;
            }
        }

        /* --- Contact Method Modal Styles (Shared) --- */
        .method-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s;
        }

        .method-modal-content {
            background-color: #fff;
            margin: 15% auto;
            padding: 40px;
            border: none;
            width: 90%;
            max-width: 500px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            text-align: center;
            position: relative;
            animation: slideIn 0.3s;
        }

        .method-modal h3 {
            margin-top: 0;
            color: #333;
            margin-bottom: 15px;
        }

        .method-modal p {
            color: #666;
            margin-bottom: 30px;
        }

        .method-close {
            color: #aaa;
            position: absolute;
            right: 20px;
            top: 15px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }

        /* ===== REFINED MAERSK-STYLE TRACKING DISPLAY ===== */
        .shipment-detail-view-maersk {
            background: #fff;
            color: #1a1a1a;
            font-family: 'Poppins', sans-serif;
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        .tracking-header-maersk {
            background: #0084c8;
            color: #fff;
            display: flex;
            padding: 15px 25px;
            align-items: center;
            gap: 20px;
        }

        /* Container Info Bar */
        .container-info-bar {
            background: #f9fafb;
            padding: 12px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.95rem;
            border-bottom: 1px solid #e5e7eb;
            color: #374151;
        }

        .info-left {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
        }

        /* Overview Summary Bar */
        .overview-summary-bar {
            background: #fff;
            padding: 15px 25px;
            display: grid;
            grid-template-columns: 1fr 2fr auto;
            align-items: flex-start;
            border-bottom: 1px solid #e5e7eb;
            gap: 30px;
        }

        .summary-item {
            display: flex;
            gap: 12px;
        }

        .summary-icon {
            font-size: 1.1rem;
            color: #6b7280;
            padding-top: 2px;
        }

        .summary-label {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            color: #111;
            margin-bottom: 4px;
        }

        .summary-value {
            font-size: 1rem;
            color: #374151;
            font-weight: 400;
        }

        .summary-toggle {
            color: #0084c8;
            font-size: 0.9rem;
            font-weight: 400;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            align-self: flex-start;
            margin-top: 2px;
        }

        .tracking-timezone-note {
            padding: 15px 25px;
            font-size: 0.85rem;
            color: #4b5563;
        }

        /* Detailed Timeline Maersk */
        .detailed-timeline-maersk {
            padding: 0 0 60px;
            background: #fff;
            position: relative;
        }

        .timeline-step-maersk {
            display: flex;
            position: relative;
            min-height: 100px;
            padding: 20px 0;
        }

        .timeline-left {
            width: 50%;
            padding-right: 40px;
            text-align: right;
            display: flex;
            flex-direction: column;
        }

        .timeline-left strong {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a1a;
            text-transform: uppercase;
            line-height: 1.2;
        }

        .timeline-left span {
            font-size: 0.9rem;
            color: #374151;
            margin-top: 4px;
        }

        .timeline-center {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #0084c8;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding-top: 25px;
        }

        /* Markers */
        .timeline-marker {
            width: 32px;
            height: 32px;
            background: #fff;
            border: 1.5px solid #d1d5db;
            border-radius: 50% !important;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
            color: #4b5563;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        /* Active Marker (Large Blue with Vehicle Icon) */
        .timeline-step-maersk.active .timeline-marker {
            width: 48px;
            height: 48px;
            background: #fff;
            border: 2px solid #0084c8;
            border-radius: 50% !important;
            color: #0084c8;
            font-size: 1.4rem;
            margin-top: -12px;
            box-shadow: 0 4px 12px rgba(0, 132, 200, 0.15);
            flex-shrink: 0;
        }

        .timeline-center::after {
            /* Handled by background on .timeline-center */
            display: none;
        }

        /* Dotted line for future legs */
        .timeline-step-maersk.future .timeline-center {
            background: transparent;
            border-left: 2px dotted #0084c8;
        }

        .timeline-right {
            width: 50%;
            padding-left: 40px;
            display: flex;
            flex-direction: column;
        }

        .timeline-right strong {
            font-size: 1rem;
            font-weight: 400;
            color: #111;
        }

        .timeline-right span {
            font-size: 0.9rem;
            color: #4b5563;
            margin-top: 4px;
        }

        /* Horizontal dividers between logical legs */
        .timeline-step-maersk.has-divider {
            border-top: 1px solid #f0f0f0;
            margin-top: 15px;
            padding-top: 25px;
        }

        @media (max-width: 768px) {
            .overview-summary-bar {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .timeline-left {
                width: 40%;
                padding-right: 15px;
            }

            .timeline-right {
                width: 60%;
                padding-left: 15px;
            }

            .timeline-center {
                left: 40%;
            }

            .timeline-left strong {
                font-size: 0.95rem;
            }

            .timeline-right strong {
                font-size: 0.9rem;
            }
        }

        .method-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .method-buttons .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-width: 160px;
            padding: 12px 25px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            border-radius: 50px;
            transition: transform 0.2s;
        }

        .method-buttons .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-whatsapp {
            background-color: #25D366;
            color: white;
        }

        .btn-whatsapp:hover {
            background-color: #128C7E;
        }

        .btn-email {
            background-color: #0072C6;
            color: white;
        }

        .btn-email:hover {
            background-color: #005a9e;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .fa-spin-slow {
            animation: fa-spin 5s infinite linear;
        }

        /* --- Blog Modal Styles --- */
        .blog-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            opacity: 0;
            transition: opacity 0.4s ease;
            width: 100%;
            max-width: 900px;
            max-height: 90vh;
            position: relative;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .blog-modal.active .blog-modal-content {
            transform: scale(1);
        }

        .blog-modal-header {
            padding: 20px 40px;
            background: #8a1a1a;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .blog-modal-header h2 {
            margin: 0;
            font-size: 1.5rem;
            color: #fff !important;
            text-align: left;
        }

        .blog-modal-header h2::after {
            display: none !important;
        }

        .close-modal {
            color: #fff;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .close-modal:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .blog-modal-body {
            padding: 40px;
            overflow-y: auto;
            line-height: 1.8;
            color: #444;
        }

        .blog-modal-body h1,
        .blog-modal-body h2,
        .blog-modal-body h3 {
            color: #8a1a1a;
            margin-top: 25px;
            margin-bottom: 15px;
            text-align: left;
        }

        .blog-modal-body h2::after {
            display: none !important;
        }

        .blog-modal-body p {
            margin-bottom: 20px;
            color: #444;
        }

        .blog-modal-body ul,
        .blog-modal-body ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .blog-modal-body li {
            margin-bottom: 10px;
        }

        /* Loading Spinner */
        .modal-loader {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 100px 40px;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(138, 26, 26, 0.1);
            border-top: 5px solid #8a1a1a;
            border-radius: 50%;
            animation: modal-spin 1s linear infinite;
            margin-bottom: 20px;
        }

        @keyframes modal-spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @media (max-width: 768px) {
            .blog-modal-content {
                width: 95%;
                max-height: 85vh;
            }

            .blog-modal-body {
                padding: 25px;
            }

            .blog-modal-header {
                padding: 15px 25px;
            }
        }

        /* --- Production Modal Fixes --- */
        .tracking-modal-overlay {
            display: none;
            position: fixed;
            z-index: 3000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .tracking-modal-overlay.active {
            display: flex !important;
            opacity: 1 !important;
        }

        .tracking-modal-content {
            background: #fff;
            width: 100%;
            max-width: 850px;
            max-height: 90vh;
            border-radius: 28px;
            position: relative;
            overflow-y: auto;
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
            animation: slideIn 0.35s ease;
            z-index: 3001;
        }

        .modal-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
            color: #fff;
            background: #8a1a1a;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.3s;
        }

        .method-modal {
            display: none;
            position: fixed;
            z-index: 5000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .method-modal-content {
            background: #fff;
            padding: 50px;
            border-radius: 30px;
            width: 100%;
            max-width: 500px;
            text-align: center;
            position: relative;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
            z-index: 5001;
        }

        .news-modal-overlay {
            display: none;
            position: fixed;
            z-index: 2500;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .news-modal-overlay.active {
            display: flex !important;
            opacity: 1 !important;
        }

        .news-modal-container {
            background: #fff;
            border-radius: 24px;
            width: 100%;
            max-width: 950px;
            max-height: 88vh;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            z-index: 2501;
        }

        .news-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 2601;
            background: #8a1a1a;
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        /* ====================================================
   GLOBAL MODAL OVERRIDES — Outside all media queries
   These take precedence and apply on all screen sizes
   ==================================================== */

        /* === NEWS / SERVICE DETAIL MODAL === */
        #newsModal,
        .news-modal-overlay {
            display: none;
            position: fixed !important;
            z-index: 9000 !important;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
            overflow-y: auto;
        }

        #newsModal.active,
        .news-modal-overlay.active {
            display: flex !important;
        }

        .news-modal-container {
            background: #fff;
            border-radius: 20px;
            width: 100%;
            max-width: 860px;
            max-height: 90vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            position: relative;
            animation: slideUpModal 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        }

        @keyframes slideUpModal {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.97);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .news-modal-sticky-header {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 24px;
            background: #8a1a1a;
            position: sticky;
            top: 0;
            z-index: 10;
            flex-shrink: 0;
        }

        .modal-source-badge {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .news-modal-meta-small {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.82rem;
            display: flex;
            gap: 6px;
            align-items: center;
            flex: 1;
        }

        .meta-sep {
            opacity: 0.5;
        }

        #newsModalCloseBtn,
        .news-modal-close {
            margin-left: auto;
            background: rgba(255, 255, 255, 0.15) !important;
            border: none !important;
            color: #ffffff !important;
            width: 38px !important;
            height: 38px !important;
            border-radius: 50% !important;
            font-size: 1.5rem !important;
            cursor: pointer;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            transition: all 0.2s ease !important;
            flex-shrink: 0;
            line-height: 1;
            box-shadow: none !important;
        }

        #newsModalCloseBtn:hover,
        .news-modal-close:hover {
            background: rgba(255, 255, 255, 0.35) !important;
            transform: rotate(90deg) scale(1.1) !important;
        }

        .news-modal-body {
            overflow-y: auto;
            padding: 30px 34px 40px;
        }

        .reader-hero-image {
            width: 100%;
            max-height: 320px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 24px;
            display: block;
        }

        .reader-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.35;
            margin: 0 0 20px;
        }

        .reader-content {
            font-size: 1rem;
            line-height: 1.75;
            color: #333;
        }

        .reader-content p {
            margin-bottom: 1.2em;
        }

        .reader-content ul {
            padding-left: 1.4em;
            margin-bottom: 1.2em;
        }

        .reader-content h4 {
            color: #8a1a1a;
            margin: 1.4em 0 0.6em;
            font-size: 1.05rem;
        }

        .service-highlight {
            background: #fdf3f3;
            border-left: 4px solid #8a1a1a;
            border-radius: 8px;
            padding: 16px 20px;
            margin-top: 20px;
        }

        .service-highlight h4 {
            color: #8a1a1a;
            margin: 0 0 10px;
            font-size: 1rem;
            font-weight: 600;
        }

        .service-highlight ul {
            margin: 0;
            padding-left: 18px;
            color: #444;
            line-height: 1.8;
        }

        /* === BLOG MODAL === */
        .blog-modal {
            display: none;
            position: fixed !important;
            z-index: 9100 !important;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
            overflow-y: auto;
        }

        .blog-modal.active {
            display: flex !important;
        }

        .blog-modal-content {
            background: #fff;
            border-radius: 20px;
            width: 100%;
            max-width: 900px;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            animation: slideUpModal 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .blog-modal-header {
            padding: 20px 28px;
            background: #8a1a1a;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 10;
            flex-shrink: 0;
        }

        .blog-modal-header h2 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 600;
            flex: 1;
            padding-right: 16px;
        }

        .close-modal {
            background: rgba(255, 255, 255, 0.15);
            border: none;
            color: #fff;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            font-size: 1.3rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            flex-shrink: 0;
            line-height: 1;
        }

        .close-modal:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .blog-modal-body {
            padding: 28px 34px 40px;
            overflow-y: auto;
            font-size: 1rem;
            line-height: 1.75;
            color: #333;
        }

        .modal-loader {
            text-align: center;
            padding: 60px 20px;
            color: #666;
        }

        .spinner {
            width: 44px;
            height: 44px;
            border: 4px solid #eee;
            border-top-color: #8a1a1a;
            border-radius: 50%;
            animation: spin 0.75s linear infinite;
            margin: 0 auto 16px;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ====================================================
   COMPREHENSIVE RESPONSIVENESS OVERRIDES
   Ensures premium display on all device types
   ==================================================== */

        /* --- Mobile Breakthrough (Up to 767px) --- */
        @media screen and (max-width: 767px) {

            /* Header & Navigation */
            header {
                padding: 5px 0 !important;
                height: auto !important;
            }

            .logo img {
                height: 45px !important;
            }

            /* Hero Section */
            .hero {
                padding: 120px 0 60px !important;
                min-height: auto !important;
                text-align: center;
            }

            .hero h1 {
                font-size: 24px !important;
                line-height: 1.2 !important;
                margin-bottom: 20px !important;
                padding: 0 15px;
            }

            .hero p {
                font-size: 1rem !important;
                padding: 0 20px;
            }

            .hero-buttons {
                display: flex !important;
                flex-direction: column !important;
                gap: 12px !important;
                padding: 0 30px !important;
                margin-top: 25px !important;
            }

            .hero-buttons .btn {
                width: 100% !important;
                margin: 0 !important;
                padding: 14px 20px !important;
                font-size: 0.95rem !important;
            }

            /* Section Headings */
            section h2 {
                font-size: 24px !important;
                line-height: 1.3 !important;
                margin-bottom: 20px !important;
                padding: 0 15px;
            }

            section h4 {
                font-size: 1.1rem !important;
                padding: 0 15px;
            }

            /* Stats Section */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 15px !important;
                padding: 0 10px !important;
            }

            .stat-item {
                padding: 15px 10px !important;
            }

            .stat-number {
                font-size: 1.5rem !important;
            }

            /* Grids (Services, News, Blog) */
            .services-grid,
            .news-grid,
            .tracking-updates-grid,
            .blog-grid {
                grid-template-columns: 1fr !important;
                gap: 25px !important;
            }

            /* Modals Layout & Typography */
            .news-modal-container,
            .blog-modal-content {
                width: 95% !important;
                max-height: 92vh !important;
            }

            .news-modal-body,
            .blog-modal-body {
                padding: 20px 18px !important;
            }

            .reader-title {
                font-size: 1.3rem !important;
            }

            /* Contact Section */
            .contact-grid {
                grid-template-columns: 1fr !important;
            }

            .contact-form {
                padding: 25px 20px !important;
            }

            /* Tracking Search Bar */
            .tracking-input {
                flex-direction: column !important;
                gap: 10px !important;
                padding: 0 15px !important;
            }

            .tracking-input input {
                width: 100% !important;
                border-radius: 8px !important;
            }

            .tracking-input button {
                width: 100% !important;
                border-radius: 8px !important;
            }

            /* Documents Checklist */
            .document-lists {
                flex-direction: column !important;
                gap: 30px !important;
            }
        }

        /* --- Tablet Breakthrough (768px to 1024px) --- */
        @media screen and (min-width: 768px) and (max-width: 1024px) {
            .hero h1 {
                font-size: 34px !important;
            }

            .services-grid,
            .news-grid,
            .blog-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        /* --- Small Mobile Fix (Under 360px) --- */
        @media screen and (max-width: 359px) {
            .hero h1 {
                font-size: 20px !important;
            }

            .news-modal-sticky-header {
                padding: 10px 15px !important;
            }
        }

        /* =========================================================================
   GOOGLE TRANSLATE NATIVE WIDGET OVERRIDES
   Permanently hide the standard Google top-banner and tooltips to keep the premium UI
========================================================================= */
        .goog-te-banner-frame.skiptranslate,
        .goog-te-gadget-icon {
            display: none !important;
        }

        body {
            top: 0px !important;
        }

        /* Hide Google's native tooltip on translated elements */
        .goog-tooltip,
        .goog-tooltip:hover {
            display: none !important;
        }

        .goog-text-highlight {
            background-color: transparent !important;
            border: none !important;
            box-shadow: none !important;
        }