:root {
    --primary: #0087D2;
    --primary-light: #48b2ef;
    --primary-dark: #005f94;
    --secondary: #D32F2F;
    --secondary-light: #FF5252;
    --secondary-gradient: linear-gradient(135deg, #FF5252 0%, #D32F2F 100%);
    --blend-gradient: linear-gradient(135deg, #0087D2 0%, #D32F2F 100%);
    --bg-light: #ffffff;
    --bg-soft: #f8fbff;
    --bg-dark: #0a1118;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.nav-logo {
    font-family: 'Outfit', sans-serif;
}

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

/* Navbar Style */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 150px;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 45px;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--primary-dark);
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 5px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 100;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 135, 210, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 150px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 25px;
    font-weight: 500;
    color: #0c1c2c;
}

.text-gradient {
    background: var(--primary-dark);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 135, 210, 0.15);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-image-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;

    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Wave Dividers */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 120px;
}

.wave-divider .shape-fill {
    fill: #0c1c2c;
}

.wave-divider .heroShape {
    fill: #0c1c2c;
}

/* About Section */
.about {
    padding: 120px 0;
    position: relative;
    background-color: #0c1c2c;
}

.grid-2-wide {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-subtitle {
    display: block;
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.about p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 30px;
}



.about .about-h2 {
    color: var(--white);
}

.about h2 {
    color: var(--primary);
}

/* About Images Grid */
.about-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.about-img-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 1px solid var(--white);
    border-right: 1px solid var(--white);
}

.about-img-item:hover {
    transform: scale(1.05);
}



.stats-card-overlay .number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stats-card-overlay .label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.directors-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.director-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

.director-card {
    background: linear-gradient(#ffffff41, #ffffff00);
    backdrop-filter: blur(10px);
    padding: 25px;

    border-top: 1px solid var(--white);
    border-left: 1px solid var(--white);
    transition: var(--transition);
    color: var(--white);
}

.director-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.director-card strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.director-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 150px 0;
    background: #0c1c2c;
    position: relative;
    color: var(--white);
}

.wave-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider-top svg {
    width: calc(150% + 1.3px);
    height: 100px;
}

.wave-divider-top .shape-fill {
    fill: #0c1c2c;
}

.wave-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider-bottom svg {
    width: calc(150% + 1.3px);
    height: 100px;
}

.wave-divider-bottom .shape-fill {
    fill: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.white-text {
    color: var(--white);
    font-size: 3rem;
}

.text-accent-alt {
    color: var(--primary-light);
}

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

.service-card {
    background: linear-gradient(#ffffff41, #ffffff00);
    backdrop-filter: blur(10px);
    padding: 0;
    /* Remove padding to let image flush to top */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    overflow: hidden;
    /* Ensure image corners are clipped if needed */
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-light);
}

.theme-red {
    border-top: 3px solid var(--secondary);
    border-left: 3px solid var(--secondary);
}

.theme-blue {
    border-top: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
}

.service-img-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.service-card-content {
    padding: 40px;
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.service-card p {
    color: #a0aec0;
    margin-bottom: 30px;
}

.service-list {
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #e2e8f0;
}

.service-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-light);
}

/* Clients Section */
.clients {
    padding: 120px 0;
}

.reference-box {
    margin-top: 40px;
    padding: 35px;
    background: var(--blend-gradient);
    color: var(--white);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 135, 210, 0.2);
}

.ref-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    display: block;
    margin-top: 15px;
}

.clients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    list-style: none;
}

.clients-grid li {
    background: var(--bg-soft);
    padding: 20px;
    border-radius: 15px;
    font-weight: 700;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 6px solid var(--primary);
    transition: var(--transition);
}

.clients-grid li i {
    color: var(--primary);
}

.clients-grid li:hover {
    transform: translateX(10px);
    background: #edf2f7;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-soft);
}

.contact-card {
    background: var(--white);
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
    padding: 80px;
    margin-top: -180px;
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.sidebar-text {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 135, 210, 0.08);
    color: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-item:hover .icon-box {
    background: var(--primary);
    color: var(--white);
    transform: rotate(10deg);
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.info-content p {
    color: var(--text-muted);
    font-weight: 500;
}

.info-content a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--secondary);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #f8fbff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #edf2f7;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(0, 135, 210, 0.1);
}

.btn-block {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.form-status {
    text-align: center;
    font-weight: 600;
    margin-top: 15px;
    min-height: 24px;
}

.form-status.success {
    color: #2f855a;
}

.form-status.error {
    color: var(--secondary);
}

/* Footer */
.footer {
    background: #050a0f;
    color: var(--white);
    padding: 100px 0 50px;
}

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

.footer-brand img {
    height: 70px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 40px;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-bottom {
    font-size: 0.95rem;
    color: #4a5568;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-right {
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-image-circle {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 15px 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        gap: 30px;
    }

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

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: var(--text-dark);
    }

    .hero-image-circle {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .about-images-grid {
        order: 2;
        margin-top: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .contact-form {
        padding: 30px 20px;
    }

    .contact-card {
        margin-top: 0;
        padding: 60px 20px;
    }
}

/* Mobile Toggle Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}