
        :root {
            --navy: #0A1931;
            --orange: #FF6B35;
            --white: #FFFFFF;
            --black: #000000;
            --light-gray: #F8F9FA;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            color: var(--navy);
        }

        /* Navbar Styles */
        .navbar {
            background: var(--navy) !important;
            padding: 20px 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white) !important;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .navbar-brand span {
            color: var(--orange);
        }

        .nav-link {
            color: var(--white) !important;
            font-weight: 500;
            margin: 0 15px;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 0 !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--orange);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--orange) !important;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, rgba(10, 25, 49, 0.95), rgba(255, 107, 53, 0.85)), 
                        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&h=600&fit=crop&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 150px 0 100px;
            color: var(--white);
            position: relative;
            margin-top: 76px;
        }

        .page-header h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .page-header .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
            font-size: 1.1rem;
        }

        .breadcrumb-item a {
            color: var(--orange);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: var(--white);
        }

        /* Contact Info Section */
        .contact-info-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .contact-info-card {
            background: var(--white);
            border-radius: 25px;
            padding: 50px 40px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            height: 100%;
            border: 3px solid transparent;
        }

        .contact-info-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            border-color: var(--orange);
        }

        .contact-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--orange), #ff8c5a);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .contact-info-card:hover .contact-icon {
            transform: rotateY(150deg) scale(1.1);
            background: linear-gradient(135deg, var(--navy), #1a3a5c);
        }

        .contact-icon i {
            font-size: 2.5rem;
            color: var(--white);
        }

        .contact-info-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .contact-info-text {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .contact-info-text a {
            color: var(--orange);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-info-text a:hover {
            color: var(--navy);
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 100px 0;
            background: var(--white);
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            color: var(--navy);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 5px;
            background: var(--orange);
            border-radius: 3px;
        }

        .form-card {
            background: var(--light-gray);
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .form-label {
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 10px;
            font-size: 1rem;
        }

        .form-control,
        .form-select {
            border: 2px solid #ddd;
            border-radius: 15px;
            padding: 14px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--orange);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
            background: var(--white);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--orange), #ff8c5a);
            color: var(--white);
            padding: 15px 50px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .btn-submit:hover {
            background: linear-gradient(135deg, var(--navy), #1a3a5c);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(10, 25, 49, 0.4);
        }

        /* Map Section */
        .map-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .map-container {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            height: 500px;
            position: relative;
        }

        /* Office Hours Section */
        .office-hours {
            background: var(--white);
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-top: 40px;
        }

        .office-hours h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 25px;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-size: 1.05rem;
        }

        .hours-item:last-child {
            border-bottom: none;
        }

        .hours-day {
            font-weight: 600;
            color: var(--navy);
        }

        .hours-time {
            color: var(--orange);
            font-weight: 600;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: var(--white);
        }

        .accordion-item {
            border: 2px solid #eee;
            border-radius: 15px !important;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: var(--orange);
        }

        .accordion-button {
            background: var(--light-gray);
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--navy);
            padding: 20px 25px;
            border-radius: 15px !important;
        }

        .accordion-button:not(.collapsed) {
            background: var(--orange);
            color: var(--white);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--orange);
        }

        .accordion-body {
            padding: 25px;
            font-size: 1.05rem;
            line-height: 1.8;
            color: #666;
        }

        /* Footer */
        .footer {
            background: var(--navy);
            color: var(--white);
            padding: 70px 0 30px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--orange), var(--navy), var(--orange));
        }

        .footer-title {
            color: var(--orange);
            font-weight: 800;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin: 12px 0;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .footer-link:hover {
            color: var(--orange);
            padding-left: 12px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 8px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .social-icon:hover {
            background: var(--orange);
            transform: translateY(-8px) rotate(360deg);
            border-color: var(--white);
        }

        .social-icon i {
            color: var(--white);
            font-size: 1.2rem;
        }

        .footer-bottom {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .form-card {
                padding: 30px 20px;
            }

            .map-container {
                height: 350px;
            }
        }
   