:root {
    --primary-color: #0054a6;
    --primary-dark: #003c75;
    --primary-light: #e5f0fa;
    --accent-color: #00a0d2;
    --text-color: #2c3e50;
    --secondary-text: #546e7a;
    --light-text: #ffffff;
    --background: #f9fbfd;
    --divider-color: #e0e6ed;
    --success-color: #34c759;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
    background-color: var(--background);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.file-date {
    background: #2253a01c;
    color: #2a518f;
    border-radius: 3px;
    padding: 1px 8px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: -35px;
    font-size: .85em;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
header {
    background-color: var(--light-text);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.pdf-icon {
    width: 25px;
    margin-right: 10px;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 80px;
    position: relative;
}

.left {
    position: absolute;
    left: 230px;
    bottom: 26px;
    color: var(--primary-color) !important;

}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: inline-block;
    margin-right: 12px;
}

.nav-items {
    display: flex;
    list-style: none;
}

.nav-items li {
    margin-left: 3rem;
}

.nav-items a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-items a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background-color: var(--primary-color);
    color: var(--light-text) !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s !important;
}

.nav-cta:hover {
    background-color: var(--primary-dark);
    color: var(--light-text) !important;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--light-text);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    background: url('/api/placeholder/1200/600') center/cover no-repeat;
    opacity: 0.05;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    text-align: justify;
}

a.active {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--light-text);
    color: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* About Section */
section {
    padding: 100px 0;
}

section:nth-child(even) {
    background-color: white;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--secondary-text);
    font-size: 1.1rem;
}

/* Services */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.service-card {
    flex-basis: calc(33.33% - 30px);
    margin-bottom: 40px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    border: 1px solid var(--divider-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 84, 166, 0.12);
    border-color: rgba(0, 84, 166, 0.12);
}


.modal-close-btn {
    padding: 7px 16px;
    border-radius: 3px;
    background: #ececec;
    border: 1px solid grey;
    margin-top: 15px;
    cursor: pointer;
    font-size: .85em;
    letter-spacing: .05rem;
    float: right;
}

.modal-close-btn:hover {
    background: #dfdddd;
}

.modal-submit-btn {
    padding: 7px 16px;
    border-radius: 3px;
    background: #155298;
    border: 1px solid grey;
    margin-top: 15px;
    cursor: pointer;
    color: white;
    font-size: .85em;
    letter-spacing: .05rem;
    float: right;
    margin-left: 10px;

}

.modal-submit-btn:hover {
    background: #104582;

}



.service-icon {
    height: 60px;
    width: 60px;
    background-color: var(--primary-light);
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon span {
    color: var(--primary-color);
    font-size: 24px;
}

.card-content {
    padding: 40px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Stats Section */
.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    flex-basis: calc(25% - 30px);
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--secondary-text);
    font-size: 1.1rem;
}

/* Team Section */
.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.team-member {
    flex-basis: calc(25% - 30px);
    margin-bottom: 40px;
    text-align: center;
}

.member-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: var(--primary-light);
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.member-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 6px solid rgba(0, 84, 166, 0.1);
    border-radius: 50%;
}

.member-name {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.4rem;
}

.member-title {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    margin: 0 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f9fbfd 0%, #e5f0fa 100%);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.contact-info {
    flex-basis: 35%;
    background-color: var(--primary-color);
    color: white;
    padding: 50px;
    position: relative;
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 1.6rem;
}

.contact-detail {
    display: flex;
    align-items: center;
}

.pin {
    position: relative;
    bottom: 15px;
}

.contact-icon {
    margin-right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    flex-basis: 65%;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    display: flex;
    gap: 20px;
}

.form-control .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

input,
textarea,
select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--divider-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    color: var(--text-color);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 84, 166, 0.12);
}

textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Clients Section */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.client-logo {
    flex-basis: calc(20% - 30px);
    height: 100px;
    margin: 15px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0.7;
    transition: all 0.3s;
}

.client-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.logo-link {
    text-decoration: none !important;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--light-text);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-column {
    flex-basis: 20%;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.mail-link {
    color: white;
    text-decoration: none;
}

.mail-link:hover {
    text-decoration: underline;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-column p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column.about {
    flex-basis: 35%;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.shareholders-header {
    height: auto !important;
}

.footer-links a {
    color: var(--light-text);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Burger menu styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.burger-bar {
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* Mobile navigation styles */

@media screen and (max-width: 940px) {

    .burger-menu {
        display: flex;
        z-index: 101;
    }

    .nav-items {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: all 0.5s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
        padding: 50px 0;
    }

    .nav-items.active {
        right: 0;
    }

    .nav-items li {
        margin: 15px 0;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }

    .overlay.active {
        display: block;
    }

    /* Burger animation */
    .burger-menu.active .burger-bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .burger-menu.active .burger-bar:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hide-on-mobile {
        display: none;
    }

    .li-left {
        margin-left: 0 !important;
    }

    .left {
        position: relative;
        top: 0;
        left: 0;

    }

    .hide-on-mobile {
        display: none;
    }

}