:root {
    --primary-color: #0066FF;
    --primary-light: #4D94FF;
    --primary-dark: #0047B3;
    --navy-dark: #0A1128;
    --text-primary: #0A1128;
    --text-secondary: #4A5568;
    --bg-color: #FFFFFF;
    --accent-bg: #F8FAFF;
    --white: #FFFFFF;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --max-width: 1400px;
    --header-height: 90px;
    --radius-lg: 32px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    border-color: white;
    color: var(--navy-dark);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

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

/* Header */
header {
    height: var(--header-height);
    background: rgba(10, 17, 40, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 17, 40, 0.95);
    height: 70px;
}

header .logo,
header nav a {
    color: white;
}

header nav a:hover,
header nav a.active {
    color: var(--primary-light);
}

/* Header Specific Button Overrides */
header .btn-secondary {
    border-color: white;
    color: white;
}

header .btn-secondary:hover {
    background: white;
    border-color: white;
    color: var(--navy-dark);
}

header.scrolled .logo,
header.scrolled nav a {
    color: white;
}

header.scrolled .btn-secondary {
    border-color: white;
    color: white;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 85px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
}

nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-secondary);
}

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

/* Dropdown */
.dropdown {
    position: relative;
    padding: 10px 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    transform: translateY(20px);
    background: var(--navy-dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: white !important;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light) !important;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--navy-dark);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content.centered {
    max-width: 900px;
    margin: 0 auto;
    color: white;
    padding: 20px;
}

.hero-content.centered h1 {
    font-size: clamp(32px, 5vw, 56px);
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content.centered h1 span {
    color: var(--primary-light);
}

.hero-divider {
    width: 60px;
    height: 4px;
    background: white;
    margin: 20px auto 30px;
    border-radius: 2px;
}

.hero-content.centered p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 20;
    display: flex;
    gap: 15px;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(5px);
}

.slider-controls button:hover {
    background: white;
    border-color: white;
    color: var(--navy-dark);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 100;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary-light);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 24px;
    margin-top: 60px;
}

.bento-item {
    background: var(--accent-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.bento-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.bento-item h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.bento-item p {
    color: var(--text-secondary);
    font-size: 17px;
}

.col-12 {
    grid-column: span 12;
}

.col-8 {
    grid-column: span 8;
}

.col-4 {
    grid-column: span 4;
}

.col-6 {
    grid-column: span 6;
}

/* Inner Page Hero */
.inner-hero {
    padding: 180px 0 100px;
    background-color: var(--accent-bg);
    text-align: center;
}

.inner-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.inner-hero p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Image Gallery Customization */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.image-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.image-gallery img:hover {
    transform: scale(1.03);
}

/* Table styling for premium look */
.table-container {
    margin: 40px 0;
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

th {
    background: var(--primary-dark);
    color: white;
    text-align: left;
    padding: 20px;
    font-weight: 700;
}

td {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
}

tr:last-child td {
    border-bottom: none;
}

/* Statistics */
.stats {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.stat-item h2 {
    font-size: 48px;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 100px 0 50px;
}

footer .footer-logo {
    display: block;
    margin-bottom: 30px;
}

footer .footer-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Keep it white/light for the dark footer if needed, but let's see */
}

footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

footer h4 {
    color: white;
    margin-bottom: 25px;
}

footer li {
    margin-bottom: 12px;
}

footer a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

.footer-contact-info {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    color: white;
    font-weight: 600;
}

.footer-contact-info span {
    color: var(--primary-light);
}

/* Contact Page Styles */
.contact-hero {
    height: 400px;
    background: linear-gradient(rgba(10, 17, 40, 0.7), rgba(10, 17, 40, 0.7)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&q=80&w=2000') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding-top: var(--header-height);
}

.contact-hero h1 {
    color: white;
    font-size: 56px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 80px;
}

.contact-map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    box-shadow: var(--shadow-soft);
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}



/* Responsive */
@media (max-width: 1024px) {

    .col-8,
    .col-4 {
        grid-column: span 6;
    }
}

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

    .hero h1 {
        font-size: 42px;
    }

    .col-8,
    .col-4,
    .col-6 {
        grid-column: span 12;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    nav ul {
        display: none;
    }

    footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}