 :root {
            --primary-navy: #0B2545;
            --accent-orange: #E67E22;
            --soft-gray: #F4F6F8;
            --text-dark: #1A1A1A;
            --border-subtle: #E0E5EA;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Manrope', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-subtle);
            padding: 1.2rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-family: 'DM Serif Display', serif;
            font-size: 1.6rem;
            color: var(--primary-navy) !important;
            font-weight: 400;
            letter-spacing: -0.5px;
        }
        
        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            font-size: 0.95rem;
            margin: 0 0.8rem;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--accent-orange) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Carousel Hero */
        .hero-carousel {
            position: relative;
            height: 85vh;
            min-height: 600px;
        }
        
        .carousel-item {
            height: 85vh;
            min-height: 600px;
            position: relative;
            background-size: cover;
            background-position: center;
        }
        
        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(11, 37, 69, 0.92) 0%, rgba(11, 37, 69, 0.75) 100%);
        }
        
        .carousel-item:nth-child(1) {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('../hero1.png'); /* Adjust path if hero1.jpg is in a different folder */
            background-size: cover;
            background-position: center 10%;
            min-height: 80vh; /* Ensures the hero section has height */
        }
        .carousel-item:nth-child(2) {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('../hero2.png'); /* Adjust path if hero1.jpg is in a different folder */
            background-size: cover;
            background-position: center 10%;
            min-height: 80vh; /* Ensures the hero section has height */
        }
        
        .carousel-item:nth-child(3) {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('../hero3.png'); /* Adjust path if hero1.jpg is in a different folder */
            background-size: cover;
            background-position: center 10%;
            min-height: 80vh; /* Ensures the hero section has height */
        }
        
        .carousel-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: 1200px;
            text-align: left;
            padding: 0 2rem;
            z-index: 2;
        }
        
        .carousel-caption h1 {
            font-family: 'DM Serif Display', serif;
            font-size: 4.5rem;
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.15;
            letter-spacing: -1px;
            animation: fadeInUp 1s ease-out;
        }
        
        .carousel-caption p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            max-width: 650px;
            font-weight: 400;
            animation: fadeInUp 1s ease-out 0.2s both;
        }
        
        .carousel-caption .btn-group-hero {
            display: flex;
            gap: 1.2rem;
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .btn-primary-custom {
            background: var(--accent-orange);
            color: #ffffff;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary-custom:hover {
            background: #D87018;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
        }
        
        .btn-secondary-custom {
            background: transparent;
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.4);
            padding: 1rem 2.5rem;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-secondary-custom:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.8);
            color: #ffffff;
        }
        
        /* Custom Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .carousel-control-prev {
            left: 3%;
        }
        
        .carousel-control-next {
            right: 3%;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: rgba(255, 255, 255, 0.25);
        }
        
        .carousel-indicators {
            bottom: 40px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            transition: all 0.3s ease;
        }
        
        .carousel-indicators button.active {
            width: 40px;
            border-radius: 6px;
            background: var(--accent-orange);
        }
        
        /* Services Section */
        .services-section {
            padding: 7rem 0;
            background: #ffffff;
        }
        
        .section-title {
            font-family: 'DM Serif Display', serif;
            font-size: 3rem;
            color: var(--primary-navy);
            margin-bottom: 1rem;
            font-weight: 400;
            letter-spacing: -0.5px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 4rem;
            max-width: 700px;
        }
        
        .service-card {
            padding: 2.5rem;
            background: var(--soft-gray);
            border-radius: 8px;
            border: 1px solid var(--border-subtle);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--accent-orange);
            transition: height 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(11, 37, 69, 0.12);
            background: #ffffff;
        }
        
        .service-card:hover::before {
            height: 100%;
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--accent-orange);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.8rem;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .service-icon svg {
            width: 35px;
            height: 35px;
            stroke: #ffffff;
            fill: none;
            stroke-width: 2;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: #555;
            font-size: 1rem;
            line-height: 1.8;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 5rem 0;
            background: var(--primary-navy);
            color: #ffffff;
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem 1rem;
        }
        
        .stat-number {
            font-family: 'DM Serif Display', serif;
            font-size: 3.5rem;
            font-weight: 400;
            color: var(--accent-orange);
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 7rem 0;
            background: var(--soft-gray);
        }
        
        .contact-form {
            background: #ffffff;
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(11, 37, 69, 0.08);
        }
        
        .form-label {
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        
        .form-control,
        .form-select {
            border: 1px solid var(--border-subtle);
            padding: 0.85rem 1.2rem;
            font-size: 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus,
        .form-select:focus {
            border-color: var(--accent-orange);
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .btn-submit {
            background: var(--accent-orange);
            color: #ffffff;
            border: none;
            padding: 1rem 3rem;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 1rem;
        }
        
        .btn-submit:hover {
            background: #D87018;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 126, 34, 0.25);
        }
        
        .contact-info {
            padding: 3rem 0;
        }
        
        .contact-info h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 2rem;
            color: var(--primary-navy);
            margin-bottom: 1.5rem;
        }
        
        .contact-detail {
            margin-bottom: 2rem;
        }
        
        .contact-detail h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
        }
        
        .contact-detail p {
            color: #666;
            font-size: 1rem;
            margin-bottom: 0;
        }
        
        /* Footer */
        footer {
            background: var(--primary-navy);
            color: rgba(255, 255, 255, 0.8);
            padding: 3rem 0 1.5rem;
        }
        
        footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: var(--accent-orange);
        }
        
        .footer-brand {
            font-family: 'DM Serif Display', serif;
            font-size: 1.8rem;
            color: #ffffff;
            margin-bottom: 1rem;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .carousel-caption h1 {
                font-size: 3rem;
            }
            
            .carousel-caption p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .carousel-caption h1 {
                font-size: 2.2rem;
            }
            
            .carousel-caption p {
                font-size: 1rem;
            }
            
            .carousel-caption .btn-group-hero {
                flex-direction: column;
                gap: 0.8rem;
            }
            
            .btn-primary-custom,
            .btn-secondary-custom {
                width: 100%;
                text-align: center;
            }
            
            .hero-carousel,
            .carousel-item {
                height: 70vh;
                min-height: 500px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }