:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;

    --heading: #172033;
    --text: #475569;
    --muted: #64748b;

    --white: #ffffff;
    --light: #f8fafc;
    --border: #e2e8f0;

    --dark: #111827;
}


/* ==========================================
   GLOBAL
========================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        Arial,
        sans-serif;

    color: var(--text);

    background: #ffffff;
}

img {
    display: block;

    max-width: 100%;
}

a {
    text-decoration: none;
}


/* ==========================================
   NAVBAR
========================================== */

.navbar {
    min-height: 74px;

    padding: 12px 0;

    background: rgba(255,255,255,.96);

    border-bottom: 1px solid var(--border);

    box-shadow:
        0 3px 18px rgba(15,23,42,.05);

    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--heading);

    font-size: 18px;

    font-weight: 700;
}

.navbar-brand:hover {
    color: var(--heading);
}

.company-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 1px 1px 10px #c4c3c3;

    object-fit: contain;
}

.nav-link {
    padding: 9px 14px !important;

    color: var(--text) !important;

    font-size: 13px;

    font-weight: 500;

    border-radius: 6px;

    transition: .25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;

    background: var(--primary-light);
}

.navbar-actions {
    display: flex;

    align-items: center;

    gap: 8px;
}


/* ==========================================
   BUTTON
========================================== */

.btn {
    min-height: 44px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 10px 18px;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 600;

    transition: .25s ease;
}

.btn-primary {
    color: #ffffff;

    background: var(--primary);

    border-color: var(--primary);
}

.btn-primary:hover {
    color: #ffffff;

    background: var(--primary-dark);

    border-color: var(--primary-dark);

    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary);

    background: #ffffff;

    border: 1px solid var(--primary);
}

.btn-outline-primary:hover {
    color: #ffffff;

    background: var(--primary);

    border-color: var(--primary);
}


/* ==========================================
   HERO
========================================== */

.about-hero {
    padding: 155px 0 90px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f8fbff
        );
}

.hero-content {
    animation: fadeUp .7s ease both;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    padding: 7px 12px;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 5px;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .6px;
}

.hero-content h1 {
    max-width: 600px;

    margin: 0 0 20px;

    color: var(--heading);

    font-size: clamp(38px,5vw,58px);

    font-weight: 800;

    line-height: 1.08;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    max-width: 560px;

    margin: 0;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}

.hero-image {
    overflow: hidden;

    border-radius: 12px;

    box-shadow:
        0 15px 35px rgba(15,23,42,.10);

    animation: fadeUp .8s ease both;
}

.hero-image img {
    width: 100%;

    height: 430px;

    object-fit: cover;

    transition: .5s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}


/* ==========================================
   COMPANY
========================================== */

.company-section {
    padding: 90px 0;

    background: #ffffff;
}

.company-image {
    overflow: hidden;

    border-radius: 10px;

    box-shadow:
        0 12px 30px rgba(15,23,42,.08);
}

.company-image img {
    width: 100%;

    height: 420px;

    object-fit: cover;

    transition: .5s ease;
}

.company-image:hover img {
    transform: scale(1.03);
}

.section-label {
    display: inline-block;

    margin-bottom: 10px;

    padding: 6px 11px;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 5px;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;
}

.company-content h2 {
    margin: 5px 0 18px;

    color: var(--heading);

    font-size: clamp(30px,4vw,42px);

    font-weight: 700;

    line-height: 1.2;
}

.company-content h2 span {
    color: var(--primary);
}

.company-content p {
    margin-bottom: 13px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.8;
}


/* ==========================================
   SECTION HEADING
========================================== */

.section-heading {
    max-width: 650px;

    margin: 0 auto 42px;

    text-align: center;
}

.section-heading h2 {
    margin: 0 0 12px;

    color: var(--heading);

    font-size: clamp(30px,4vw,42px);

    font-weight: 700;
}

.section-heading h2 span {
    color: var(--primary);
}

.section-heading p {
    margin: 0;

    color: var(--text);

    font-size: 13px;
}


/* ==========================================
   TEAM
========================================== */

.team-section,
.hr-section {
    padding: 90px 0;

    background: var(--light);
}

.hr-section {
    background: #ffffff;
}

.team-card {
    overflow: hidden;

    height: 100%;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 10px;

    box-shadow:
        0 5px 20px rgba(15,23,42,.05);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.team-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 14px 30px rgba(15,23,42,.10);
}

.team-image {
    overflow: hidden;

    background: #f1f5f9;
}

.team-image img {
    width: 100%;

    height: 500px;

    object-fit: cover;

    transition: .5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.03);
}

.team-content {
    padding: 18px 20px;

    text-align: center;
}

.team-content h3 {
    margin: 0 0 5px;

    color: var(--heading);

    font-size: 16px;

    font-weight: 700;
}

.team-content p {
    margin: 0;

    color: var(--primary);

    font-size: 11px;

    font-weight: 600;
}


/* ==========================================
   OFFICE GALLERY
========================================== */

/* .office-section {
    padding: 90px 0;

    background: var(--light);
}

.office-gallery {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;
}

.office-card {
    overflow: hidden;

    height: 260px;

    background: #ffffff;

    border-radius: 9px;

    box-shadow:
        0 5px 18px rgba(15,23,42,.06);
}

.office-card img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s ease;
}

.office-card:hover img {
    transform: scale(1.05);
} */


/* ==========================================
   FOOTER
========================================== */

.footer {
    padding: 55px 0 20px;

    color: #cbd5e1;

    background: var(--dark);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 40px;
}

.footer-brand {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 12px;

    color: #ffffff;

    font-size: 17px;

    font-weight: 700;
}

.footer-brand img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 1px 1px 10px #c4c3c3;

    object-fit: contain;
}

.footer-grid p {
    max-width: 320px;

    color: #94a3b8;

    font-size: 11px;

    line-height: 1.8;
}

.footer-grid h4 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 13px;
}

.footer-grid a {
    display: block;

    margin-bottom: 9px;

    color: #94a3b8;

    font-size: 11px;

    transition: .25s ease;
}

.footer-grid a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 40px;

    padding-top: 18px;

    border-top: 1px solid #1e293b;

    color: #64748b;

    font-size: 10px;

    text-align: center;
}


/* ==========================================
   ANIMATION
========================================== */

@keyframes fadeUp {

    from {
        opacity: 0;

        transform: translateY(18px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .about-hero {
        padding: 125px 0 70px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1,
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        max-width: 600px;

        margin: auto;
    }

    .navbar-actions {
        margin-top: 15px;

        justify-content: center;
    }

    .office-gallery {
        grid-template-columns:
            repeat(2,1fr);
    }

}


@media (max-width: 767px) {

    .about-hero {
        padding: 110px 0 65px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-image img {
        height: 300px;
    }

    .company-section,
    .team-section,
    .hr-section,
    .office-section {
        padding: 65px 0;
    }

    .company-image img {
        height: 300px;
    }

    .team-image img {
        height: 500px;
    }

    /* .office-gallery {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .office-card {
        height: 260px;
    } */

    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }

}


@media (max-width: 400px) {

    .company-logo {
        width: 60px;
        height: 60px;
    }

    .navbar-brand {
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

}





















/* =========================================================
   OFFICE SLIDER
========================================================= */

.office-section {
    padding: 90px 0;

    background: var(--light);

    overflow: hidden;
}


.office-slider {
    position: relative;

    max-width: 1050px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(15, 23, 42, 0.10);
}


.office-slide-image {
    width: 100%;

    height: 560px;

    overflow: hidden;

    background: #f1f5f9;
}


.office-slide-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.office-slider .carousel-control-prev,
.office-slider .carousel-control-next {
    width: 70px;

    opacity: 1;

    transition: 0.25s ease;
}


.slider-arrow {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--heading);

    background: rgba(255, 255, 255, 0.95);

    border-radius: 50%;

    box-shadow:
        0 5px 15px rgba(15, 23, 42, 0.12);

    transition: 0.25s ease;
}


.slider-arrow:hover {
    color: #ffffff;

    background: var(--primary);

    transform: scale(1.05);
}


.office-slider .carousel-control-prev:hover,
.office-slider .carousel-control-next:hover {
    opacity: 1;
}


/* =========================================================
   INDICATORS
========================================================= */

.office-slider .carousel-indicators {
    bottom: 15px;

    margin-bottom: 0;

    gap: 4px;
}


.office-slider .carousel-indicators button {
    width: 8px;
    height: 8px;

    margin: 0 3px;

    border: 0;

    border-radius: 50%;

    opacity: 0.7;

    background-color: #ffffff;

    transition:
        width 0.25s ease,
        border-radius 0.25s ease,
        opacity 0.25s ease;
}


.office-slider .carousel-indicators button.active {
    width: 24px;

    border-radius: 10px;

    opacity: 1;
}


/* =========================================================
   SLIDE ANIMATION
========================================================= */

.office-slider .carousel-item {
    transition:
        transform 0.7s ease-in-out;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .office-slide-image {
        height: 450px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .office-section {
        padding: 65px 0;
    }


    .office-slider {
        border-radius: 9px;
    }


    .office-slide-image {
        height: 330px;
    }


    .office-slider .carousel-control-prev,
    .office-slider .carousel-control-next {
        width: 55px;
    }


    .slider-arrow {
        width: 38px;
        height: 38px;

        font-size: 12px;
    }


    .office-slider .carousel-indicators {
        bottom: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .office-slide-image {
        height: 270px;
    }


    .slider-arrow {
        width: 34px;
        height: 34px;
    }

}