        /* Global Styles */
        :root {
            --primary-color: #18185B;
            --secondary-color: #1a1c1e;
            --text-dark: #333;
            --text-light: #666;
            --border-color: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 700;
        }

        /* Header Top */
        .header-top {
            background-color: var(--primary-color);
            color: #fff;
            padding: 10px 0;
            font-size: 14px;
        }

        .header-top a {
            color: #fff;
            margin-left: 15px;
            transition: opacity 0.3s;
        }

        .header-top a:hover {
            opacity: 0.8;
        }

        /* Navigation */
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand img {
            height: 50px;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            padding: 10px 20px;
            text-transform: uppercase;
            font-size: 14px;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
        }

        /* Dropdown Menu */
        /*
        .dropdown-menu {
            background-color: var(--secondary-color);
            border: none;
            border-radius: 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            margin-top: 0;
        }

        .dropdown-item {
            color: #fff;
            padding: 12px 20px;
            transition: all 0.3s;
        }

        .dropdown-item:hover {
            background-color: var(--primary-color);
            color: #fff;
            padding-left: 25px;
        }
            */

        /* Banner Carousel */
        .hero-carousel {
            position: relative;
            height: 600px;
        }

        .carousel-item {
            height: 600px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
        }

        .carousel-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 100%;
            max-width: 800px;
        }

        .carousel-caption p {
            font-size: 18px;
            margin-bottom: 10px;
            color: #ffd700;
            font-weight: 500;
        }

        .carousel-caption h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .carousel-caption .lead {
            font-size: 18px;
            margin-bottom: 30px;
            color: #fff;
        }

        .btn {
            background-color: var(--primary-color);
            color: #fff;
            padding: 12px 35px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            font-weight: 500;
            transition: all 0.3s;
            border: 2px solid var(--primary-color);
        }

        .btn:hover {
            background-color: transparent;
            color: #fff;
            border-color: #fff;
        }

        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: rgba(24, 24, 91, 0.5);
            top: 50%;
            transform: translateY(-50%);
            border-radius: 50%;
            opacity: 0.8;
        }

        .carousel-control-prev {
            left: 30px;
        }

        .carousel-control-next {
            right: 30px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background-color: var(--primary-color);
            opacity: 1;
        }

        .carousel-indicators {
            bottom: 30px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #fff;
            opacity: 0.5;
            border: 2px solid #fff;
        }

        .carousel-indicators button.active {
            opacity: 1;
            background-color: var(--primary-color);
        }

        /* Utility Classes */
        .py-80 {
            padding: 80px 0;
        }

        /* Section Heading */
        .section-heading {
            margin-bottom: 50px;
        }

        .section-heading .subtitle {
            color: var(--primary-color);
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .section-heading h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .heading-divider {
            display: flex;
            gap: 8px;
        }

        .heading-divider span {
            height: 3px;
            display: block;
        }

        .heading-line1 {
            width: 60px;
            background-color: var(--primary-color);
        }

        .heading-line2 {
            width: 30px;
            background-color: var(--primary-color);
            opacity: 0.5;
        }

        /* Product Card */
        .product-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-card img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Button */
        .btn-primary-custom {
            background-color: var(--primary-color);
            color: #fff;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            font-weight: 500;
            transition: all 0.3s;
            border: 2px solid var(--primary-color);
        }

        .btn-primary-custom:hover {
            background-color: transparent;
            color: var(--primary-color);
        }

        /* About Section */
        .about-section {
            background-color: #f9f9f9;
        }

        .about-content h2 {
            font-size: 42px;
            margin-bottom: 30px;
        }

        .about-content p {
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 16px;
            line-height: 1.8;
        }

        /* Compact Feature Boxes */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 30px;
        }

        .feature-box-compact {
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border-left: 4px solid var(--primary-color);
        }

        .feature-box-compact:hover {
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
            transform: translateY(-5px);
        }

        .feature-box-compact i {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: block;
        }

        .feature-box-compact h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .feature-box-compact p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .feature-box-compact a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
        }

        .feature-box-compact a:hover {
            text-decoration: underline;
        }

        /* Info Cards - Vision, Mission, Careers, CEO */
        .info-card {
            position: relative;
            min-height: 400px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(24, 24, 91, 0.85);
        }

        .info-card-content {
            position: relative;
            z-index: 1;
            color: #fff;
            text-align: center;
            padding: 40px;
            max-width: 600px;
        }

        .info-card-content i {
            font-size: 60px;
            color: #ffd700;
            margin-bottom: 20px;
        }

        .info-card-content h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #fff;
        }

        .info-card-content p {
            font-size: 16px;
            line-height: 1.8;
        }

        /* CEO Message Card - Gradient Background */
        .ceo-message-card {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px;
        }

        .ceo-message-content {
            color: #fff;
            max-width: 700px;
        }

        .ceo-message-content h3 {
            font-size: 36px;
            margin-bottom: 25px;
            color: #ffd700;
        }

        .ceo-message-content p {
            font-size: 17px;
            line-height: 1.9;
        }

        /* Stats Section */
        .stats-section {
            background-color: var(--primary-color);
            color: #fff;
            padding: 60px 0;
        }

        .stat-box {
            text-align: center;
        }

        .stat-box i {
            font-size: 50px;
            margin-bottom: 20px;
            color: #ffd700;
        }

        .stat-box .number {
            display: block;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-box div {
            font-size: 18px;
            font-weight: 500;
        }

        /* Contact Form */
        .contact-form {
            background: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 3px 20px rgba(0,0,0,0.1);
        }

        .contact-form h3 {
            font-size: 32px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .contact-form p {
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .contact-form .form-control {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .contact-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(24, 24, 91, 0.15);
        }

        .contact-form textarea.form-control {
            min-height: 120px;
        }

        /* FAQ Section */
        .faq-section h3 {
            font-size: 32px;
            margin-bottom: 30px;
            color: var(--primary-color);
        }

        .accordion-button {
            background-color: #f8f9fa;
            color: var(--text-dark);
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: #fff;
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 0.2rem rgba(24, 24, 91, 0.15);
        }

        /* Footer */
        .footer {
            background-color: #1a1c1e;
            color: #fff;
            padding: 60px 0 30px;
        }

        .footer h5 {
            font-size: 20px;
            margin-bottom: 25px;
            color: #ffd700;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer ul li a:hover {
            color: #ffd700;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 30px;
            text-align: center;
            color: #999;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .feature-grid {
                grid-template-columns: 1fr;
            }

            .carousel-caption h1 {
                font-size: 36px;
            }

            .hero-carousel,
            .carousel-item {
                height: 450px;
            }
        }

        @media (max-width: 768px) {
            .section-heading h2 {
                font-size: 32px;
            }

            .about-content h2 {
                font-size: 32px;
            }

            .navbar-nav .nav-link {
                padding: 12px 15px !important;
            }

            .carousel-caption h1 {
                font-size: 28px;
            }

            .carousel-caption .lead {
                font-size: 16px;
            }

            .info-card-content h3 {
                font-size: 24px;
            }

            .ceo-message-content h3 {
                font-size: 28px;
            }
        }
