        :root {
            --primary-color: #d32f2f;
            --primary-hover: #b71c1c;
            --secondary-color: var(--primary-color);
            --secondary-hover: var(--primary-hover);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
        }

        /* Hero Slider Styles */
        .hero-slider {
            width: 100%;
            height: 55vh;
            /* Takes up 55% of viewport height */
            min-height: 400px;
            background-color: #333;
        }

        .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Dark overlay to make text readable */
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2);
            /* Much lighter, subtle overlay */
            z-index: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            text-align: left;
            color: #ffffff;
            padding: 0 10%;
            /* Space from left edge */
            max-width: 900px;
            width: 100%;

            /* Stylish Entry Animation */
            opacity: 0;
            transform: translateX(-100px);
            transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .swiper-slide-active .slide-content {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.3s;
        }

        .slide-subtitle {
            font-size: 14px;
            font-weight: 800;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: inline-block;
            background: #ffffff;
            padding: 10px 40px 10px 20px;
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
        }

        .slide-title {
            font-size: 56px;
            font-weight: 800;
            margin: 0 0 15px 0;
            text-transform: uppercase;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
            letter-spacing: 2px;
            line-height: 1.1;
        }

        .slide-desc {
            font-size: 18px;
            font-weight: 400;
            color: #f0f0f0;
            margin: 0 0 35px 0;
            max-width: 700px;
            line-height: 1.8;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
            letter-spacing: 0.5px;
        }

        .slide-btn {
            display: inline-block;
            background-color: var(--primary-color);
            /* cyan */
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            border-radius: 0;
            /* Remove pill shape */
            box-shadow: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .slide-btn:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        /* Welcome Section Styles */
        .about-section {
            background-color: #ffffff;
            padding: 40px 5%;
            position: relative;
            overflow: hidden;
        }

        .about-section-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* SVG Background Pattern */
        .about-bg-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            object-fit: cover;
        }

        .about-content {
            flex: 1.6;
            position: relative;
            z-index: 2;
        }

        .about-image-wrapper {
            flex: 1;
            position: relative;
            z-index: 2;
            border-radius: 12px;
            overflow: visible;
        }

        .about-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            transition: transform 0.6s ease;
        }

        .about-image-wrapper:hover img {
            transform: scale(1.02);
        }

        .experience-badge {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: white;
            padding: 20px 25px;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 3;
            border-left: 5px solid var(--primary-color);
        }

        .exp-years {
            font-size: 38px;
            font-weight: 900;
            color: var(--primary-color);
            line-height: 1;
        }

        .exp-text {
            font-size: 14px;
            font-weight: 700;
            color: #333;
            text-transform: uppercase;
            line-height: 1.3;
        }

        .about-subtitle {
            color: var(--primary-color);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            padding: 8px 20px;
            background: rgba(211, 47, 47, 0.08);
            border-radius: 50px;
            border: 1px solid rgba(211, 47, 47, 0.15);
        }

        .about-title {
            font-size: 42px;
            font-weight: 800;
            color: #222;
            margin: 0 0 25px 0;
            line-height: 1.2;
        }

        .about-title span {
            color: var(--primary-color);
        }

        .about-text {
            color: #555;
            line-height: 1.8;
            font-size: 16px;
            margin-bottom: 30px;
            position: relative;
            padding-left: 20px;
            border-left: 3px solid var(--primary-color);
            background: linear-gradient(90deg, rgba(211, 47, 47, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
            padding-top: 15px;
            padding-bottom: 15px;
            border-radius: 0 8px 8px 0;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 15px;
            color: #222;
            font-weight: 800;
            padding: 30px 15px;
            background: #fff;
            border-radius: 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #eee;
            border-bottom: 4px solid var(--primary-color);
            font-size: 15px;
            text-transform: uppercase;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-item i {
            color: var(--primary-color);
            background: transparent;
            font-size: 35px;
            width: auto;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
            box-shadow: none;
            transition: all 0.3s ease;
        }

        .feature-item:hover i {
            transform: scale(1.1) translateY(-5px);
        }

        @media (max-width: 900px) {
            .about-section-inner {
                flex-direction: column;
                padding: 0px 0px;
            }

            .about-title {
                font-size: 32px;
            }

            .about-features {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .experience-badge {
                bottom: -20px;
                left: 10px;
                padding: 15px;
            }
        }

        /* Services Section */
        .services-section {
            background-color: #ffffff;
            padding: 80px 5%;
            position: relative;
            overflow: hidden;
        }

        .logistics-section-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            object-fit: cover;
        }

        .services-content {
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-subtitle {
            color: var(--primary-color);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(211, 47, 47, 0.08);
            border-radius: 50px;
            border: 1px solid rgba(211, 47, 47, 0.15);
        }

        .section-title {
            font-size: 38px;
            font-weight: 900;
            color: #222;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: -0.5px;
        }

        .section-title span {
            color: var(--primary-color);
            position: relative;
        }

        .section-title span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .services-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: #fff;
            border: 1px solid #e5e5e5;
            border-radius: 0;
            overflow: hidden;
        }

        .service-card-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 0;
            display: block;
        }

        .service-card-content {
            padding: 25px 20px;
        }

        .service-card-content h3 {
            font-size: 18px;
            font-weight: 800;
            color: #333;
            margin: 0 0 15px 0;
            text-transform: uppercase;
        }

        .service-card-content p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .read-more-link {
            font-size: 13px;
            font-weight: 700;
            color: #444;
            text-decoration: none;
            letter-spacing: 1px;
            display: inline-block;
        }

        .read-more-link:hover {
            color: var(--primary-color);
        }

        /* Features Split Section (No Border Radius) */
        .features-split-section {
            max-width: 1300px;
            margin: 80px auto;
            padding: 0 5%;
            display: flex;
            gap: 50px;
            align-items: flex-start;
        }

        .features-left {
            flex: 1;
        }

        .features-left h4 {
            font-size: 13px;
            color: #777;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .features-left h2 {
            font-size: 34px;
            font-weight: 800;
            color: #222;
            line-height: 1.25;
            margin: 0 0 20px 0;
            text-transform: uppercase;
        }

        .features-left-divider {
            width: 50px;
            height: 2px;
            background-color: #4dd0e1;
            margin-bottom: 25px;
        }

        .features-left p {
            font-size: 15px;
            color: #555;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .cyan-btn {
            background-color: #4dd0e1;
            color: #fff;
            padding: 14px 30px;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            border-radius: 0;
            display: inline-block;
            transition: background 0.3s;
            letter-spacing: 1px;
        }

        .cyan-btn:hover {
            background-color: #26c6da;
        }

        .features-right {
            flex: 1.3;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .feature-box {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 0;
            padding: 25px 20px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
        }

        .feature-box i {
            font-size: 32px;
            color: #444;
            margin-top: 5px;
        }

        .feature-box-content h3 {
            font-size: 15px;
            font-weight: 800;
            color: #333;
            margin: 0 0 10px 0;
            text-transform: uppercase;
        }

        .feature-box-content p {
            font-size: 13px;
            color: #666;
            margin: 0;
            line-height: 1.6;
        }

        @media (max-width: 1000px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

        /* Swiper custom colors */
        .swiper-button-next,
        .swiper-button-prev {
            color: #ffffff !important;
            background-color: rgba(51, 51, 51, 0.8);
            width: 44px !important;
            height: 44px !important;
            border-radius: 50%;
            opacity: 0.9;
            transition: background-color 0.3s;
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 16px !important;
            font-weight: bold;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background-color: var(--primary-color);
        }

        .swiper-pagination-bullet {
            background: #ffffff !important;
            opacity: 0.5;
        }

        .swiper-pagination-bullet-active {
            background: var(--primary-color) !important;
            opacity: 1;
        }

        /* Stats Section */
        .stats-section {
            background-color: rgba(211, 47, 47, 0.04);
            border-top: 1px solid rgba(211, 47, 47, 0.1);
            border-bottom: 1px solid rgba(211, 47, 47, 0.1);
            padding: 40px 5%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            text-align: center;
        }

        .stat-item {
            padding: 10px 20px;
            position: relative;
            transition: all 0.3s ease;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 10%;
            right: 0;
            height: 80%;
            width: 1px;
            background-color: rgba(211, 47, 47, 0.2);
        }

        .stat-item:hover {
            transform: translateY(-3px);
        }

        .stat-item i {
            font-size: 32px;
            margin-bottom: 15px;
            color: var(--primary-color);
            display: inline-block;
        }

        .stat-item h3 {
            font-size: 32px;
            font-weight: 800;
            margin: 0 0 5px 0;
            color: #222;
        }

        .stat-item p {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin: 0;
            color: #666;
        }

        /* Contact Section */
        .contact-section-wrapper {
            background-color: #ffffff;
            padding: 80px 5%;
            position: relative;
            overflow: hidden;
        }

        .contact-section-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            object-fit: cover;
        }

        .contact-section {
            position: relative;
            z-index: 1;
            display: flex;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            align-items: stretch;
        }

        .contact-left {
            flex: 1.2;
            min-width: 300px;
        }

        .contact-right {
            flex: 0.8;
            min-width: 300px;
        }

        /* Form Styling */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-row input {
            flex: 1;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #e1e1e1;
            background: #fff;
            border-radius: 0;
            font-family: inherit;
            font-size: 15px;
            box-sizing: border-box;
            transition: all 0.3s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            background: #fff;
        }

        /* Contact Info Card */
        .contact-card {
            background: #fff;
            padding: 30px;
            border-radius: 0;
            height: 100%;
            box-sizing: border-box;
            border: 1px solid #e1e1e1;
            border-top: 5px solid var(--primary-color);
        }

        .contact-card h3 {
            margin-top: 0;
            font-size: 24px;
            color: #222;
            margin-bottom: 35px;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-card h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-info-item i.fa-solid {
            font-size: 20px;
            color: #fff;
            background: var(--primary-color);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
            flex-shrink: 0;
        }

        .contact-info-item h4 {
            margin: 0 0 8px 0;
            font-size: 18px;
            color: #222;
        }

        .contact-info-item p {
            margin: 0 0 5px 0;
            color: #666;
            font-size: 15px;
            line-height: 1.6;
        }

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

        .contact-info-item a:hover {
            color: var(--primary-color);
        }

        .whatsapp-icon {
            color: #25D366;
            font-size: 18px;
            margin-left: 5px;
            vertical-align: middle;
        }

        /* Mobile adjustments */
        @media (max-width: 900px) {
            .contact-section {
                flex-direction: column;
            }
            .contact-left, .contact-right {
                flex: none;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
            .stats-section {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px 10px;
                padding: 30px 5%;
            }

            .stat-item:not(:last-child)::after {
                display: none; /* Remove vertical separator on mobile */
            }

            .stat-item h3 {
                font-size: 24px;
                margin-bottom: 5px;
            }

            .stat-item p {
                font-size: 11px;
                letter-spacing: 1px;
            }

            .stat-item i {
                font-size: 26px;
                margin-bottom: 10px;
            }

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

            .hero-slider {
                height: 60vh;
            }
        }

        /* Footer */
        .footer-section {
            background-color: #111111;
            color: #ccc;
            position: relative;
            margin-top: 50px;
            overflow: hidden;
            background-image: url('images/footer-bg-pattern.svg');
            background-size: 100px;
        }

        .footer-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            z-index: 2;
            object-fit: cover;
            transform: translateY(-1px);
            /* Prevent pixel gap */
        }

        .footer-accent {
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 400px;
            opacity: 0.1;
            z-index: 1;
            pointer-events: none;
        }

        .footer-content {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 5% 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
            gap: 40px;
        }

        .footer-col h3.footer-logo {
            font-size: 28px;
            color: #fff;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .footer-col h3.footer-logo span {
            color: var(--primary-color);
        }

        .footer-col h4 {
            font-size: 20px;
            color: #fff;
            margin-bottom: 25px;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-color);
        }

        .footer-col p {
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 15px;
        }

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

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.05);
            color: #fff;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

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

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

        .footer-col ul li {
            margin-bottom: 15px;
        }

        .footer-col ul li a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
        }

        .footer-col ul li a i {
            font-size: 12px;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .footer-col ul li a:hover i {
            transform: translateX(3px);
        }

        .newsletter-form {
            display: flex;
            margin-bottom: 25px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            border-radius: 4px 0 0 4px;
            outline: none;
        }

        .newsletter-form button {
            background: var(--primary-color);
            color: #fff;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--primary-hover);
        }

        .footer-contact-info p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 15px;
        }

        .footer-contact-info p i {
            color: var(--primary-color);
        }

        .footer-bottom {
            background-color: #0a0a0a;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            z-index: 3;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 14px;
            color: #888;
        }

        .footer-bottom-links a {
            color: #888;
            text-decoration: none;
            margin-left: 20px;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--primary-color);
        }

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

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

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .footer-bottom-links a {
                margin: 0 10px;
            }
        }

        /* Sticky Buttons */
        .sticky-buttons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }

        .sticky-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: 24px;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .sticky-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        }

        .call-btn {
            background-color: #007bff;
            /* Blue */
        }

        .whatsapp-btn {
            background-color: #25d366;
            /* WhatsApp Green */
        }


        @media (max-width: 768px) {
            .slide-title {
                font-size: 26px !important;
                margin-bottom: 10px !important;
                line-height: 1.2 !important;
            }

            .slide-subtitle {
                font-size: 12px !important;
                padding: 8px 30px 8px 15px !important;
                margin-bottom: 10px !important;
            }

            .slide-desc {
                font-size: 14px !important;
                margin-bottom: 20px !important;
                line-height: 1.4 !important;
            }

            .slide-content {
                padding: 0 5% !important;
            }

            .hero-slider {
                height: 55vh !important;
                min-height: 400px;
            }

            .swiper-button-next,
            .swiper-button-prev {
                display: none !important;
                /* Hide arrows on mobile to prevent overlapping */
            }

            .slide-btn {
                padding: 12px 25px !important;
                font-size: 14px !important;
            }

            .about-features {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .about-features .feature-item {
                background-color: #fbecec; /* Light red */
                padding: 15px 10px;
                border-radius: 8px;
            }

            .about-features .feature-item:last-child {
                grid-column: span 2;
                max-width: 100%;
                width: 100%;
                margin: 0 auto;
            }
        }