/*=========================================
Page Banner
=========================================*/
.page-banner {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark gradient overlay - stronger at bottom for text legibility */

.banner-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.75) 100%);
}

/*=========================================
Content
=========================================*/

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    text-align: center;
    padding: 0 40px 60px;
}

.banner-content h1 {
    font-family: "Arimo", sans-serif;
    font-size: 68px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
    max-width: 1100px;
}

.banner-content p {
    font-size: 24px;
    font-weight: 400;
    color: #f0f0f0;
    line-height: 1.5;
    max-width: 800px;
}


/*=========================================
Compliance Section
=========================================*/

.compliance-section {
    padding: 50px 0;
    background: #ffffff;
}

.compliance-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

/*=========================================
Left
=========================================*/

.compliance-content {
    width: 44%;
}

.compliance-content h2 {
    font-family: "Arimo", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #1f1f1f;
    line-height: 1.2;
    margin-bottom: 24px;
}

.compliance-content p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 16px;
}

.compliance-content p:last-child {
    margin-bottom: 0;
}

/*=========================================
Right
=========================================*/

.compliance-image {
    width: 54%;
    border-radius: 16px;
    overflow: hidden;
}

.compliance-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/*=========================================
Compliance Animation
=========================================*/

/* Left content - slide in from left */
.compliance-content {
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 1s ease, opacity 1s ease;
}

.compliance-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Right image - zoom out effect */
.compliance-image {
    opacity: 0;
    transition: opacity 1s ease;
}

.compliance-image.animate-in {
    opacity: 1;
}

.compliance-image img {
    transform: scale(1.4);
    transition: transform 1.2s ease;
}

.compliance-image.animate-in img {
    transform: scale(1);
}

/* EXPERIANCE SECTION */
/*=========================================
Stats Section
=========================================*/

.stats-section {
    padding: 70px 0;
    background: linear-gradient(90deg, #7b3c39, #21367d);
}

.stats-section .container {
    max-width: 1500px;
    margin: auto;
    padding: 0 100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/*=========================================
Item
=========================================*/

.stat-item {
    text-align: left;
}

.stat-item h2 {
    font-family: "Arimo", sans-serif;
    font-size: 62px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    margin-bottom: 14px;
}

.stat-item p {
    font-size: 20px;
    color: #f0f0f0;
    font-weight: 400;
}

/* VISION /MISSION */
/*=========================================
Mission, Vision & Values
=========================================*/

.mission-section {
    padding: 40px 0;
    background: #fff;
}

.mission-section .container {
    max-width: 1500px;
    margin: auto;
    padding: 0 40px;
}

/*=========================================
Heading
=========================================*/

.mission-heading {
    text-align: center;
    margin-bottom: 60px;
}

.mission-heading h2 {
    font-family: "Arimo", sans-serif;
    font-size: 62px;
    font-weight: 400;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.1;
}

.mission-heading p {
    max-width: 780px;
    margin: auto;
    font-size: 22px;
    line-height: 1.5;
    color: #555;
}

/*=========================================
Grid
=========================================*/

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/*=========================================
Card
=========================================*/

.mission-card {
    border: 1.5px solid #e2e2e2;
    border-radius: 18px;
    padding: 45px 40px;
}

.mission-card i {
    font-size: 56px;
    background: linear-gradient(135deg, #7b3c39, #21367d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    display: inline-block;
}

.mission-card h3 {
    font-size: 26px;
    font-weight: 500;
    color: #222;
    margin-bottom: 16px;
}

.mission-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

/*=========================================
Team Section
=========================================*/

.team-section {
    padding: 10px 0;
    background: #fff;
}

.team-section .container {
    max-width: 1500px;
    margin: auto;
    padding: 0 40px;
}

/*=========================================
Heading
=========================================*/

.team-heading {
    text-align: center;
    margin-bottom: 30px;
}

.team-heading h2 {
    font-family: "Arimo", sans-serif;
    font-size: 62px;
    font-weight: 400;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.1;
}

.team-heading p {
    font-size: 24px;
    color: #555;
}

/*=========================================
Grid
=========================================*/

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/*=========================================
Card
=========================================*/

.team-card {
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 250px;

}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*=========================================
Info
=========================================*/

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 14px;
}

.team-info p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}