.main-menu__list li a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease;
}

.main-menu__list li.active>a {
    color: #b89867 !important;
}

.main-menu__list li:hover>a {
    color: #b89867 !important;
}

.main-menu__list li a::after {
    display: none !important;
}

.about-three__left {
    margin-right: 0;
}

.services-two__content {
    margin-left: 0;
    border-radius: 0;
}

.page-header__inner {
    padding: 70px 0;
}

.services-two__carousel .owl-stage {
    display: flex;
}

.services-two__carousel .owl-stage .owl-item {
    display: flex;
}

.services-two__carousel .item {
    width: 100%;
}

.services-two__single {
    margin-bottom: 70px;
}

.counter-two {
    padding: 50px 0;
}

.blog-one__content {
    padding-left: 0;
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
    display: none;
}

.nice-select {
    height: 60px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid #e6e6e8 !important;
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    line-height: 57px;
}

.list {
    width: 100%;
}

.google_map iframe {
    width: 100%;
}

.blog-details__user {
    width: inherit;
    border-radius: 5px;
    padding: 0 10px;
}


/* ===== Custom About Page Styles ===== */

/* Color Variables */
:root {
    --primary-color: #163355;
    --primary-light: #1e4a7a;
    --primary-dark: #0e2240;
    --accent-color: #b89867;
    --accent-light: #d4b896;
    --accent-dark: #9a7d4e;
    --soft-primary: rgba(22, 51, 85, 0.05);
    --soft-accent: rgba(184, 152, 103, 0.1);
    --light-bg: #f8f9fc;
    --cream-bg: #faf8f5;
    --gradient-primary: linear-gradient(135deg, #163355 0%, #1e4a7a 100%);
    --gradient-accent: linear-gradient(135deg, #b89867 0%, #d4b896 100%);
    --gradient-mixed: linear-gradient(135deg, #163355 0%, #b89867 100%);
}

/* ===== Who We Are Section ===== */
.who-we-are {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(22, 51, 85, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.who-we-are::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 152, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.who-we-are__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(184, 152, 103, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.who-we-are__badge i {
    font-size: 12px;
}

.who-we-are__title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.who-we-are__title span {
    color: var(--accent-color);
    position: relative;
}

.who-we-are__title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(184, 152, 103, 0.2);
    z-index: -1;
}

.who-we-are__text {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.who-we-are__text strong {
    color: var(--primary-color);
}

.who-we-are__image-wrapper {
    position: relative;
    padding: 20px;
}

.who-we-are__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(22, 51, 85, 0.2);
}

.who-we-are__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--accent-color);
    border-radius: 20px;
    transform: translate(15px, 15px);
    z-index: -1;
}

.who-we-are__image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.who-we-are__image:hover img {
    transform: scale(1.05);
}

.who-we-are__image-badge {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--accent-color);
}

.who-we-are__image-badge-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.who-we-are__image-badge-text h4 {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin: 0;
    line-height: 1;
}

.who-we-are__image-badge-text p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.floating-shape {
    position: absolute;
    z-index: -1;
}

.floating-shape-1 {
    top: 10%;
    right: 5%;
    width: 80px;
    height: 80px;
    border: 3px solid var(--soft-accent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-shape-2 {
    bottom: 15%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: var(--soft-accent);
    border-radius: 8px;
    animation: float 4s ease-in-out infinite reverse;
}

.floating-shape-3 {
    top: 30%;
    left: 3%;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ===== Philosophy Section ===== */
.philosophy-section {
    padding: 120px 0;
    background: var(--cream-bg);
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 5%;
    font-size: 400px;
    font-family: Georgia, serif;
    color: rgba(184, 152, 103, 0.08);
    line-height: 1;
}

.philosophy-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(22, 51, 85, 0.03) 0%, transparent 70%);
}

.philosophy__content {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.philosophy__icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(22, 51, 85, 0.3);
    position: relative;
}

.philosophy__icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px dashed var(--accent-color);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.philosophy__tagline {
    display: inline-block;
    background: var(--primary-color);
    color: var(--accent-light);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.philosophy__quote {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 30px;
}

.philosophy__quote span {
    color: var(--accent-color);
    font-style: italic;
}

.philosophy__text {
    font-size: 18px;
    color: #666;
    line-height: 1.9;
    max-width: 750px;
    margin: 0 auto;
}

.philosophy__divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 40px auto 0;
    border-radius: 2px;
}

/* ===== What We Do Section ===== */
.what-we-do {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-header__subtitle::before,
.section-header__subtitle::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.section-header__title {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-header__title span {
    color: var(--accent-color);
}

.section-header__desc {
    font-size: 17px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.what-we-do__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.what-we-do__card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.what-we-do__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.what-we-do__card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--soft-accent) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.what-we-do__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(22, 51, 85, 0.12);
    border-color: transparent;
}

.what-we-do__card:hover::before {
    transform: scaleX(1);
}

.what-we-do__card:hover::after {
    opacity: 1;
}

.what-we-do__card-icon {
    width: 90px;
    height: 90px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--primary-color);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.what-we-do__card:hover .what-we-do__card-icon {
    background: var(--gradient-primary);
    color: var(--accent-color);
    transform: rotateY(180deg);
    border-color: var(--accent-color);
}

.what-we-do__card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.what-we-do__card-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* ===== Who We Serve Section ===== */
.who-we-serve {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.who-we-serve::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(184,152,103,0.1)"/></svg>');
    background-size: 40px 40px;
}

.who-we-serve__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.who-we-serve__item {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

.who-we-serve__item:nth-child(1) {
    border-bottom-color: var(--primary-color);
}

.who-we-serve__item:nth-child(2) {
    border-bottom-color: var(--accent-color);
}

.who-we-serve__item:nth-child(3) {
    border-bottom-color: var(--primary-light);
}

.who-we-serve__item:nth-child(4) {
    border-bottom-color: var(--accent-dark);
}

.who-we-serve__item:nth-child(5) {
    border-bottom-color: var(--primary-color);
}

.who-we-serve__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(22, 51, 85, 0.15);
}

.who-we-serve__item-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 70px;
    font-weight: 900;
    color: rgba(22, 51, 85, 0.04);
    line-height: 1;
}

.who-we-serve__item-icon {
    width: 65px;
    height: 65px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.who-we-serve__item:nth-child(odd) .who-we-serve__item-icon {
    background: var(--gradient-primary);
}

.who-we-serve__item:nth-child(even) .who-we-serve__item-icon {
    background: var(--gradient-accent);
}

.who-we-serve__item-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.who-we-serve__item-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ===== FINACT Method Section ===== */
.finact-method {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.finact-method__timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.finact-method__timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
}

.finact-method__step {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.finact-method__step:last-child {
    margin-bottom: 0;
}

.finact-method__step:nth-child(even) {
    flex-direction: row-reverse;
}

.finact-method__step-content {
    width: 44%;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(22, 51, 85, 0.08);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.finact-method__step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(22, 51, 85, 0.12);
    border-color: var(--accent-light);
}

.finact-method__step:nth-child(odd) .finact-method__step-content {
    margin-right: auto;
    text-align: right;
}

.finact-method__step:nth-child(even) .finact-method__step-content {
    margin-left: auto;
    text-align: left;
}

.finact-method__step-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-color);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(22, 51, 85, 0.4);
    border: 4px solid #fff;
}

.finact-method__step:nth-child(even) .finact-method__step-number {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 10px 30px rgba(184, 152, 103, 0.4);
}

.finact-method__step-letter {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    display: block;
}

.finact-method__step:nth-child(even) .finact-method__step-letter {
    color: var(--primary-color);
}

.finact-method__step-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.finact-method__step-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ===== Our Team Section ===== */
.our-team {
    padding: 100px 0;
    background: var(--cream-bg);
    position: relative;
}

.our-team__content {
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(22, 51, 85, 0.08);
    position: relative;
    overflow: hidden;
}

.our-team__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-mixed);
}

.our-team__content::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--soft-accent) 0%, transparent 70%);
    border-radius: 50%;
}

.our-team__header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-bg);
    position: relative;
    z-index: 1;
}

.our-team__icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--accent-color);
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(22, 51, 85, 0.2);
}

.our-team__header-text h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.our-team__header-text h2 span {
    color: var(--accent-color);
}

.our-team__header-text p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.our-team__intro {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.our-team__intro strong {
    color: var(--primary-color);
}

.our-team__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.our-team__feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: var(--light-bg);
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.our-team__feature:hover {
    background: #fff;
    border-color: var(--accent-light);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(22, 51, 85, 0.08);
}

.our-team__feature-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 22px;
    flex-shrink: 0;
}

.our-team__feature h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 8px 0;
}

.our-team__feature p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* ===== Vision Mission Section ===== */
.vision-mission {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
}

.vision-mission::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 152, 103, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.vision-mission .section-header__title {
    color: #fff;
}

.vision-mission .section-header__subtitle {
    color: var(--accent-color);
}

.vision-mission .section-header__subtitle::before,
.vision-mission .section-header__subtitle::after {
    background: var(--accent-color);
}

.vision-mission__tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.vision-mission__tab {
    padding: 16px 35px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision-mission__tab i {
    font-size: 14px;
    color: var(--accent-color);
}

.vision-mission__tab:hover,
.vision-mission__tab.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 152, 103, 0.4);
}

.vision-mission__tab.active i,
.vision-mission__tab:hover i {
    color: #fff;
}

.vision-mission__content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.vision-mission__panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.vision-mission__panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vision-mission__panel-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.vision-mission__panel-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(184, 152, 103, 0.3);
}

.vision-mission__panel-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.vision-mission__panel-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
}

.vision-mission__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-mission__list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-mission__list li:last-child {
    border-bottom: none;
}

.vision-mission__list-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vision-mission__list-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

.vision-mission__list-text strong {
    color: var(--accent-color);
}

/* ===== Technology Section ===== */
.technology-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.technology__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.technology__image {
    position: relative;
}

.technology__image-main {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(22, 51, 85, 0.15);
    position: relative;
}

.technology__image-main::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--accent-color);
    border-radius: 25px;
    z-index: -1;
}

.technology__image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.technology__floating-card {
    position: absolute;
    background: #fff;
    border-radius: 18px;
    padding: 22px 25px;
    box-shadow: 0 20px 50px rgba(22, 51, 85, 0.15);
    border-left: 4px solid var(--accent-color);
}

.technology__floating-card--1 {
    top: -25px;
    right: -25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.technology__floating-card--2 {
    bottom: 50px;
    left: -35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.technology__floating-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 22px;
}

.technology__floating-text h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.technology__floating-text p {
    font-size: 13px;
    color: #666;
    margin: 3px 0 0 0;
}

.technology__content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.technology__content h2 span {
    color: var(--accent-color);
}

.technology__content p {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.technology__features {
    margin-top: 35px;
}

.technology__feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.technology__feature-item:last-child {
    border-bottom: none;
}

.technology__feature-check {
    width: 32px;
    height: 32px;
    background: var(--soft-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 14px;
}

.technology__feature-item span {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
}

/* ===== Strategic Direction Section ===== */
.strategic-direction {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.strategic-direction::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 152, 103, 0.05) 0%, transparent 100%);
}

.strategic-direction__wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.strategic-direction__content {
    flex: 1;
}

.strategic-direction__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(22, 51, 85, 0.1);
    border: 1px solid var(--accent-light);
}

.strategic-direction__badge i {
    color: var(--accent-color);
}

.strategic-direction__title {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.strategic-direction__title span {
    color: var(--accent-color);
}

.strategic-direction__text {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.strategic-direction__text strong {
    color: var(--primary-color);
}

.strategic-direction__image {
    flex: 1;
    position: relative;
}

.strategic-direction__image-main {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(22, 51, 85, 0.2);
}

.strategic-direction__image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.strategic-direction__stats {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0;
    background: #fff;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(22, 51, 85, 0.15);
    overflow: hidden;
}

.strategic-direction__stat {
    text-align: center;
    padding: 28px 35px;
    border-right: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.strategic-direction__stat:last-child {
    border-right: none;
}

.strategic-direction__stat:hover {
    background: var(--light-bg);
}

.strategic-direction__stat h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    margin: 0;
    line-height: 1;
}

.strategic-direction__stat p {
    font-size: 13px;
    color: #666;
    margin: 8px 0 0 0;
    font-weight: 500;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-mixed);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta__icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 35px;
    color: var(--accent-light);
}

.cta__title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta__btn {
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta__btn--primary {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 15px 40px rgba(184, 152, 103, 0.4);
}

.cta__btn--primary:hover {
    background: var(--accent-light);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(184, 152, 103, 0.5);
    color: var(--primary-color);
}

.cta__btn--secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1199px) {

    .who-we-are__title,
    .strategic-direction__title,
    .cta__title {
        font-size: 38px;
    }

    .philosophy__quote {
        font-size: 32px;
    }

    .section-header__title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {

    .who-we-are__title,
    .strategic-direction__title {
        font-size: 32px;
    }

    .philosophy__quote {
        font-size: 26px;
    }

    .finact-method__timeline::before {
        left: 30px;
    }

    .finact-method__step {
        flex-direction: column !important;
    }

    .finact-method__step-content {
        width: 100%;
        margin-left: 70px !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .finact-method__step-number {
        left: 30px;
        top: 35px;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .technology__wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .strategic-direction__wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .strategic-direction__stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 30px;
        width: 100%;
        justify-content: center;
    }

    .our-team__header {
        flex-direction: column;
        text-align: center;
    }

    .our-team__content {
        padding: 40px 25px;
    }

    .technology__image-main::before {
        display: none;
    }

    .who-we-are__image::before {
        display: none;
    }
}

@media (max-width: 767px) {

    .who-we-are,
    .philosophy-section,
    .what-we-do,
    .who-we-serve,
    .finact-method,
    .our-team,
    .vision-mission,
    .technology-section,
    .strategic-direction,
    .cta-section {
        padding: 70px 0;
    }

    .who-we-are__title,
    .strategic-direction__title,
    .technology__content h2 {
        font-size: 28px;
    }

    .section-header__title,
    .our-team__header-text h2 {
        font-size: 28px;
    }

    .philosophy__quote {
        font-size: 22px;
    }

    .vision-mission__content {
        padding: 30px 20px;
    }

    .vision-mission__panel-title {
        font-size: 24px;
    }

    .vision-mission__tabs {
        gap: 10px;
    }

    .vision-mission__tab {
        padding: 12px 20px;
        font-size: 14px;
    }

    .strategic-direction__stats {
        flex-direction: column;
        gap: 0;
    }

    .strategic-direction__stat {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 20px 30px;
    }

    .strategic-direction__stat:last-child {
        border-bottom: none;
    }

    .cta__title {
        font-size: 28px;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta__btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .technology__floating-card {
        display: none;
    }

    .who-we-are__image-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
    }

    .philosophy__icon {
        width: 80px;
        height: 80px;
        font-size: 30px;
    }

    .philosophy__icon::before {
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
    }
}