 :root {
            --primary-bg: #004447;
            --accent-orange: #ff9432;
            --text-white: #ffffff;
            --icon-teal: #4db6ac;
            --icon-cream: #ffecd2;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            min-height: 100vh;
            color: var(--text-white);
            position: relative;
            overflow-x: hidden;
        }

        /* Background decorative elements */
        body::before,
        body::after {
            content: '';
            position: absolute;
            border: 2px solid rgba(255,255,255,0.05);
            border-radius: 50%;
            pointer-events: none;
        }

        body::before {
            width: 300px;
            height: 300px;
            top: 10%;
            left: -100px;
        }

        body::after {
            width: 400px;
            height: 400px;
            bottom: 5%;
            right: -150px;
        }

        /* Navbar */
        .navbar {
            padding: 1.5rem 0;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--icon-teal) !important;
        }

    

        .nav-link {
            color: var(--text-white) !important;
            font-weight: 500;
            margin-left: 2rem;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--accent-orange) !important;
        }

        /* Hero Section */
        .hero-section {
            padding: 0rem 0 5rem;
            text-align: center;
        }

        .truck-icon {
            width: 150px;
            height: 150px;
            margin-bottom: 2rem;
        }

        .coming-soon {
            color: var(--accent-orange);
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .main-heading {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #fde6bb;
        }

        .description {
            font-size: 1.5rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 0.9;
            line-height: 1.7;
        }

        /* Buttons */
        .btn-orange {
            background-color: var(--accent-orange);
            color: #1a1a1a;
            font-weight: 600;
            padding: 0.875rem 2rem;
            border-radius: 8px;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-orange:hover {
            background-color: #e6951f;
            color: #1a1a1a;
            transform: translateY(-2px);
        }

        .btn-outline-light-custom {
            border: 2px solid var(--text-white);
            color: var(--text-white);
            font-weight: 600;
            padding: 0.875rem 2rem;
            border-radius: 8px;
            background: transparent;
            transition: all 0.3s ease;
        }

        .btn-outline-light-custom:hover {
            background-color: var(--text-white);
            color: var(--primary-bg);
        }

        .buttons-wrapper {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .footer-text {
            font-size: 1.5rem;
            opacity: 0.85;
        }


        .container, .container-md, .container-sm{ max-width: 1440px;}
        /* Responsive */
        @media (max-width: 991px) {
            .nav-link {
                margin-left: 0;
                padding: 0.75rem 0;
            }

            .navbar-collapse {
                background-color: rgba(13, 61, 61, 0.98);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }

            .logo{ width: 200px;}
            .logo-icon img { width: 200px;}
        
        body::before, body::after{ display: none;}
        .footer-text {
	font-size: 1.1rem;
	opacity: 0.85;
}

.logo {
	width: 200px;
	margin-top: 20px;
}
.top-menu {
	padding: 0;
}
.top-menu .navbar-collapse {
	margin-top: 0;
}
.logo-icon img {
	width: 200px;
	margin-top: 20px;
}
        }

        @media (max-width: 768px) {
            .coming-soon {
                font-size: 2rem;
            }

            .main-heading {
                font-size: 2rem;
            }

            .description {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .truck-icon {
                width: 120px;
                height: 120px;
            }
        }

        @media (max-width: 576px) {
            .coming-soon {
                font-size: 1.75rem;
            }

            .main-heading {
                font-size: 1.5rem;
            }

            .buttons-wrapper {
                flex-direction: column;
                padding: 0 2rem;
            }

            .btn-orange,
            .btn-outline-light-custom {
                width: 100%;
            }
        }

        /* Navbar toggler custom */
        .navbar-toggler {
            border-color: rgba(255,255,255,0.5);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
		
		.video-blk{  max-width:700px; width:100%; margin:50px auto; border:2px solid #fff ;border-radius:8px}
		.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px; /* optional */
}

.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}