
        /* --- CSS VARIABLES & THEME --- */
        :root {
            --primary-blue: #023e8a;   /* Deep Ocean Blue */
            --light-blue: #e0f3ff;     /* Light Background Blue */
            --accent-yellow: #ffb703;  /* Brand Yellow */
            --white: #ffffff;
            --text-dark: #333333;
            --text-light: #555555;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* --- ANIMATIONS --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- NAVIGATION --- */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            width: 90%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 1rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--accent-yellow);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--primary-blue);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--accent-yellow);
        }

        /* --- HERO SECTION --- */
        #home {
            min-height: 100vh;
            /* Blue gradient overlay */
            background: linear-gradient(rgba(2, 62, 138, 0.9), rgba(2, 62, 138, 0.8)), url('https://images.unsplash.com/photo-1522069169874-c58ec4b76be5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            padding: 140px 20px 80px 20px;
            position: relative;
        }

        .hero-content {
            max-width: 1000px;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 2;
        }

        /* New Main Logo Style */
        .hero-main-logo {
            width: 350px;       /* Big size */
            max-width: 80%;     /* Responsive */
            margin-bottom: 40px; /* Space below logo */
            filter: drop-shadow(0 0 10px rgba(0,0,0,0.2)); /* Slight shadow to pop */
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            line-height: 1.2;
            color: var(--accent-yellow);
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-weight: 300;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent-yellow);
            color: var(--primary-blue);
            padding: 12px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            margin-top: 1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 183, 3, 0.4);
        }

        /* --- SECTIONS GENERAL --- */
        section {
            padding: 6rem 0;
            width: 90%;
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .section-title .line {
            width: 80px;
            height: 4px;
            background-color: var(--accent-yellow);
            margin: 0 auto;
        }

        /* --- ABOUT SECTION --- */
        .about-text-block { margin-bottom: 3rem; text-align: justify; }
        .about-text-block p { margin-bottom: 1rem; line-height: 1.8; font-size: 1.05rem; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 2rem; }
        
        .info-card {
            background: var(--light-blue);
            padding: 2.5rem;
            border-radius: 12px;
            border-left: 5px solid var(--primary-blue);
        }
        .info-card h3 { color: var(--primary-blue); margin-bottom: 1rem; font-size: 1.5rem; }
        .info-card ul { list-style: none; }
        .info-card ul li { margin-bottom: 1rem; position: relative; padding-left: 1.5rem; }
        .info-card ul li::before { content: "•"; color: var(--accent-yellow); font-weight: bold; font-size: 1.5rem; position: absolute; left: 0; top: -5px; }

        .full-width-box { background-color: #f9f9f9; padding: 3rem; border-radius: 12px; margin-top: 3rem; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
        .full-width-box h3 { color: var(--primary-blue); margin-bottom: 1.5rem; text-align: center; font-size: 1.8rem; }
        .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
        .why-item h4 { color: var(--primary-blue); margin-bottom: 0.5rem; display: flex; align-items: center; }
        .why-item h4 i { color: var(--accent-yellow); margin-right: 10px; }

        /* --- BRANDS SECTION --- */
        #brands { background-color: var(--white); border-top: 1px solid #eee; }

        .brand-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .brand-box {
            height: 120px;
            border: 1px solid #eee;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            background: #fff;
            padding: 10px;
        }

        .brand-box:hover {
            border-color: var(--accent-yellow);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }

        .brand-box img { max-width: 100%; max-height: 100%; object-fit: contain; }
        .brand-placeholder { color: #ccc; font-size: 0.8rem; text-align: center; }
        
        .many-more {
            text-align: center;
            margin-top: 2rem;
            font-size: 1.5rem;
            color: var(--primary-blue);
            font-weight: bold;
            font-style: italic;
        }

        /* --- CONTACT SECTION --- */
        #contact { background-color: var(--light-blue); }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .contact-info-box, .contact-form-box {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        /* Contact Info Styling */
        .contact-info-box h3, .contact-form-box h3 { margin-bottom: 1.5rem; color: var(--primary-blue); border-bottom: 3px solid var(--accent-yellow); display: inline-block; padding-bottom: 5px;}
        
        .info-item { display: flex; align-items: flex-start; margin-bottom: 1.5rem; }
        .info-item i { color: var(--accent-yellow); font-size: 1.2rem; margin-right: 15px; margin-top: 5px; }
        .info-item p { color: #555; }
        .info-item a { color: var(--primary-blue); text-decoration: none; font-weight: 600; }

        /* Form Styling */
        form { display: flex; flex-direction: column; }
        
        .form-group { margin-bottom: 1.5rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; color: var(--primary-blue); font-weight: 600; }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 2px solid #eee;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-control:focus { outline: none; border-color: var(--accent-yellow); }
        textarea.form-control { resize: vertical; min-height: 120px; }

        .submit-btn {
            background-color: var(--accent-yellow);
            color: var(--primary-blue);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            align-self: flex-start;
            transition: all 0.3s;
        }

        .submit-btn:hover { background-color: #e6a600; transform: translateY(-2px); }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: 0;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* --- FOOTER --- */
        footer { background-color: #012a5e; color: var(--white); text-align: center; padding: 2rem; }
        .social-links { margin-top: 1rem; }
        .social-links a { color: var(--white); font-size: 1.5rem; margin: 0 10px; transition: color 0.3s; }
        .social-links a:hover { color: var(--accent-yellow); }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            .nav-container { flex-direction: column; }
            nav ul { margin-top: 1rem; flex-wrap: wrap; justify-content: center; }
            nav ul li { margin: 0 10px; }
            .grid-2, .contact-layout { grid-template-columns: 1fr; }
            .hero-content h1 { font-size: 2rem; }
            .hero-main-logo { width: 250px; } /* Adjust logo size for mobile */
        }
 