:root {
    --primary: #0a2540;
    --secondary: #0885c2;
    --accent: #635bff;
    --light: #f6f9fc;
    --dark: #0a2540;
    --text: #425466;
    --text-light: #8a94a6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

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

h1, h2, h3, h4, h5 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
}

.logo-img {
    height: 40px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 10px;
}

.footer-logo-img {
    height: 25px;
    width: auto;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

.cta-button {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background-color: #0676a9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 133, 194, 0.3);
}

.secondary-button {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.secondary-button:hover {
    background-color: var(--secondary);
    color: white;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a365d 100%);
    color: white;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.8) 0%, rgba(26, 54, 93, 0.8) 100%);
    opacity: 0.3;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sector-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sector-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(8, 133, 194, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary);
    font-size: 28px;
}

.sector-card h3 {
    margin-bottom: 15px;
}

/* Events Section */
.events {
    padding: 100px 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-image {
    height: 200px;
    background-color: var(--primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.event-content {
    padding: 25px;
    background: white;
}

.event-date {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
}

.event-content h3 {
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a365d 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.8) 0%, rgba(26, 54, 93, 0.8) 100%);
    opacity: 0.2;
}

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

.cta-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: white;
    color: #333;
    padding: 80px 0 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s;
}

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

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 14px;
}

.copyright a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.copyright a:hover {
    color: #333;
    text-decoration: underline;
}

/* Footer Table Layout */
.footer-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.footer-table th, .footer-table td {
    padding: 10px 15px;
    text-align: left;
    vertical-align: top;
}

.footer-table th {
    color: var(--primary);
    font-weight: 600;
    padding-bottom: 15px;
}

.footer-table a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-table a:hover {
    color: var(--secondary);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.content-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--light);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* X Logo Fix */
.fa-x-twitter {
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .about, .events, .cta-section, .content-section {
        padding: 70px 0;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .footer-logo-img {
        height: 30px;
    }
    
    .footer-table th, .footer-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px;
    }
    
    .footer-logo-img {
        height: 25px;
    }
    
    .hero-banner, .cta-banner {
        opacity: 0.15;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    .footer-table {
        font-size: 14px;
    }
}
/* Fix for X/Twitter icon */
.fa-x-twitter {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

.fa-x-twitter:before {
    content: "\e61b" !important;
}
/* Mobile menu button animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-btn span {
    transition: all 0.3s ease;
}
/* Header Logo Styles */
.logo-img {
    height: 40px; /* Adjust based on your logo */
    width: auto;
    display: block;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Footer Logo Styles */
.footer-logo {
    height: 35px; /* Slightly smaller for footer */
    width: auto;
    display: block;
}

.footer-logo-img {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

/* Hide brand name if logo contains text */
.logo-with-text + .brand-name {
    display: none;
}

/* Responsive Logo Sizing */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
    
    .footer-logo {
        height: 30px;
    }
    
    /* Optional: Hide brand name on mobile */
    /* .brand-name {
        display: none;
    } */
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px;
    }
    
    .footer-logo {
        height: 25px;
    }
}
/* Header Logo Styles */
.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-name {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}

/* Mobile menu styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* Responsive design */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
} 
/* --- FIXED HEADER STYLES --- */

header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Reduced padding for cleaner modern header */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0; /* was 20px */
    max-width: 1200px;
    margin: auto;
}

/* Clean, unified logo size */
.logo-img {
    height: 38px; /* consistent */
    width: auto;
    display: block;
}

/* Navigation alignment */
.nav-links {
    display: flex;
    gap: 26px;
    list-style: none;
}

.nav-links li {
    margin: 0; /* removed extra spacing */
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.25s;
    font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

/* CTA Alignment in header */
.nav-actions .cta-button {
    padding: 10px 18px;
    border-radius: 6px;
}

/* Fix hero being pushed down by fixed header */
.hero {
    margin-top: 90px; /* header height compensation */
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .header-container {
        padding: 10px 0;
    }

    .logo-img {
        height: 32px;
    }
}
/* FIXED, COMPACT, CLEAN HEADER */
header {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.navbar.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px; /* clean header spacing */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-img {
    height: 40px;
    width: auto;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 26px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: 0.25s;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--secondary);
}

/* CTA button */
.nav-actions .cta-button {
    padding: 10px 18px;
}

/* Push hero section down below header */
.hero {
    margin-top: 90px;
}
/* Clean Footer Layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 35px 0 40px;
}



.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-col a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-logo-img {
    height: 45px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    background: #f2f2f2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 18px;
}

.social-icons a:hover {
    background: var(--secondary);
    color: #fff;
}

/* Copyright Section */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #e0e0e0;
}

/* Copyright link styling */
.footer-bottom a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
/* FIXED CLEAN FOOTER */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-col a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-logo-img {
    height: 48px;
    margin-bottom: 15px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    background: #f2f2f2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--secondary);
    color: #fff;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    padding: 18px 0;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom a {
    color: var(--secondary);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    padding: 40px 0 50px;
}
footer .footer-container {
    max-width: 1500px !important;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 40px;
    margin: 0 auto;
    padding: 40px 0 50px;
}
footer .footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; /* Fix spacing balance */
    gap: 40px; /* Less spacing between columns */
    padding: 50px 40px; /* Add padding left & right */
    max-width: 1400px; /* Prevents huge stretched footer */
    margin: 0 auto;
}

footer .footer-col:first-child {
    padding-left: 20px; /* Fix logo sticking to left edge */
}

footer .footer-col h3 {
    margin-bottom: 18px;
}

footer .footer-col p,
footer .footer-col a {
    font-size: 16px;
    line-height: 1.5;
}
/* Fix CTA buttons on contact page */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

/* Ensure buttons are same size */
.hero-buttons a {
    min-width: 200px;
    text-align: center;
}
.cta-section .container {
    text-align: center;
}

.cta-section .hero-buttons {
    justify-content: center;
}


