:root {
    --primary-color: #01519d;
    --secondary-color: #4588C8;
    --text-dark: #333;
    --text-gray: #616161;
    --text-light: #7a7a7a;
    --bg-light: #f4faff;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

.font-space-grotesk {
    font-family: 'Space Grotesk', sans-serif;
}

/* Header/Navigation */
.navbar {
    padding: 1.5rem 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.btn-contact-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: -0.66px;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-contact-header:hover {
    background-color: #013a70;
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    position: relative;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-breadcrumb .diamond {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    transform: rotate(45deg);
}

.hero-breadcrumb span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: uppercase;
}

.hero-title {
    font-size: 51px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1.53px;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-gray);
    letter-spacing: -0.66px;
}

.hero-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.12);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: white;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 85px;
    font-weight: 500;
    letter-spacing: -2.55px;
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 24px;
    color: var(--text-light);
    letter-spacing: -0.72px;
    margin-top: 20px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-image-container {
    position: relative;
    margin-bottom: 40px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.section-title {
    font-size: 51px;
    font-weight: 600;
    letter-spacing: -1.53px;
    margin-bottom: 30px;
}

.section-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-gray);
    letter-spacing: -0.66px;
    margin-bottom: 20px;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background-color: white;
}

.mission-vision-card {
    margin-bottom: 60px;
}

.mission-vision-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Partner Logos */
.partners-section {
    padding: 40px 0;
    background-color: white;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    overflow: hidden;
}

.partner-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 140px;
}

.partner-logo {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Timeline Section */
.timeline-section {
    background-color: var(--primary-color);
    padding: 100px 0;
    color: white;
    position: relative;
}

.timeline-title {
    font-size: 51px;
    font-weight: 600;
    letter-spacing: -1.53px;
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    padding-left: 80px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-bottom: 60px;
    /* border-bottom: 1px solid var(--secondary-color); */
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-dot {
    position: absolute;
    left: -75px;
    top: 5px;
    width: 22px;
    height: 22px;
    border: 1px solid white;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.timeline-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: -1.05px;
    margin-bottom: 10px;
}

.timeline-subtitle {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #a3cdf5;
    margin-bottom: 15px;
}

.timeline-heading {
    font-size: 35px;
    font-weight: 600;
    letter-spacing: -1.05px;
    margin-bottom: 20px;
}

.timeline-text {
    font-size: 22px;
    line-height: 1.8;
    color: #a6caec;
}

/* Clients Section */
.clients-section {
    padding: 100px 0 60px;
    background-color: white;
}

.client-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.client-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.client-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Team Section */
.team-section {
    padding: 80px 0 100px;
    background-color: white;
}

.team-hero {
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 60px;
    color: white;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.team-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.team-role {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #57a3ec;
    margin-bottom: 10px;
}

.team-name {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
}

.team-quote {
    font-size: 22px;
    line-height: 1.6;
    color: #c2d7ec;
    font-style: italic;
}

.team-grid-item {
    margin-bottom: 20px;
}

.team-member-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.team-member-image:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    padding: 80px 0 40px;
}

.footer-logo {
    height: 120px;
    margin-bottom: 20px;
}

.footer-brand-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-heading {
    font-size: 27px;
    font-weight: 700;
    letter-spacing: -0.81px;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 23px;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-social a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.75px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--secondary-color);
}

.footer-copyright {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.63px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {

    .hero-title,
    .section-title,
    .timeline-title {
        font-size: 36px;
    }

    .stat-number {
        font-size: 60px;
    }

    .hero-description,
    .section-text,
    .timeline-text {
        font-size: 18px;
    }

    .timeline {
        padding-left: 50px;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}














.font-space-grotesk {
    font-family: 'Space Grotesk', sans-serif;
}

/* Header/Navigation */
.navbar {
    padding: 1.5rem 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    font-size: 21px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 20px;
    transition: color 0.3s ease;
}
@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 16px;
        margin: 0;
    }
    a.nav-link {
        margin: 0;
        padding: 0;
    }
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.btn-contact-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: -0.66px;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-contact-header:hover {
    background-color: #013a70;
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 40px 0 30px;
    position: relative;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-breadcrumb .diamond {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    transform: rotate(45deg);
}

.hero-breadcrumb span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: uppercase;
}

.hero-title {
    font-size: 51px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1.53px;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-gray);
    letter-spacing: -0.66px;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

/* Service Section */
.service-section {
    padding: 80px 0;
}

.service-section.bg-gray {
    background-color: var(--bg-gray);
}

.service-number {
    font-size: 35.891px;
    font-weight: 600;
    letter-spacing: -1.0767px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-title {
    font-size: 35.891px;
    font-weight: 600;
    letter-spacing: -1.0767px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.service-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-gray);
    letter-spacing: -0.66px;
    margin-bottom: 20px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-list {
    list-style: disc;
    padding-left: 33px;
}

.service-list li {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-gray);
    letter-spacing: -0.66px;
    margin-bottom: 15px;
}

/* Additional Services Grid */
.additional-services-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.service-card {
    background: white;
    padding: 40px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-radius: 5px;
    min-height: 280px;
}

.service-card:first-child {
    background: var(--primary-color);
    color: white;
}

.service-card:first-child .service-card-title {
    color: white;
}

.service-card:first-child .service-card-text {
    color: white;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.78px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-card-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-gray);
    letter-spacing: -0.66px;
}

.service-card-image {
    width: 100%;
    height: 100%;
    min-height: 237px;
    object-fit: cover;
    border-radius: 5px;
}

/* Core Services */
.core-services {
    padding: 80px 0;
}

.core-service-item {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.core-service-item:hover {
    transform: translateY(-10px);
}

.core-service-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.78px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.core-service-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-gray);
    letter-spacing: -0.66px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    font-size: 51px;
    font-weight: 600;
    letter-spacing: -1.53px;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-gray);
    letter-spacing: -0.6px;
    text-align: center;
    margin-bottom: 60px;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-label {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.form-control {
    border: none;
    border-bottom: 1px solid #aeaeae;
    border-radius: 0;
    padding: 10px 0;
    font-size: 18px;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--primary-color);
    background: transparent;
}

.form-select {
    border: none;
    border-bottom: 1px solid #aeaeae;
    border-radius: 0;
    padding: 10px 0;
    font-size: 18px;
    background: transparent;
}

.form-select:focus {
    box-shadow: none;
    border-bottom-color: var(--primary-color);
}

textarea.form-control {
    min-height: 80px;
    resize: vertical;
}

.btn-enquire {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: -0.66px;
    border: none;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-enquire:hover {
    background-color: #013a70;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 81, 157, 0.3);
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    padding: 80px 0 40px;
}

.footer-logo {
    height: 120px;
    margin-bottom: 20px;
}

.footer-brand-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-heading {
    font-size: 27px;
    font-weight: 700;
    letter-spacing: -0.81px;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 23px;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-social a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.75px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--secondary-color);
}

.footer-copyright {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.63px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile responsive */
@media (max-width: 768px) {

    .hero-title,
    .section-title,
    .service-title {
        font-size: 36px;
    }

    .service-number {
        font-size: 28px;
    }

    .hero-description,
    .service-text,
    .service-card-text,
    .core-service-text {
        font-size: 18px;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }

    .hero-image {
        height: 300px;
        margin-top: 30px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Divider */
.divider {
    border-top: 1px solid #dedede;
    margin: 60px 0;
}