    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #003d7a;
            --accent-color: #0066cc;
            --text-black: #000;
            --text-dark: #333;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --border-color: #e0e0e0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        /* Header */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background-color: transparent;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            transition: background-color 0.3s ease;
            max-width: 100%;
        }

        header.scrolled {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .logo span {
            display: none;
        }

        .enquire-btn {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0.7rem 1.3rem;
            border-radius: 25px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: background-color 0.3s ease;
            white-space: nowrap;
        }

        .enquire-btn:hover {
            background-color: var(--accent-color);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bannerBg.gif');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 4rem 5%;
            text-align: left;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-content {
            max-width: 600px;
            margin: 0 auto 0 0;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            letter-spacing: 1px;           
            opacity: 0.9; font-weight: 300;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: .5rem;
            line-height: 1;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            opacity: 0.95; font-weight: 300;
        }

        /* Features Bar */
        .features-bar {
            background-color: var(--primary-color);
            padding: 3rem 2rem;
            margin: -6rem auto 0;
            position: relative;
            z-index: 10;
            width: 90%;
            border-radius: 10px;
        }

        .features-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            color: var(--white);
            text-align: center;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
           /* gap: 1rem; */
        }

        .feature-item img {
            height: 50px;
            width: 50px;
            object-fit: contain;
            filter: brightness(0) invert(1);
            margin-bottom: 15px;
        }

        .feature-item h3 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.3;
            margin-bottom:5px;
        }
           .feature-item p {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1;
        }

        /* Fleet Section */
        .fleet-section {
            padding: 4rem 2rem;
            background-color: var(--bg-light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header .label {
            color: var(--text-light);
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1rem;
        }

        .fleet-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .fleet-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: visible;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .fleet-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .fleet-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 10px 10px 0 0;
        }

        .fleet-card-content {
            padding: 2rem;
            padding-top: 0;
            text-align: center;
        }

        .fleet-card-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--primary-color);
            margin: -35px auto 1rem;
            position: relative;
            z-index: 10;
            font-weight: bold;
        }

        .fleet-card-badge img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            margin: 0;
        }

        .fleet-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            text-align: center;
        }

        .fleet-features {
            display: flex;
            flex-wrap: nowrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
            color: var(--text-light);
            justify-content: space-around;
         /*   align-items: center; */
         ;
        }

        .fleet-features li {
            list-style: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            flex: 1 1 auto;
            min-width: 0;
            width: 25%;
            text-align: center;
            font-size: 11px;
            line-height: 15px;
        }

        .fleet-features li img {
            width: 30px;
            height: 30px;
            object-fit: contain;
            margin: 0 !important;
        }

        .fleet-features li:before {
            content: "";
            display: none;
        }

        .fleet-card .enquire-btn {
            width: auto;
            border-radius: 25px;
        }

        /* Confidence Section */
        .confidence-section {
            padding: 4rem 2rem;
            background-color: var(--white);
        }

        .confidence-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .confidence-content h2 {
            font-size: 1.8rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .confidence-content p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .learn-more-btn {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: background-color 0.3s ease;
            white-space: nowrap;
        }

        .learn-more-btn:hover {
            background-color: var(--accent-color);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .stat-box {
            margin-bottom: 2rem;
        }

        .stat-icon {
            line-height:0px;
        } 

        .stat-icon img {
            height: 50px;
            width: 50px;
            object-fit: contain;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 900;
            color: var(--text-black);
                   }

        .stat-label {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.4;
            font-weight: 500;
        }

        /* Services Navigation */
        .services-nav {
            background-color:var(--text-black);
            padding: 1.5rem 2rem;
            text-align: center;
        }

        .services-nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-nav a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .services-nav a:hover {
            color: var(--accent-color);
        }

        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 3rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .footer-tagline {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .contact-section {
            text-align: center;
            margin-bottom: 2rem;
        }

        .contact-section h3 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 1.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-form input {
            padding: 0.75rem;
            border: none;
            border-radius: 5px;
            font-size: 0.95rem;
        }

        .contact-form input::placeholder {
            color: #999;
        }

        .submit-btn {
            background-color: var(--white);
            color: var(--primary-color);
            border: 1px solid var(--white);
            padding: 0.7rem 4rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
            grid-column: 1 / -1;
            width: fit-content;
            margin: 0 auto;
        }

        .submit-btn:hover {
            background-color: var(--primary-color);
            color: var(--white);
            border: 1px solid var(--white);
        }

        .contact-info {
            margin-top: 2rem;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .contact-info p {
            margin: 0.5rem 0;
        }

        .social-icons {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-icons a {
            display: inline-block;
            margin: 0 1rem;
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .social-icons img {
            height: 30px;
            width: 30px;
            filter: brightness(0) invert(1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                flex-direction: row;
                gap: 0;
                padding: 1rem 3%;
                justify-content: space-between;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero {
                padding: 3rem 3%;
                min-height: 350px;
            }

            .features-bar {
                margin-top: -2rem;
                width: 95%;
            }

            .features-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }

            .confidence-container {
                grid-template-columns: 1fr;
            }

            .fleet-container {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .fleet-features {
                gap: 0.5rem;
                flex-wrap: wrap;
            }

            .services-nav ul {
                flex-direction: column;
                gap: 1rem;
            }

            .contact-form {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 0.75rem 1.5%;
                flex-direction: row;
                gap: 0;
                justify-content: space-between;
            }

            .logo img {
                height: 35px;
            }

            .enquire-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }

            .hero h1 {
                font-size: 1.5rem;
            }

            .hero {
                padding: 3rem 1.5%;
                min-height: 350px;
                padding-top: 6rem;
            }

            .hero-subtitle {
                font-size: 0.8rem;
            }

             .features-bar {
                width: 100%;
                margin-top: -1.5rem;                     
                padding: 2rem 1rem;
                 border-radius: 0px;
            }

            .features-container {
                grid-template-columns: repeat(2, 1fr);
                gap:2rem 0.5rem;
            }

            .feature-item h3 {
                font-size: 0.7rem;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .footer-logo {
                font-size: 1.5rem;
            }

            .fleet-features {
                gap: 0.3rem;
                flex-wrap: wrap;
            }

            .fleet-features li {
                font-size: 0.75rem;
            }
        }