/* Color Variables */
:root {
    --color-navy: #222544;
    --color-gold: #D4AF37;
    --color-gold-hover: #B8941F;
    --color-white: #FFFFFF;
    --color-light: #F8F9FA;
    --color-dark: #212529;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-dark);
    line-height: 1.6;
    padding-top: 70px;
    margin: 0;
    overflow-x: hidden;
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.navbar + .hero-section {
    margin-top: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--color-navy);
}

/* Utility Classes */
.text-gold {
    color: var(--color-gold) !important;
}

.text-navy {
    color: var(--color-navy) !important;
}

.bg-navy {
    background-color: var(--color-navy) !important;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Buttons */
.btn-gold {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-navy {
    background-color: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}

.btn-navy:hover {
    background-color: #1a1d35;
    border-color: #1a1d35;
    color: var(--color-white);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}

.btn-outline-light:hover {
    color: var(--color-navy);
}

/* Navbar */
.navbar {
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    background-color: var(--color-navy) !important;
    border: none;
    box-shadow: none;
    margin: 0 !important;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
}

.navbar .container-fluid {
    padding: 0 15px;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.navbar.fixed-top {
    top: 0;
    margin: 0 !important;
}

/* Remove any default spacing */
.navbar + .hero-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.navbar-brand {
    padding: 0;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-link {
    color: var(--color-white) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold) !important;
}

/* Dropdown arrow styling */
.navbar .dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Dropdown hover effect */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    color: var(--color-navy);
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.navbar .dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: middle;
}

.navbar-toggler {
    border-color: var(--color-gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: var(--color-navy);
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-navy) 0%, #1a1d35 100%);
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background-color: var(--color-navy);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(34, 37, 68, 0.7);
    z-index: 1;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: var(--color-white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-section h1 .text-gold {
    color: var(--color-gold) !important;
}

.hero-section .lead {
    color: var(--color-white) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
}

.section-subtitle {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--color-gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--color-gold);
}

.service-card h4 {
    margin-bottom: 1rem;
    color: var(--color-navy);
}

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--color-gold-hover);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.feature-item i {
    color: var(--color-gold);
    font-size: 1.25rem;
}

/* Stats Section */
.stat-item {
    padding: 1rem;
}

.stat-item h3 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

/* Page Header */
.page-header {
    padding: 80px 0 60px;
    margin-top: 0;
}

/* Mission & Vision Cards */
.mission-vision-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    border-left: 4px solid var(--color-gold);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--color-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.mission-vision-card h3 {
    margin-bottom: 1rem;
}

/* Value Cards */
.value-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--color-gold);
}

.value-card h5 {
    margin-bottom: 0.75rem;
}

/* About Stats */
.about-stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Service Detail */
.service-detail-row {
    padding: 2rem 0;
}

.service-detail-content {
    padding: 2rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background-color: var(--color-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: var(--color-gold);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #6c757d;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

/* Additional Services */
.additional-service-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.additional-service-card .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: var(--color-navy);
}

.additional-service-card h5 {
    margin-bottom: 0.75rem;
}

/* Region Cards */
.region-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.region-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.region-icon i {
    font-size: 1.75rem;
    color: var(--color-gold);
}

.region-cities {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.region-cities li {
    padding: 0.25rem 0.5rem;
    background-color: var(--color-light);
    border-radius: 4px;
    font-size: 0.875rem;
    color: #6c757d;
}

/* Hub Cards */
.hub-card {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hub-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.hub-icon i {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.hub-card h5 {
    margin-bottom: 0.5rem;
}

/* Network Stats */
.network-stat {
    text-align: center;
    padding: 1rem;
}

.network-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Contact Form */
.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Contact Info */
.contact-info-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--color-gold);
    font-size: 1.25rem;
}

.contact-info-item h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a,
.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--color-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover,
.social-link:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Map Container */
.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Footer */
.footer {
    padding-top: 3rem !important;
}

.footer h5,
.footer h6 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer .text-muted {
    color: #adb5bd !important;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer .social-links a {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer .social-links a:hover {
    background-color: var(--color-gold);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--color-navy);
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }

    .nav-link {
        display: inline-block;
        padding: 0.75rem 1rem !important;
    }

    .nav-link::after {
        bottom: 5px;
    }

    .hero-section {
        padding: 80px 0;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .service-detail-row {
        padding: 1rem 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-header {
        padding: 60px 0 40px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .logo-container {
        padding: 0.4rem 0.75rem;
    }

    .logo {
        height: 32px;
    }

    .btn-gold,
    .btn-navy {
        padding: 0.4rem 1rem;
        font-size: 0.875rem;
    }

    .service-card,
    .mission-vision-card,
    .value-card {
        padding: 1.5rem;
    }

    .service-icon,
    .region-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i,
    .region-icon i {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .hero-scroll-indicator {
        display: none !important;
    }

    body {
        padding-top: 0;
    }
}
