/* CSS Variables */
:root {
    --bg-main: #0B0E14; /* Deep obsidian blue/black */
    --bg-secondary: #131722;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA8222;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A5B1;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center {
    text-align: center;
}

.gold-text {
    color: var(--gold);
    display: inline-block;
    background: linear-gradient(45deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--bg-secondary);
}

/* Typography Utility */
.section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 50px;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--bg-main);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 24px;
    border-radius: 50px;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-main);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    height: 90px;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(11, 14, 20, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
}

.logo {
    position: relative;
    display: flex;
    align-self: flex-start;
    margin-top: -25px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.site-logo {
    height: 210px;
    width: auto;
    display: block;
    transition: var(--transition);
    z-index: 1001;
    pointer-events: auto;
    object-fit: contain;
}
.logo::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1002;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gold);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 999;
    padding-top: 100px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('../assets/hero_bg.png') center/cover no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,14,20,0.95) 0%, rgba(11,14,20,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--gold);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    max-width: 800px;
}

.hero h1 span {
    color: var(--gold);
    font-weight: 300;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    /* overflow: hidden; Removed to prevent the experience-badge from being cut off */
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    opacity: 0.8;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: rgba(212, 175, 55, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 10px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.experience-badge i {
    font-size: 2rem;
}

/* Sectors Section */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sector-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sector-card-image {
    width: 100%;
    height: 200px;
    background-color: rgba(255,255,255,0.02);
    position: relative;
    overflow: hidden;
}

.sector-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sector-card:hover .sector-card-image img {
    transform: scale(1.1);
}

.sector-card-content {
    padding: 30px;
    flex-grow: 1;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--gold);
    transition: var(--transition);
    z-index: 10;
}

.sector-card:hover::before {
    height: 100%;
}

.sector-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.sector-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.sector-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Vision / Mission */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vision-box {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.vision-box:hover {
    border-color: var(--gold);
}

.v-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.check-list li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--gold);
    font-size: 0.9rem;
}

.mission-text {
    color: var(--text-secondary);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    padding: 15px;
    background: var(--glass-bg);
    border-radius: 10px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-secondary);
}

.contact-form-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(0,0,0,0.4);
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-site-logo {
    max-height: 160px;
    width: auto;
    max-width: 100%;
    margin: 0 auto 30px auto;
    display: block;
    object-fit: contain;
}

.footer-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--bg-main);
    transform: translateY(-5px);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.active, .slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 5%;
    }
    
    .section-padding {
        padding: 60px 0;
    }

    .about-grid, .vision-grid, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero {
        min-height: 100vh; /* Allow it to take up the screen but no fixed large height */
    }

    .hero h1 {
        font-size: 3rem;
    }

    .experience-badge {
        left: 10px;
        bottom: 10px;
        font-size: 0.85rem;
        padding: 12px 15px;
        gap: 10px;
    }
    
    .about-stats {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        margin-top: 25px;
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0;
    }

    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary, .btn-outline {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .sector-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .sector-card-image {
        height: 160px; /* Reduced from 200px */
    }
    
    .sector-card-content {
        padding: 20px 15px; /* Reduced from 30px */
    }
    
    .sector-card h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .sector-card p {
        font-size: 0.9rem;
    }
    
    .card-icon {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .mobile-nav {
        width: 100%;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 20px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-wrapper {
        gap: 25px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 35px 0;
    }

    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
    
    .sector-card-image {
        height: 140px; /* Super small for phone screens */
    }
    
    .sector-card-content {
        padding: 15px;
    }
    
    .vision-grid {
        gap: 15px;
    }
    
    .vision-box {
        padding: 15px;
    }
    
    .vision-box h3 {
        font-size: 1.15rem;
    }
    
    .check-list li, .mission-text {
        font-size: 0.85rem;
    }
    
    .v-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .form-group input, 
    .form-group select, 
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo {
        font-size: 1.6rem;
    }
}
