:root {
    /* Logo Palette Extraction */
    --primary-color: #2d89ef; /* Strong Blue */
    --primary-gradient: linear-gradient(135deg, #2d89ef 0%, #00a8e8 100%);
    --secondary-color: #1e293b;
    --accent-color: #a0aec0; /* Silver/Grey */
    --bg-color: #0b1120; /* Very dark blue/black */
    --text-color: #e2e8f0;
    --card-bg: #162032;
    --heading-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --body-font: 'Inter', system-ui, -apple-system, sans-serif;
    --border-color: rgba(45, 137, 239, 0.2);
}

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

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 0%, #1a2c4e 0%, transparent 70%);
}

header {
    background: rgba(11, 17, 32, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.logo-container {
    margin-bottom: 1.5rem;
    display: inline-block;
    /* Removed fixed dimensions and overflow hidden since logo is now clean */
}

.logo {
    max-width: 180px;
    height: auto;
    display: block;
    /* Removed scaling and cropping hacks */
    filter: drop-shadow(0 0 15px rgba(45, 137, 239, 0.4)); /* Soft glow */
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #94a3b8;
    font-weight: 300;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-tagline {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: rgba(45, 137, 239, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    color: #63b3ed;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    box-shadow: 0 0 15px rgba(45, 137, 239, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

section {
    margin-bottom: 6rem;
}

h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    font-size: 1.1rem;
    text-align: justify;
}

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

.card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: var(--primary-color);
}

.card:hover::before {
    opacity: 1;
}

.card h4 {
    color: #63b3ed;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: #90cdf4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.service-link:hover {
    color: #fff;
    text-decoration: underline;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.mv-box h3 {
    color: #63b3ed;
    margin-top: 0;
    border-left: none;
    padding-left: 0;
    text-align: center;
    font-size: 1.8rem;
}

.mv-box p {
    text-align: justify;
}

.sectors-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.sectors-list li {
    background: rgba(255,255,255,0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    font-weight: 500;
    transition: background 0.3s;
    text-align: justify;
}

.sectors-list li:hover {
    background: rgba(255,255,255,0.06);
}

.contact-section {
    text-align: center;
    background: linear-gradient(135deg, #162032 0%, #0b1120 100%);
    padding: 5rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    position: relative;
}

.contact-section p {
    text-align: center;
}

.contact-btn {
    display: inline-block;
    background: var(--primary-gradient);
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(45, 137, 239, 0.4);
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(45, 137, 239, 0.6);
}

footer {
    text-align: center;
    padding: 3rem;
    color: #64748b;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #080c17;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
