:root {
    --color-bg-main: #ffffff;
    --color-bg-dark: #0a1128;
    --color-bg-surface: #f8fafc;
    --color-bg-surface-dark: #111e42;
    --color-primary: #002266;
    --color-primary-light: #003399;
    --color-accent: #00f2fe;
    --color-accent-dim: #00b4db;
    --color-text-main: #1e293b;
    --color-text-muted: #64748b;
    --color-border: #e2e8f0;
    --font-primary: 'Inter', sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 30%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    margin-top: 1rem;
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 34, 102, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.btn-full { width: 100%; }

section { padding: 8rem 0; }
.section-header { margin-bottom: 4rem; }
.section-header.align-left { text-align: left; }
.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    height: 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.main-nav .nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 1.5rem; }

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.lang-selector:hover {
    background-color: var(--color-border);
    color: var(--color-text-main);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

/* HERO */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-color: var(--color-bg-dark);
    color: #ffffff;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 34, 102, 0.4) 0%, rgba(10, 17, 40, 1) 100%);
    z-index: 1;
}

.hero-container { position: relative; z-index: 3; }
.hero-content { max-width: 650px; }

.hero-badge {
    background-color: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--color-accent);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions { display: flex; gap: 1rem; }

.globe-visualization {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0,34,102,0.2) 0%, transparent 70%);
    animation: rotateGlobe 60s linear infinite;
}

.network-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.glowing-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-accent);
}

.node-1 { top: 25%; left: 40%; animation: nodePulse 3s infinite ease-in-out; }
.node-2 { top: 60%; left: 20%; animation: nodePulse 4s infinite ease-in-out 1s; }
.node-3 { top: 45%; left: 75%; animation: nodePulse 3.5s infinite ease-in-out 0.5s; }

@keyframes rotateGlobe { 100% { transform: rotate(360deg); } }
@keyframes nodePulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.5); opacity: 1; } }

/* Optimized About Us Text Boxes */
.about-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2.5rem; 
}

.about-card {
    background-color: var(--color-bg-surface);
    padding: 3rem 2.2rem;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-primary); /* Gives it a clean 'text box' frame accent */
    transition: var(--transition-smooth);
    
    /* Text Alignment Overrides */
    text-align: justify; /* Ensures natural word wrapping, strictly NOT justified */
}

.about-card:hover { 
    transform: translateY(-5px); 
    border-color: rgba(0, 34, 102, 0.2); 
    background-color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 34, 102, 0.05);
}

.card-icon { 
    font-size: 2.2rem; 
    color: var(--color-primary); 
    margin-bottom: 1.5rem; 
    text-align: left;
}

.about-card h3 { 
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem; 
    color: var(--color-primary); 
    text-align: left;
}

.about-card p { 
    color: var(--color-text-muted); 
    font-size: 0.95rem; 
    line-height: 1.6;
    text-align: left; /* Extra protection to prevent paragraph stretch */
}

/* SERVICES */
.services-section { background-color: var(--color-bg-surface); }
.services-list { display: flex; flex-direction: column; gap: 6rem; }
.service-row { display: flex; align-items: center; gap: 4rem; }
.service-row.inverse { flex-direction: row-reverse; }
.service-info { flex: 1; }
.service-num { font-size: 3.5rem; font-weight: 700; color: rgba(0, 34, 102, 0.05); }
.service-info h3 { font-size: 1.85rem; color: var(--color-primary); }
.service-tagline { display: block; color: var(--color-accent-dim); margin-bottom: 1rem; font-weight: 600; }
.service-info p { color: var(--color-text-muted); }
.service-visual { flex: 1; display: flex; justify-content: center; }
.visual-box {
    width: 100%; max-width: 400px; height: 250px;
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    font-size: 4rem; position: relative; overflow: hidden;
}
.tech-visual { background: linear-gradient(135deg, #0a1128 0%, #002266 100%); color: var(--color-accent); }
.tourism-visual { background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%); color: #38bdf8; }
.trade-visual { background: linear-gradient(135deg, #022c22 0%, #064e3b 100%); color: #34d399; }

/* MANAGEMENT */
.management-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.member-card { border: 1px solid var(--color-border); border-radius: 4px; overflow: hidden; background: #fff; }
.member-image-wrapper { width: 100%; height: 300px; position: relative; }
.member-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    font-size: 4.5rem; color: var(--color-border); background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}
.member-details { padding: 2rem; }
.member-details h4 { color: var(--color-primary); font-size: 1.3rem; }
.member-role { color: var(--color-accent-dim); font-size: 0.85rem; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
.member-details p { color: var(--color-text-muted); font-size: 0.9rem; }

/* CONTACT */
.contact-section { background-color: var(--color-bg-dark); color: #ffffff; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; }
.contact-info-panel .section-desc { color: #94a3b8; margin-top: 1rem; }
.office-locations { margin: 3.5rem 0; display: flex; flex-direction: column; gap: 1.8rem; }
.location-item { display: flex; gap: 1.2rem; }
.loc-icon { color: var(--color-accent); font-size: 1.2rem; }
.loc-details h5 { font-size: 1.05rem; }
.loc-details p { color: #94a3b8; font-size: 0.95rem; }
.communication-channels { display: flex; flex-direction: column; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; }
.channel-link { color: #ffffff; text-decoration: none; display: flex; align-items: center; gap: 0.8rem; }
.channel-link i { color: var(--color-accent); }

.contact-form-panel { background-color: var(--color-bg-surface-dark); padding: 3rem 2.5rem; border-radius: 4px; }
.form-wrapper h3 { margin-bottom: 2rem; display: flex; align-items: center; gap: 0.6rem; }
.form-wrapper h3 i { color: var(--color-accent); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.85rem; margin-bottom: 0.5rem; color: #cbd5e1; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.85rem 1rem; background: rgba(10,17,40,0.6);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; color: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--color-accent); outline: none; }
.form-group select option { background: var(--color-bg-dark); }

/* FOOTER */
.site-footer { background-color: #060b1a; padding: 2rem 0; color: #64748b; font-size: 0.9rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-container { display: flex; justify-content: space-between; align-items: center; }
.footer-socials { display: flex; gap: 1.5rem; }
.footer-socials a { color: #64748b; font-size: 1.1rem; }
.footer-socials a:hover { color: #ffffff; }

/* RESPONSIVE RESPONSIVENESS */
@media (max-width: 1024px) {
    .about-grid, .management-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
}
@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    .main-nav {
        position: absolute; top: var(--header-height); left: 0; width: 100%;
        background: #ffffff; display: none; padding: 2rem; border-bottom: 1px solid var(--color-border);
    }
    .main-nav.active { display: block; }
    .main-nav .nav-links { flex-direction: column; gap: 1.5rem; text-align: center; }
    .nav-btn, .globe-visualization { display: none; }
    .hero-title { font-size: 2.75rem; }
    .about-grid, .management-grid { grid-template-columns: 1fr; }
    .service-row, .service-row.inverse { flex-direction: column; gap: 2rem; }
    .footer-container { flex-direction: column; gap: 1.5rem; }
}
/* Google Form Custom Container Styling */
.google-form-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background-color: rgba(10, 17, 40, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.google-form-container iframe {
    display: block;
    width: 100%;
    /* Prevents the form background from clashing drastically with your dark UI */
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.3)); 
}

/* Mobile Adjustments for Form Height */
@media (max-width: 768px) {
    .google-form-container iframe {
        height: 750px; /* Gives extra scrolling height for mobile virtual keyboards */
    }
}