/* CSS Document */


        :root {
            --primary-navy: #0a1a3a;
            --secondary-navy: #1a2d5a;
            --accent-gold: #c5a047;
            --light-gold: #f4e8c7;
            --cream: #f9f5eb;
            --white: #ffffff;
            --gray-light: #f0f2f5;
            --gray: #6c757d;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--primary-navy);
            line-height: 1.7;
            background-color: var(--cream);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Cinzel', serif;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Full-Width Navigation */
        .full-width-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--primary-navy);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }

        .nav-scrolled {
            background-color: rgba(10, 26, 58, 0.95);
            backdrop-filter: blur(10px);
            padding: 5px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-icon {
            background: linear-gradient(135deg, var(--accent-gold), #e6c158);
            color: var(--primary-navy);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(197, 160, 71, 0.3);
        }

        .logo-text {
            color: var(--white);
        }

        .logo-text h1 {
            font-size: 1.3rem;
            margin-bottom: 3px;
            color: var(--white);
        }

        .logo-text p {
            font-size: 0.75rem;
            color: var(--light-gold);
            font-style: italic;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--white);
            text-decoration: none;
            padding: 28px 25px;
            display: block;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .nav-link:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--accent-gold);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .nav-link:hover:before {
            transform: translateX(0);
        }

        .nav-link:hover {
            color: var(--accent-gold);
            background-color: rgba(255, 255, 255, 0.05);
        }

        .nav-link.active {
            color: var(--accent-gold);
        }

        .nav-link.active:before {
            transform: translateX(0);
        }

        .nav-cta {
            background-color: var(--accent-gold);
            color: var(--primary-navy) !important;
            padding: 12px 25px !important;
            border-radius: 4px;
            margin-left: 20px;
            font-weight: 600 !important;
        }

        .nav-cta:hover {
            background-color: var(--light-gold) !important;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(197, 160, 71, 0.3);
        }

        .nav-cta:before {
            display: none;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }

        /* Hero Section */
        .hero-section {
            height: 100vh;
            background: linear-gradient(rgba(10, 26, 58, 0.85), rgba(10, 26, 58, 0.9)), 
                        url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
            margin-top: 80px;
        }

        .hero-content {
            max-width: 800px;
            color: var(--white);
            padding: 40px;
            position: relative;
            z-index: 2;
        }

        .hero-subtitle {
            color: var(--accent-gold);
            font-size: 1.1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }

        .hero-title {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 25px;
            color: var(--white);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }

        .hero-title span {
            color: var(--accent-gold);
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent-gold);
            color: var(--primary-navy);
            padding: 15px 35px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: 0.5px;
        }

        .btn:hover {
            background-color: var(--light-gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold);
            margin-left: 15px;
        }

        .btn-outline:hover {
            background-color: var(--accent-gold);
            color: var(--primary-navy);
        }

        /* Section Styling */
        .section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-subtitle {
            color: var(--accent-gold);
            font-size: 1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: block;
        }

        .section-title {
            font-size: 2.8rem;
            color: var(--primary-navy);
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--accent-gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        /* About Section */
        .about-section {
            background-color: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            align-items: center;
        }

        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .about-image:before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 2px solid var(--accent-gold);
            border-radius: 10px;
            z-index: -1;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-content h3 {
            font-size: 2rem;
            margin-bottom: 25px;
            color: var(--primary-navy);
        }

        .about-content p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: var(--secondary-navy);
        }

        /* Features Section */
        .features-section {
            background-color: var(--gray-light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background-color: var(--white);
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-gold), var(--light-gold));
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
            display: inline-block;
            width: 80px;
            height: 80px;
            line-height: 80px;
            background-color: rgba(197, 160, 71, 0.1);
            border-radius: 50%;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-navy);
        }

        /* Portal Section */
        .portal-section {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
            color: var(--white);
        }

        .portal-section .section-title {
            color: var(--white);
        }

        .portal-section .section-title:after {
            background-color: var(--accent-gold);
        }

        .portal-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            align-items: center;
        }

        .portal-info h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .portal-info ul {
            list-style: none;
            margin-top: 25px;
        }

        .portal-info li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }

        .portal-info li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-gold);
            font-weight: bold;
        }

        .portal-form {
            background-color: var(--white);
            padding: 50px 40px;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .portal-form h3 {
            color: var(--primary-navy);
            margin-bottom: 30px;
            font-size: 1.8rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary-navy);
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(197, 160, 71, 0.2);
        }

        /* Gallery Preview */
        .gallery-preview {
            padding: 80px 0;
            background-color: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            height: 250px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10, 26, 58, 0.9), transparent);
            color: var(--white);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        /* Footer */
        footer {
            background-color: var(--primary-navy);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-logo h3 {
            color: var(--accent-gold);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .footer-logo p {
            color: rgba(255, 255, 255, 0.7);
            margin-top: 15px;
        }

        .footer-title {
            color: var(--accent-gold);
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--accent-gold);
            bottom: 0;
            left: 0;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }

        .footer-contact p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-contact i {
            color: var(--accent-gold);
            margin-right: 12px;
            width: 20px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .nav-container {
                padding: 0 30px;
            }
            
            .nav-link {
                padding: 28px 20px;
            }
            
            .hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background-color: var(--primary-navy);
                flex-direction: column;
                padding-top: 100px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-item {
                width: 100%;
            }
            
            .nav-link {
                padding: 20px 30px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .nav-cta {
                margin: 30px 30px 0;
                text-align: center;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .about-grid, .portal-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 0 20px;
                height: 70px;
            }
            
            .hero-section {
                margin-top: 70px;
                height: 90vh;
            }
            
            .hero-content {
                padding: 20px;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .btn-outline {
                margin-left: 0;
                margin-top: 15px;
                display: block;
            }
        }

        @media (max-width: 576px) {
            .logo-text h1 {
                font-size: 1.1rem;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.9rem;
            }
            
            .portal-form {
                padding: 40px 25px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
 /* Application Specific Styles */

/* Error message styling */
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-group {
        min-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
    }
}

/* Animation for success message */
@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    70% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon {
    animation: bounceIn 0.8s ease;
}