/* ======= Typography style ======= */

:root {
    --blue: #003366;
    --light-blue: rgba(217, 232, 247, 0.2);
    --gray: #e1d9d2;
    --white: #FFF;
    --black: #101010;
    --light-black: #1B1B1B;
    --bg-white: #F8F8F8;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}











/* BreadCrumb Section */
.breadcrumb-box {
    position: relative;
    background: url('../img/12.jpg') center center / cover no-repeat;
    width: 100%;
    padding: clamp(4rem, 10vw, 8rem) 1rem;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.breadcrumb-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.breadcrumb-content {
    max-width: 800px;
}


.breadcrumb-content>* {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    text-transform: uppercase;
    font-size: clamp(35px, 6vw, 55px);
}

.breadcrumb-content p {
    text-transform: uppercase;
    font-size: 18px;
    color: var(--white);
}

.breadcrumb-content p a {
    text-transform: uppercase;
    font-size: 18px;
    text-decoration: none;
    color: var(--white);
}





@media (max-width:945px) {
    .breadcrumb-content {
        max-width: 800px;
        margin-top: 40px;
    }
}

/* BreadCrumb Section */


















/* ABOUT SERVICE SECTION */
.about-service-list {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 10px 5px;
}

.about-service-list img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    padding: 25px;
}

.service-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.service-link {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.service-link a {
    color: var(--blue);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
}


/* Hover effects */
.about-service-list:hover img {
    transform: scale(1.08);
}

.about-service-list:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}






.hero-intro-section {
    background-color: var(--light-blue);
}


.intro {
    display: flex;
    flex-wrap: wrap;
}

.intro-left {
    padding: 5px;
}

.intro-right-top,
.intro-right-bottom {
    padding: 5px;
}

.intro img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    /* optional polish */
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .intro-left,
    .intro-right {
        flex: 1 1 100%;
    }
}

/* ABOUT SERVICE SECTION */

























/* ================= MISSION SERVICE SECTION ================= */
.mission-section {
    background: var(--white);
    padding: 64px 16px;
}



/* Cards */
.mission-card {
    height: 100%;
    display: flex;
    flex-direction: column;

    border-radius: 20px;
    padding: 24px;
    background: linear-gradient(135deg,
            #00509e 0%,
            #003366 40%,
            #001a33 100%);

    color: var(--bg-white);

    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px,
        rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;

    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.mission-card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}


.mission-icon img {
    width: 60px;
    height: 60px;
}


/* Text */
.mission-card-title {
    color: var(--white);
    font-size: 25px;
    font-weight: 600;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.mission-card-text {
    color: var(--white);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* ================= MISSION SERVICE SECTION ================= */





















/* ================= WHY CHOOSE US SECTION ================= */
.service-process-step {
    padding: 20px;
}


.service-process-step-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 0px;
}




.service-process-step-icon {
    padding: 10px;
    width: 80px;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--light-black);
    text-align: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.service-process-step img {
    text-align: center;
    width: 50px;
    height: 50px;
}

.service-process-step h5 {
    text-align: center;
}

.service-process-step p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 0px;
}

.botton-link {
    text-align: center;
    padding-top: 20px;
}

.service-process-step-content:hover .service-process-step-icon {
    background-color: var(--blue);
}


@media (max-width:767px) {
    .content {
        text-align: center;
    }
}

/* ================= WHY CHOOSE US SECTION ================= */