<style>
        :root {
            --primary-red: #E82B23;
            --primary-blue: #2a46af;
            --gold: #d4af77;
        }
       
        * {
            scroll-behavior: smooth;
        }
       
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
       
        /* Navbar */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
       
        .navbar-brand img {
            height: 65px;
            transition: transform 0.3s ease;
        }
       
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
       
        .nav-link {
            font-weight: 600;
            color: #222 !important;
            transition: all 0.3s ease;
        }
       
        .nav-link:hover {
            color: var(--primary-red) !important;
            transform: translateY(-2px);
        }
       
        /* Dropdown Styling */
        .dropdown-menu {
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            padding: 8px 0;
        }
       
        .dropdown-item {
            padding: 10px 20px;
            font-weight: 500;
        }
       
        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: var(--primary-red);
        }
       
        /* Hero Parallax */
        .hero {
            height: 100vh;
            min-height: 650px;
            background-image: url('../images/2.cycle-operation.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            display: flex;
            align-items: center;
            color: white;
        }
       
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0, 48, 135, 0.75) 0%, rgba(200, 16, 46, 0.65) 100%);
            z-index: 1;
        }
       
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
        }
       
        .hero-logo {
            max-width: 420px;
            filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
            animation: float 4s ease-in-out infinite;
        }
       
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-25px); }
        }
       
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            letter-spacing: -2px;
        }
       
        .hero .tagline {
            font-size: 1.4rem;
            font-weight: 500;
            text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        }
       
        .section-header {
            position: relative;
            display: inline-block;
        }
       
        .section-header::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background: linear-gradient(to right, var(--primary-red), var(--gold));
            bottom: -8px;
            left: 20%;
        }
       
        .process-img {
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
       
        .process-img:hover {
            transform: scale(1.03);
        }
       
        .service-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }
       
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px -15px rgb(200 16 46 / 0.3);
        }
       
        .form-control {
            border-radius: 12px;
            padding: 14px 20px;
        }
       
        .form-control:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.15);
        }
       
        footer {
            background: linear-gradient(135deg, #003087, #c8102e);
        }
       
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero-logo {
                max-width: 280px;
            }
        }
       
        html {
            scroll-behavior: smooth;
        }
    </style>