/* Custom CSS for Firefly Global Solutions */

/* Color Variables */
:root {
    --navy: #001f4d;
    --royal-blue: #003366;
    --deep-orange: #ff5722;
    --crimson: #dc143c;
    --gold: #ffd700;
    --orange: #ff9800;
    --charcoal: #333333;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal);
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
     background: #FBF4EA !important;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            /*padding: 1rem 0;*/
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1030; /* Ensure navbar stays on top */
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold) !important;
    text-decoration: none;
}

.navbar-brand i {
    color: var(--deep-orange);
}

.nav-link {
   color: #003366 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    background: var(--navy);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: var(--white);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Hero Carousel */
.hero-carousel {
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.slide-1 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
}

.slide-2 {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--navy) 100%);
}

.slide-3 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-orange) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 31, 77, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 2rem;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
}

.carousel-indicators .active {
    background: var(--gold);
}

/* Buttons */
.btn-primary-cta {
    background: var(--deep-orange);
    border: 2px solid var(--deep-orange);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-cta:hover {
    background: var(--crimson);
    border-color: var(--crimson);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.btn-outline-primary {
    border: 2px solid var(--deep-orange);
    color: var(--deep-orange);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--deep-orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Styling */
.section-padding {
    padding: 120px 0;
}

.section-label {
    color: var(--deep-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.section-description {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* About Section */
.about-home {
    background: var(--white);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--deep-orange);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 2rem;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-item i {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.feature-item h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.feature-item p {
    color: var(--dark-gray);
    margin: 0;
}

/* Services Section */
.services-home {
    background: var(--light-gray);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(255, 87, 34, 0.4);
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--charcoal);
    font-weight: 500;
}

.service-features i {
    margin-right: 1rem;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose-home {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    color: var(--white);
    position: relative;
}

.why-choose-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 87, 34, 0.1) 0%, transparent 50%);
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.why-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.why-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Contact CTA Section */
.contact-cta {
    background: var(--light-gray);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    margin-bottom: 3rem;
}

.cta-stats {
    border-top: 1px solid #e9ecef;
    padding-top: 3rem;
}

.stat-item {
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    /*color: var(--deep-orange);*/
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--deep-orange);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info .contact-item i {
    margin-right: 1rem;
    font-size: 1.1rem;
}

/*.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}*/

.copyright,
.tagline {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128c7e;
    color: var(--white);
    transform: scale(1.1);
}

.sticky-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.sticky-contact-btn {
    background: var(--deep-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-contact-btn:hover {
    background: var(--crimson);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .experience-badge {
        position: relative;
        top: auto;
        right: auto;
        margin: 2rem auto;
        display: block;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card,
    .why-card {
        margin-bottom: 2rem;
    }
    
    .whatsapp-float,
    .sticky-contact {
        bottom: 20px;
    }
    
    .whatsapp-float {
        right: 20px;
    }
    
    .sticky-contact {
        left: 20px;
    }
    
    .sticky-contact-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        display: block;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .cta-buttons .btn {
        display: block;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .service-icon,
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

/* About Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    color: var(--white);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 87, 34, 0.1) 0%, transparent 50%);
}

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

.page-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 0;
}

/* About Image Wrapper */
.about-image-wrapper {
    position: relative;
}

.overlay-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    gap: 1rem;
}

.stat-box {
    background: var(--deep-orange);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
    min-width: 80px;
}

.stat-box .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box .stat-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Key Highlights */
.key-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
}

.highlight-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.highlight-content p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

/* Mission Vision Values Cards */
.mvv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.mvv-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.mvv-card p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.mvv-points {
    list-style: none;
    padding: 0;
    text-align: left;
}

.mvv-points li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--charcoal);
    font-weight: 500;
}

.mvv-points i {
    margin-right: 1rem;
    font-size: 1rem;
}

/* Team Section */
.team-content h3 {
    color: var(--navy);
    font-weight: 700;
}

.expertise-areas {
    margin-top: 2rem;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.expertise-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.expertise-icon i {
    font-size: 1.2rem;
}

.expertise-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.expertise-item p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Team Stats Grid */
.team-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.team-stat-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.team-stat-card h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--deep-orange);
    margin-bottom: 0.5rem;
}

.team-stat-card p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Global Operations Section */
.global-operations {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    color: var(--white);
    position: relative;
}

.global-operations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 87, 34, 0.1) 0%, transparent 50%);
}

.location-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.location-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.location-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.location-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.location-features {
    margin-bottom: 2rem;
}

.feature-point {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.feature-point i {
    margin-right: 1rem;
    font-size: 1rem;
}

.location-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.location-contact h6 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.location-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.location-contact i {
    margin-right: 0.5rem;
    width: 16px;
}

/* Achievement Cards */
.achievement-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-orange), var(--crimson));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.achievement-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.achievement-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

/* Content Block */
.content-block {
    padding-left: 2rem;
}

/* Responsive Adjustments for About Page */
@media (max-width: 992px) {
    .page-title {
        font-size: 1.5rem;
    }
    
    .content-block {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .overlay-stats {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .team-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .overlay-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-box {
        min-width: auto;
        width: 100%;
    }
    
    .location-header {
        flex-direction: column;
        text-align: center;
    }
    
    .location-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .mvv-card,
    .achievement-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .overlay-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stat-box {
        flex: 1;
        margin: 0 0.5rem;
        padding: 1rem;
    }
    
    .stat-box .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-box .stat-text {
        font-size: 0.7rem;
    }
}

  .logo-h{
            height: 90px;
        }
        .navbar-toggler{
            background-color: #ffc107 !important;
        }