:root {
    --theme-color-1: #192f59;
    --theme-color-2: #3db166;
}

* {
    font-family: "Poppins", sans-serif;
    transition: all 0.5s;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
}

::selection {
    background: var(--theme-color-2);
    color: #fff;
}

::-moz-selection {
    background: var(--theme-color-2);
    color: #fff;
}

section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

a {
    text-decoration: none !important;
    color: inherit;
}

.container-fluid {
    max-width: 1700px;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1400px;
}

/* =========================================
   GLOBAL SCROLL ANIMATION
========================================= */

.scroll-animate {
    overflow: hidden;
}

.animate-item {
    opacity: 0;
    visibility: hidden;
    transition:
        transform 0.8s cubic-bezier(.23, 1, .32, 1),
        opacity 0.8s ease,
        visibility 0.8s ease;
    will-change: transform, opacity;
}

/* =========================================
   ACTIVE SHOW
========================================= */

.animate-item.animate-show {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
}

/* =========================================
   DEFAULT
========================================= */

.animate-item {
    transform: translate3d(0, 60px, 0);
}

/* =========================================
   LEFT
========================================= */

.slide-left {
    transform: translate3d(-80px, 0, 0);
}

/* =========================================
   RIGHT
========================================= */

.slide-right {
    transform: translate3d(80px, 0, 0);
}

/* =========================================
   UP
========================================= */

.slide-up {
    transform: translate3d(0, 80px, 0);
}

/* =========================================
   DOWN
========================================= */

.slide-down {
    transform: translate3d(0, -80px, 0);
}

/* =========================================
   ZOOM
========================================= */

.zoom-in {
    transform: scale(0.85);
}

.zoom-out {
    transform: scale(1.15);
}

/* =========================================
   ROTATE
========================================= */

.rotate-left {
    transform: rotate(-8deg) translate3d(-40px, 40px, 0);
}

.rotate-right {
    transform: rotate(8deg) translate3d(40px, 40px, 0);
}

/* =========================================
   MOBILE FIX
========================================= */

@media (max-width: 768px) {

    .animate-item {
        transition-duration: 0.6s;
    }

    .slide-left,
    .slide-right {
        transform: translate3d(0, 50px, 0);
    }

    .slide-up {
        transform: translate3d(0, 60px, 0);
    }

    .slide-down {
        transform: translate3d(0, -60px, 0);
    }

}

/* Nav Bar */
.secondary-navbar {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--theme-border-color);
    /* margin-bottom: 90px; */
}

.secondary-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color-1);
    z-index: -1;
}

.menutext {
    color: #fff;
}

.top-link {
    color: #96a2b8;
    margin-right: 5px;
}

.top-link i {
    color: var(--theme-color-2);
}

ul.sub-nav {
    color: #96a2b8;
    list-style: none;
    padding: 0;
    display: flex;
    margin-bottom: 0;
    align-items: center;
}

ul.sub-nav li.sub-nav-items .nav-link {
    padding: 10px;
}

ul.sub-nav li.sub-nav-items .nav-link.sub-nav-btn {
    background: var(--theme-color-2);
    color: #fff;
    font-weight: 700;
    padding: 20px 10px;
}

@media (max-width: 991px) {
    .navbar-custom .nav-link {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    .sub-navbar .nav {
        flex-direction: column;
        align-items: center;
    }

    .sub-navbar .nav-link {
        padding: 0.5rem 0;
    }

    .sec-side-details {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 5px;
    }
}

/* Main Navbar */
ul.navbar-nav {
    padding: 20px 20px 0px 20px;
}

.main-navbar {
    background: #fff;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
    margin-top: 64px;
}

.main-navbar .nav-link {
    font-size: 16px;
    font-weight: 500;
}

.main-navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-top: 0;
}

.main-navbar.scrolled .nav-link {
    color: var(--theme-color-1);
    cursor: pointer;
}

.header-navigation .navbar-custom {
    background-color: rgb(255, 255, 255);
    transition: background-color 0.3s ease, padding 0.3s ease;
    z-index: 1050;
    top: 41px;
    box-shadow: 0 15px 40px 0 rgba(13.000000000000004, 24.000000000000004, 53, .050980392156862744);
}

.navbar-custom.scrolled {
    top: 0;
}

a.button-link {
    display: inline-flex;
    font-weight: 600;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.menutext a.button-link {
    color: inherit;
}

.button-link i {
    line-height: normal;
    font-size: 18px;
    transition: all 0.5s;
    color: inherit;
}

.button-link:hover i {
    transform: translateX(5px);
}

.button-link {
    color: var(--theme-color-1);
    font-weight: 700;
}

.button-link:hover {
    color: var(--theme-color-2);
}

ul.sub-menu-ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

li.sub-menu-list {
    font-size: 16px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 5px;
}

li.sub-menu-list.submenu-list-border {
    position: relative;
    padding-right: 10px;
}

li.sub-menu-list.submenu-list-border::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 42px;
    background: var(--theme-border-color);
    right: 0;
    top: -10px;
    transform: skew(-10deg);
    z-index: -1;
}

a.header-social-media-items {
    color: #000;
    font-size: 16px;
    margin-left: 10px;
}

a.header-social-media-items:hover {
    color: var(--theme-color-1);
}

a.header-social-media-items i {
    color: inherit;
}

.main-logo {
    width: 200px;
    height: auto;
}

.nav-contact-icon {
    background: var(--theme-color-2);
    color: var(--theme-color-1);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
}

.nav-contact-icon span {
    color: inherit;
}

.nav-contact-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ncc-title {
    font-size: 16px;
}

a.ncc-number {
    font-size: 20px;
    color: var(--theme-color-1);
    font-weight: 600;
}

.btn-button {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-transform: none;
    letter-spacing: 0px;
    line-height: 16px;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
    padding: 18px 22px;
    border-style: solid;
    border-width: 0px 0px 0px 5px;
    border-color: rgb(61, 177, 102);
    cursor: pointer;
    display: inline-block;
    background: var(--theme-color-1);
    border-radius: 0;
    position: relative;
}

.btn-button:hover {
    background-color: var(--theme-color-2);
}

.btn-button i {
    margin-left: 5px;
    line-height: normal;
}

.btn-white {
    color: var(--theme-color-1);
    background: #fff;
}

.btn-white:hover {
    background-color: var(--theme-color-2);
    color: #fff;
}

.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-color-1);
    cursor: pointer;
    padding-bottom: 30px;
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 5px;
    background-color: var(--theme-color-2);
    bottom: 0;
    right: 0;
    left: auto;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--theme-color-2) !important;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

li.nav-item.dropdown ul.dropdown-menu {
    border: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0px 3px 3px 0px rgb(0 0 0 / 10%);
}

li.nav-item.dropdown ul.dropdown-menu a.dropdown-item {
    padding: 10px 20px;
}

li.nav-item.dropdown ul.dropdown-menu a.dropdown-item.active,
li.nav-item.dropdown ul.dropdown-menu a.dropdown-item:focus {
    background-color: var(--theme-color-2);
    color: #fff;
}

/* Banner */


.hero-section img {
    height: 820px;
    object-fit: cover;
}

.hero-section .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 60%;
}

.hero-section .carousel-caption.left-caption {
    text-align: start;
    left: 42%;
}

.hero-section .carousel-caption.right-caption {
    left: auto;
    right: -15%;
    text-align: left;
    width: 50%;
}

.banner-sub-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.hero-section .carousel-caption .banner-title {
    font-size: 80px;
    font-weight: 800;
    font-family: "Playfair Display", serif;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 20px;
    display: block;
    position: relative;
}

.right-caption .bg-highlight {
    width: 70%;
    height: 200px;
    background: var(--theme-color-2);
    position: absolute;
    top: 20%;
    left: 0px;
    z-index: -1;
}

.center-caption .bg-highlight {
    width: 60%;
    height: 200px;
    background: var(--theme-color-2);
    position: absolute;
    top: 20%;
    left: 0px;
    right: 0;
    z-index: -1;
    margin: 0 auto;
}

.hero-section .carousel-caption .banner-title span.big-text {
    color: var(--theme-color-3);
}

.hero-section .carousel-caption p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 10px;
    color: #fff;
}

h5.banner-sub-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

section.hero-section .carousel-control-next-icon,
section.hero-section .carousel-control-prev-icon {
    background-color: transparent;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background-size: 40px;
    border: 0px solid #fff;
}

.carousel-item {
    position: relative;
    z-index: 1;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}


/* Banner Animation */
.hero-anim-item {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.8s cubic-bezier(.2, .9, .2, 1), opacity 0.8s cubic-bezier(.2, .9, .2, 1);
    will-change: transform, opacity;
}

.hero-anim-show {
    opacity: 1;
    transform: translate(0, 0);
}

.hero-anim-up {
    transform: translateY(100px);
}

.hero-anim-down {
    transform: translateY(-100px);
}

.hero-anim-left {
    transform: translateX(-100px);
}

.hero-anim-right {
    transform: translateX(100px);
}

.hero-anim-show.hero-anim-up,
.hero-anim-show.hero-anim-down,
.hero-anim-show.hero-anim-left,
.hero-anim-show.hero-anim-right {
    transform: translate(0, 0);
}


/* =========================== */
section.hero-section {
    padding: 0;
}

/* Feature Section */

section.feature-section {
    padding: 0;
}

.feature-card {
    padding: 60px 40px;
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    object-fit: contain;
}

p.ftr-dec {
    margin-bottom: 0;
    color: #cbc9c9;
}

.feature-card::before {
    content: '';
    position: absolute;
    background-color: rgb(14 14 14);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.6;
    filter: hue-rotate(45deg);
}

.feature-card.ftr-1 {
    background-image: url(../images/frt-bg-1.jpg);
}

.feature-card.ftr-2 {
    background-image: url(../images/frt-bg-2.jpg);
}

.feature-card.ftr-3 {
    background-image: url(../images/frt-bg-3.jpg);
}

.feature-card.ftr-4 {
    background-image: url(../images/frt-bg-5.jpg);
}

/* About us */

section.about-section {
    background: #f8fafc;
}

.about-image-wrapper {
    padding-right: 60px;
}

.about-main-image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    min-height: 650px;
}

.about-experience-box {
    position: absolute;
    right: 0;
    bottom: 40px;
    background: var(--theme-color-1);
    color: #fff;
    padding: 30px;
    max-width: 260px;
    border-left: 6px solid var(--theme-color-2);
}

.about-experience-box h3 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--theme-color-2);
}

.about-experience-box p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #fff;
}

.sub-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color-2);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 40px;
    line-height: 1.3;
    color: var(--theme-color-1);
    margin-bottom: 25px;
    font-family: "Playfair Display", serif;
}

.section-description {
    font-size: 17px;
    line-height: 1.9;
    color: #5f6b7a;
    margin-bottom: 18px;
}

.about-mini-card {
    background: #fff;
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    border-bottom: 4px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-mini-card:hover {
    transform: translateY(-8px);
    border-color: var(--theme-color-2);
}

.about-mini-icon {
    width: 70px;
    height: 70px;
    background: rgba(61, 177, 102, 0.1);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 28px;
}

.about-mini-card h4 {
    font-size: 24px;
    color: var(--theme-color-1);
    margin-bottom: 15px;
}

.about-mini-card p {
    margin-bottom: 0;
    color: #5f6b7a;
    line-height: 1.8;
}

.abt-icon i {
    font-size: 38px;
    color: var(--theme-color-2);
}

@media (max-width: 991px) {

    .about-image-wrapper {
        padding-right: 0;
    }

    .about-main-image {
        min-height: auto;
    }

    .about-experience-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        max-width: 100%;
    }

    .section-title {
        font-size: 38px;
    }

}


section.why-choose-section {
    background: #0f172a;
    position: relative;
    z-index: 1;
}

section.why-choose-section::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(61, 177, 102, 0.08);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: -1;
}

section.why-choose-section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(25, 47, 89, 0.4);
    border-radius: 50%;
    bottom: -120px;
    left: -120px;
    z-index: -1;
}

.why-choose-description {
    color: #c8d1e1;
    font-size: 17px;
    line-height: 1.9;
    margin-top: 20px;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 35px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 4px;
    background: var(--theme-color-2);
    left: 0;
    bottom: 0;
    transition: all 0.5s;
}

.why-choose-card:hover::before {
    width: 100%;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    border-color: rgba(61, 177, 102, 0.3);
}

.why-icon {
    width: 75px;
    height: 75px;
    background: rgba(61, 177, 102, 0.1);
    color: var(--theme-color-2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
}

.why-choose-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 18px;
}

.why-choose-card p {
    color: #c8d1e1;
    line-height: 1.9;
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .why-choose-card {
        padding: 30px;
    }

    .why-choose-card h3 {
        font-size: 22px;
    }

}


/* Service */

section.services-section {
    background: #ffffff;
    position: relative;
    z-index: 1;
}

section.services-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(61, 177, 102, 0.05);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    z-index: -1;
}

.service-card {
    background: #fff;
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf1f7;
    height: 100%;
    transition: all 0.5s;
}

.service-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0%;
    background: var(--theme-color-1);
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: all 0.5s;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--theme-color-1);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
    font-weight: 800;
    color: rgb(58 207 111 / 50%);
    line-height: 1;
}

.service-icon {
    width: 85px;
    height: 85px;
    background: rgba(61, 177, 102, 0.1);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 30px;
    border-radius: 14px;
}

.service-card h3 {
    font-size: 28px;
    color: var(--theme-color-1);
    margin-bottom: 18px;
    line-height: 1.4;
}

.service-card p {
    color: #5f6b7a;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 16px;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .button-link,
.service-card:hover .button-link i {
    color: #fff;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.service-card:hover .service-number {
    color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {

    .service-card {
        padding: 35px 25px;
    }

    .service-card h3 {
        font-size: 24px;
    }

}

/* Legal Advisory */

section.legal-advisory-section {
    background: #f4f7fb;
    padding: 0;
    overflow: hidden;
}

.legal-left-panel {
    background: linear-gradient(180deg, #192f59 0%, #0f172a 100%);
    padding: 100px 70px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.legal-left-panel::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(61, 177, 102, 0.08);
    top: -150px;
    right: -150px;
}

.legal-main-description {
    color: #c7d1df;
    font-size: 17px;
    line-height: 2;
    margin-bottom: 25px;
}

.legal-highlight-box {
    background: rgba(255, 255, 255, 0.08);
    border-left: 5px solid var(--theme-color-2);
    padding: 30px;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: start;
}

.legal-highlight-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: rgba(61, 177, 102, 0.15);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.legal-highlight-box h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.legal-highlight-box p {
    color: #c7d1df;
    margin-bottom: 0;
    line-height: 1.8;
}

.legal-grid-wrapper {
    padding: 80px 60px;
}

.legal-service-card {
    background: #fff;
    padding: 35px;
    height: 100%;
    position: relative;
    border-top: 4px solid transparent;
    transition: all 0.5s;
}

.legal-service-card:hover {
    transform: translateY(-10px);
    border-color: var(--theme-color-2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.legal-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.legal-card-top span {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color-2);
}

.legal-card-top i {
    font-size: 34px;
    color: var(--theme-color-1);
}

.legal-service-card h3 {
    font-size: 28px;
    color: var(--theme-color-1);
    margin-bottom: 18px;
    line-height: 1.4;
}

.legal-service-card p {
    color: #5f6b7a;
    line-height: 1.9;
    margin-bottom: 25px;
}

ul.legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.legal-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

ul.legal-list li:last-child {
    margin-bottom: 0;
}

ul.legal-list li::before {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: rgba(61, 177, 102, 0.12);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

.legal-service-card:hover ul.legal-list li,
.legal-service-card:hover ul.legal-list li::before {
    color: var(--theme-color-1);
}

.legal-advisory-video-area {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

img.legal-adv-img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.legal-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--theme-color-2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    z-index: 2;
}

.legal-video-btn i {
    line-height: normal;
    margin-left: 5px;
}

.legal-video-btn::before,
.legal-video-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(61, 177, 102, 0.35);
    z-index: -1;
    animation: videoWave 2s linear infinite;
}

.legal-video-btn::after {
    animation-delay: 1s;
}

@keyframes videoWave {

    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }

}

.legal-video-btn:hover {
    background: var(--theme-color-1);
    color: #fff;
}

@media (max-width: 1199px) {

    .legal-main-title {
        font-size: 46px;
    }

}

@media (max-width: 991px) {

    .legal-left-panel {
        padding: 70px 30px;
    }

    .legal-grid-wrapper {
        padding: 60px 20px;
    }

    .legal-main-title {
        font-size: 38px;
    }

    .legal-service-card {
        padding: 30px;
    }

}

section.cta-section {
    position: relative;
    z-index: 1;
}

.cta-wrapper {
    background-image: url(../images/slider-3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 80px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.82);
    z-index: -1;
}

.cta-description {
    color: #d1d7e2;
    font-size: 17px;
    line-height: 1.9;
    max-width: 850px;
    margin-bottom: 0;
}

.cta-btn-area .btn-button {
    min-width: 240px;
    text-align: center;
    justify-content: center;
}

@media (max-width: 1199px) {

    .cta-title {
        font-size: 46px;
    }

}

@media (max-width: 991px) {

    .cta-wrapper {
        padding: 70px 30px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-btn-area {
        text-align: left !important;
    }

}

/* accreditation-section */
section.accreditation-section {
    background: #ffffff;
    position: relative;
    z-index: 1;
}

section.accreditation-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(25, 47, 89, 0.03);
    border-radius: 50%;
    top: -250px;
    left: -250px;
    z-index: -1;
}

.accreditation-top-description {
    font-size: 17px;
}

.accreditation-highlight-box {
    background: linear-gradient(135deg, #192f59 0%, #0f172a 100%);
    padding: 60px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.accreditation-highlight-box::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(61, 177, 102, 0.08);
    border-radius: 50%;
    right: -120px;
    top: -120px;
}

.accreditation-highlight-content h3 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.accreditation-highlight-content p {
    color: #d4dae4;
    margin-bottom: 0;
}

.accreditation-highlight-icon {
    text-align: center;
}

.accreditation-highlight-icon i {
    font-size: 120px;
    color: rgba(61, 177, 102, 0.25);
}

.accreditation-process-card {
    display: flex;
    gap: 30px;
    background: #f8fafc;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.accreditation-process-card::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 0%;
    background: var(--theme-color-2);
    left: 0;
    top: 0;
    transition: all 0.5s;
}

.accreditation-process-card:hover::before {
    height: 100%;
}

.accreditation-process-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.accreditation-step {
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accreditation-step img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.accreditation-card-content h3 {
    color: var(--theme-color-1);
    margin-bottom: 18px;
    line-height: 1.4;
}

ul.accreditation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.accreditation-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
    color: #5f6b7a;
    line-height: 1.8;
    font-weight: 500;
}

ul.accreditation-list li:last-child {
    margin-bottom: 0;
}

ul.accreditation-list li::before {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: rgba(61, 177, 102, 0.12);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
}

@media (max-width: 991px) {

    .accreditation-highlight-box {
        padding: 50px 30px;
    }

    .accreditation-highlight-content h3 {
        font-size: 32px;
    }

    .accreditation-process-card {
        padding: 30px;
        flex-direction: column;
        gap: 20px;
    }

}

/* Membership */
section.members-dark-section {
    background: #0b1120;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

section.members-dark-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(61, 177, 102, 0.05);
    border-radius: 50%;
    top: -300px;
    right: -250px;
    z-index: -1;
}

section.members-dark-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(25, 47, 89, 0.35);
    border-radius: 50%;
    bottom: -250px;
    left: -250px;
    z-index: -1;
}

.members-dark-title {
    font-size: 58px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 25px;
    font-family: "Playfair Display", serif;
}

.members-dark-description {
    color: #c7d1df;
    font-size: 16px;
    line-height: 2;
}

.members-dark-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.5s;
}

.members-dark-card:hover {
    transform: translateY(-10px);
    border-color: rgba(61, 177, 102, 0.4);
}

.member-top-line {
    position: absolute;
    width: 0%;
    height: 4px;
    background: var(--theme-color-2);
    left: 0;
    top: 0;
    transition: all 0.5s;
}

.members-dark-card:hover .member-top-line {
    width: 100%;
}

.members-dark-icon {
    width: 90px;
    height: 90px;
    background: rgba(61, 177, 102, 0.08);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.member-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 65px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
}

.members-dark-card h3 {
    color: #fff;
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.members-dark-card p {
    color: #c7d1df;
}

ul.members-dark-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.members-dark-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
    color: #dbe3ef;
    line-height: 1.8;
}

ul.members-dark-list li:last-child {
    margin-bottom: 0;
}

ul.members-dark-list li::before {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: rgba(61, 177, 102, 0.12);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
}

.members-dark-bottom {
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.04);
    border-left: 5px solid var(--theme-color-2);
    padding: 50px;
}

.members-dark-bottom h3 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.members-dark-bottom p {
    color: #c7d1df;
    line-height: 1.9;
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .members-dark-title {
        font-size: 40px;
    }

    .members-dark-card {
        padding: 35px 25px;
    }

    .members-dark-bottom {
        padding: 35px 25px;
    }

    .members-dark-bottom h3 {
        font-size: 30px;
    }

}

/* Contact Us */

section.contact-section {
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

.contact-left-area {
    background: linear-gradient(180deg, #192f59 0%, #0f172a 100%);
    padding: 80px 60px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-left-area::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(61, 177, 102, 0.08);
    border-radius: 50%;
    top: -180px;
    right: -180px;
}

.contact-main-description {
    color: #d1d7e2;
    line-height: 2;
    font-size: 17px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
}

.contact-info-icon {
    width: 65px;
    height: 65px;
    background: rgba(61, 177, 102, 0.12);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    min-width: 65px;
}

.contact-info-item h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-info-item p,
.contact-info-item a {
    color: #d1d7e2;
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-commitment-box {
    margin-top: 50px;
    border-left: 4px solid var(--theme-color-2);
    padding-left: 25px;
}

.contact-commitment-box h4 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-commitment-box p {
    color: #d1d7e2;
    line-height: 1.9;
    margin-bottom: 0;
}

.contact-form-area {
    background: #fff;
    padding: 80px 60px;
    height: 100%;
}

.contact-form-heading h3 {
    font-size: 42px;
    color: var(--theme-color-1);
    margin-bottom: 15px;
}

.contact-form-heading p {
    color: #5f6b7a;
    line-height: 1.9;
    margin-bottom: 40px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--theme-color-1);
}

.form-control,
.form-select {
    width: 100%;
    border: 1px solid #dce3ee;
    border-radius: 0;
    min-height: 60px;
    padding: 15px 20px;
    color: #5f6b7a;
    box-shadow: none !important;
}

textarea.form-control {
    min-height: 180px;
    resize: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--theme-color-2);
}

.naacs-contact-form button.btn-button {
    border: none;
}

@media (max-width: 991px) {

    .contact-left-area,
    .contact-form-area {
        padding: 60px 30px;
    }

    .contact-form-heading h3 {
        font-size: 32px;
    }

}

/* Footer */

footer.footer-section {
    background: #0b1120;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

footer.footer-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(61, 177, 102, 0.05);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    z-index: -1;
}

.footer-top {
    padding: 90px 0 60px;
}

.footer-logo img {
    width: 220px;
    margin-bottom: 30px;
}

.footer-about p {
    color: #c7d1df;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    font-size: 18px;
}

.footer-social-icon:hover {
    background: var(--theme-color-2);
    color: #fff;
    transform: translateY(-5px);
}

.footer-widget-title {
    color: #fff;
    font-size: 26px;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget-title::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--theme-color-2);
    left: 0;
    bottom: 0;
}

ul.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.footer-links li {
    margin-bottom: 18px;
}

ul.footer-links li:last-child {
    margin-bottom: 0;
}

ul.footer-links li a {
    color: #c7d1df;
    line-height: 1.8;
    position: relative;
    padding-left: 24px;
    display: inline-block;
}

ul.footer-links li a::before {
    content: "\f285";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--theme-color-2);
    font-size: 14px;
}

ul.footer-links li a:hover {
    color: #fff;
    padding-left: 30px;
}

.footer-contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
    align-items: start;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(61, 177, 102, 0.1);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.footer-contact-item h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.footer-contact-item p,
.footer-contact-item a {
    color: #c7d1df;
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    font-size: 14px;
}

.copyright-text {
    color: #c7d1df;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: end;
    gap: 25px;
}

.footer-bottom-links a {
    color: #c7d1df;
}

.footer-bottom-links a:hover {
    color: var(--theme-color-2);
}

@media (max-width: 991px) {

    .footer-top {
        padding: 70px 0 50px;
    }

    .footer-widget-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .footer-bottom-links {
        justify-content: start;
        flex-wrap: wrap;
    }

}


/* Breadcrumb */
section.breadcrumb-sec {
    padding-top: 180px;
    background-image: url(../images/school-membership.jpg);
    color: #fff;
    padding-bottom: 30px;
    background-position: center;
    background-size: cover;
}

section.breadcrumb-sec::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--theme-color-1), transparent);
    top: 0;
    left: 0;
    z-index: -1;
}

ol.breadcrumb-list {
    list-style: none;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 5px;
}

.breadcrumb-items {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding-right: 20px;
    position: relative;
}

.breadcrumb-items.active {
    pointer-events: none;
    padding-right: 0;
    color: var(--theme-color-2);
}

.breadcrumb-items::after {
    content: "\f280";
    font-family: bootstrap-icons !important;
    position: absolute;
    top: 0;
    right: 0;
    font-size: inherit;
    color: inherit;
}

.breadcrumb-items.active::after {
    display: none;
}

/* About Us */
/* ===========================
   ABOUT PAGE STYLES
=========================== */


/* Image Wrap */
.about-img-wrap {
    position: relative;
}

.about-img-main {
    position: relative;
    overflow: hidden;
}

.about-img-main img {
    height: 580px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.about-img-main:hover img {
    transform: scale(1.04);
}

.about-img-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(25, 47, 89, 0.35) 100%);
    pointer-events: none;
}

/* Badge overlaying bottom-left of image */
.about-img-badge {
    position: absolute;
    bottom: 130px;
    left: -30px;
    background: #fff;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(25, 47, 89, 0.15);
    z-index: 2;
}

.about-badge-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--theme-color-1);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.about-img-badge h4 {
    font-size: 16px;
    color: var(--theme-color-1);
    margin-bottom: 2px;
}

.about-img-badge p {
    font-size: 13px;
    color: #5f6b7a;
    margin: 0;
}

/* Stats strip */
.about-img-stat {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--theme-color-1);
    padding: 22px 30px;
}

.about-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-stat-number {
    font-size: 34px;
    font-weight: 700;
    color: var(--theme-color-2);
    line-height: 1;
    margin-bottom: 5px;
}

.about-stat-label {
    font-size: 13px;
    color: #96a2b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-stat-divider {
    width: 1px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
}

/* Content Area */
.about-content-wrap {
    padding-left: 20px;
}

.about-expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.about-expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f4f7fb;
    padding: 14px 18px;
    border-left: 3px solid var(--theme-color-2);
    font-size: 15px;
    font-weight: 600;
    color: var(--theme-color-1);
}

.about-expertise-item i {
    font-size: 20px;
    color: var(--theme-color-2);
    min-width: 20px;
}

/* ===========================
   VISION & MISSION SECTION
=========================== */
.about-vision-mission-sec {
    background: #f4f7fb;
    position: relative;
    overflow: hidden;
}

.about-vm-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(61, 177, 102, 0.05);
    border-radius: 50%;
    top: -300px;
    right: -200px;
    pointer-events: none;
}

/* VM Cards */
.about-vm-card {
    background: #fff;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid transparent;
    transition: all 0.5s;
    box-shadow: 0 4px 30px rgba(25, 47, 89, 0.07);
}

.about-vm-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: -100px;
    right: -80px;
    opacity: 0.06;
    background: var(--theme-color-1);
    transition: all 0.5s;
}

.about-vm-card:hover {
    border-bottom-color: var(--theme-color-2);
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(25, 47, 89, 0.12);
}

.about-vm-card-icon {
    width: 75px;
    height: 75px;
    background: rgba(61, 177, 102, 0.1);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 20px;
}

section p {
    color: #5f6b7a;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Vision card footer pills */
.about-vm-card-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    border-top: 1px solid #eef1f6;
    padding-top: 20px;
    margin-top: auto;
}

.about-vm-card-footer span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-color-1);
}

.about-vm-card-footer span i {
    color: var(--theme-color-2);
    font-size: 15px;
}

/* Mission list */
.about-mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-mission-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f3f8;
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.7;
}

.about-mission-list li:last-child {
    border-bottom: none;
}

.about-mission-list li i {
    color: var(--theme-color-2);
    font-size: 18px;
    min-width: 18px;
    margin-top: 2px;
}

/* ===========================
   WHY NAACS SECTION
=========================== */

.about-why-card {
    padding: 40px 35px;
    background: #fff;
    border: 1px solid #e8edf5;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    height: 100%;
}

.about-why-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--theme-color-2);
    bottom: 0;
    left: -100%;
    transition: all 0.5s;
}

.about-why-card:hover {
    box-shadow: 0 10px 40px rgba(25, 47, 89, 0.1);
    transform: translateY(-5px);
    border-color: transparent;
}

.about-why-card:hover::after {
    left: 0;
}

.about-why-card-num {
    font-size: 60px;
    font-weight: 800;
    color: rgba(25, 47, 89, 0.06);
    line-height: 1;
    position: absolute;
    top: 15px;
    right: 20px;
}

.about-why-card-icon {
    width: 65px;
    height: 65px;
    background: rgba(61, 177, 102, 0.1);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: all 0.5s;
}

.about-why-card:hover .about-why-card-icon {
    background: var(--theme-color-1);
    color: var(--theme-color-2);
}

.about-why-card-title {
    font-size: 20px;
    color: var(--theme-color-1);
    margin-bottom: 14px;
}

.about-why-card-text {
    color: #5f6b7a;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* ===========================
   CTA SECTION
=========================== */

.dark-card {
    background: linear-gradient(135deg, var(--theme-color-1) 0%, #0f1e3d 100%);
    padding: 65px 60px;
    position: relative;
    overflow: hidden;
}

.dark-card::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(61, 177, 102, 0.08);
    border-radius: 50%;
    top: -180px;
    right: -100px;
    pointer-events: none;
}

.dark-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(61, 177, 102, 0.06);
    border-radius: 50%;
    bottom: -120px;
    left: -80px;
    pointer-events: none;
}

.about-cta-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.about-cta-text {
    color: #96a2b8;
    margin: 0;
}


/* ===========================
   LEGAL ADVISORY PAGE
=========================== */

/* Intro Section – Image Wrap */
.legal-intro-img-wrap {
    position: relative;
}

.legal-intro-img-wrap img {
    height: 540px;
    object-fit: cover;
    display: block;
}

.legal-intro-stat-box {
    background: var(--theme-color-1);
    padding: 22px 30px;
}

.legal-stat-row {
    display: flex;
    align-items: center;
}

.legal-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.legal-stat-num {
    font-size: 34px;
    font-weight: 700;
    color: var(--theme-color-2);
    line-height: 1;
    margin-bottom: 5px;
}

.legal-stat-lbl {
    font-size: 13px;
    color: #96a2b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 20px;
}

/* Intro highlights list */
.legal-intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.legal-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--theme-color-1);
}

.legal-highlight-item i {
    font-size: 20px;
    color: var(--theme-color-2);
    min-width: 20px;
}

/* ===========================
   SERVICE CARDS
=========================== */
.legal-service-card {
    background: #fff;
    padding: 40px 38px;
    height: 100%;
    border: 1px solid #e8edf5;
    border-left: 5px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.legal-service-card::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(25, 47, 89, 0.03);
    border-radius: 50%;
    bottom: -80px;
    right: -60px;
    transition: all 0.5s;
}

.legal-service-card:hover {
    border-left-color: var(--theme-color-2);
    box-shadow: 0 12px 45px rgba(25, 47, 89, 0.1);
    transform: translateY(-4px);
}

.legal-service-card-top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 18px;
}

.legal-service-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: rgba(61, 177, 102, 0.1);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.5s;
}

.legal-service-card:hover .legal-service-icon {
    background: var(--theme-color-1);
    color: var(--theme-color-2);
}

.legal-service-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--theme-color-2);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.legal-service-title {
    font-size: 21px;
    color: var(--theme-color-1);
    margin-bottom: 0;
    line-height: 1.3;
}

/* Scope block inside card */
.legal-service-scope {
    background: #f4f7fb;
    padding: 20px 22px;
    margin-top: 18px;
}

.legal-scope-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--theme-color-1);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.legal-scope-label i {
    color: var(--theme-color-2);
    font-size: 16px;
}

.legal-scope-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-scope-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 14px;
    color: #5f6b7a;
    line-height: 1.6;
}

.legal-scope-list li i {
    color: var(--theme-color-2);
    font-size: 18px;
    min-width: 18px;
    margin-top: 1px;
}

/* ===========================
   WHY LEGAL ADVISORY MATTERS
=========================== */
.legal-why-card {
    background: #f4f7fb;
    padding: 30px 28px;
    height: 100%;
    border-bottom: 4px solid transparent;
    transition: all 0.5s;
}

.legal-why-card:hover {
    border-bottom-color: var(--theme-color-2);
    box-shadow: 0 8px 30px rgba(25, 47, 89, 0.08);
    transform: translateY(-4px);
    background: #fff;
}

.legal-why-card--accent {
    background: var(--theme-color-1);
}

.legal-why-card--accent h5 {
    color: #fff;
}

.legal-why-card--accent p {
    color: #96a2b8;
}

.legal-why-card--accent:hover {
    background: var(--theme-color-1);
}

.legal-why-card--accent .legal-why-icon {
    background: rgba(61, 177, 102, 0.15);
}

.legal-why-icon {
    width: 55px;
    height: 55px;
    background: rgba(61, 177, 102, 0.1);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.legal-why-card h5 {
    font-size: 18px;
    color: var(--theme-color-1);
    margin-bottom: 10px;
}

.legal-why-card p {
    font-size: 14px;
    color: #5f6b7a;
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 991px) {

    .legal-intro-img-wrap img {
        height: 380px;
    }

    .legal-service-card {
        padding: 30px 25px;
    }

    .legal-service-title {
        font-size: 19px;
    }

}

@media (max-width: 575px) {

    .legal-stat-num {
        font-size: 26px;
    }

    .legal-service-card-top {
        flex-direction: column;
        gap: 14px;
    }

}


/* ===========================
   ACCREDITATION & AFFILIATION PAGE
=========================== */

/* Intro Image Wrap */
.aaf-intro-img-wrap {
    position: relative;
}

.aaf-intro-img-wrap img {
    height: 520px;
    object-fit: cover;
    display: block;
}

.aaf-intro-badge {
    position: absolute;
    bottom: -1px;
    left: 0;
    background: var(--theme-color-1);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.aaf-badge-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(61, 177, 102, 0.15);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.aaf-intro-badge h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 2px;
}

.aaf-intro-badge p {
    font-size: 13px;
    color: #96a2b8;
    margin: 0;
}

/* Intro pills */
.aaf-intro-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.aaf-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f4f7fb;
    border: 1px solid #dce5f0;
    color: var(--theme-color-1);
    font-size: 14px;
    font-weight: 600;
    padding: 9px 16px;
}

.aaf-pill i {
    color: var(--theme-color-2);
    font-size: 15px;
}

/* ===========================
   SCOPE OVERVIEW STRIP
=========================== */
.aaf-scope-strip {
    padding: 0;
    background: var(--theme-color-1);
}

.aaf-scope-item {
    padding: 38px 35px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    transition: all 0.5s;
}

.aaf-scope-item:last-child {
    border-right: none;
}

.aaf-scope-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.aaf-scope-item--accent {
    background: rgba(61, 177, 102, 0.08);
}

.aaf-scope-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(61, 177, 102, 0.15);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.aaf-scope-item h5 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 6px;
}

.aaf-scope-item p {
    font-size: 13px;
    color: #96a2b8;
    margin: 0;
    line-height: 1.6;
}

/* ===========================
   SERVICE BLOCKS
=========================== */

/* Left info box with step label */
.aaf-service-img-box {
    padding: 45px 40px;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.aaf-service-img-box::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

.aaf-service-img-box--1 {
    background: linear-gradient(135deg, #192f59 0%, #1e4080 100%);
}

.aaf-service-img-box--2 {
    background: linear-gradient(135deg, #0f3d2e 0%, #1a6645 100%);
}

.aaf-service-img-box--3 {
    background: linear-gradient(135deg, #2d1b4e 0%, #4a2d7a 100%);
}

.aaf-service-img-box--4 {
    background: linear-gradient(135deg, #1a2f4a 0%, #0f4060 100%);
}

.aaf-service-img-box>* {
    position: relative;
    z-index: 1;
}

.aaf-service-img-icon {
    width: 60px;
    height: 60px;
    background: rgba(61, 177, 102, 0.2);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.aaf-service-img-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--theme-color-2);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.aaf-service-img-box h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.aaf-service-img-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Scope list card (right column) */
.aaf-scope-card {
    background: #fff;
    padding: 40px 38px;
    height: 100%;
    border-left: 5px solid var(--theme-color-2);
    box-shadow: 0 4px 30px rgba(25, 47, 89, 0.06);
}

.aaf-scope-card-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--theme-color-1);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.aaf-scope-card-label i {
    color: var(--theme-color-2);
    font-size: 17px;
}

.aaf-scope-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.aaf-scope-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #5f6b7a;
    line-height: 1.7;
    padding: 13px 0;
    border-bottom: 1px solid #f0f4f9;
}

.aaf-scope-card-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.aaf-scope-card-list li i {
    color: var(--theme-color-2);
    font-size: 18px;
    min-width: 18px;
    margin-top: 2px;
}

/* ===========================
   COMMITMENT SECTION
=========================== */
.aaf-commit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f4f7fb;
    padding: 25px 28px;
    border-left: 4px solid transparent;
    transition: all 0.5s;
}

.aaf-commit-item:hover {
    border-left-color: var(--theme-color-2);
    background: #fff;
    box-shadow: 0 6px 25px rgba(25, 47, 89, 0.08);
}

.aaf-commit-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(61, 177, 102, 0.1);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.5s;
}

.aaf-commit-item:hover .aaf-commit-icon {
    background: var(--theme-color-1);
    color: var(--theme-color-2);
}

.aaf-commit-item h5 {
    font-size: 18px;
    color: var(--theme-color-1);
    margin-bottom: 6px;
}

.aaf-commit-item p {
    font-size: 14px;
    color: #5f6b7a;
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 991px) {

    .aaf-intro-img-wrap img {
        height: 360px;
    }

    .aaf-scope-item {
        padding: 28px 22px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .aaf-service-img-box {
        min-height: 220px;
        padding: 35px 28px;
    }

    .aaf-service-img-box h3 {
        font-size: 20px;
    }

    .aaf-scope-card {
        padding: 30px 25px;
    }

}

@media (max-width: 575px) {

    .aaf-intro-pills {
        gap: 8px;
    }

    .aaf-pill {
        font-size: 13px;
        padding: 8px 13px;
    }

    .aaf-intro-badge {
        position: static;
    }

    .aaf-intro-img-wrap img {
        height: 260px;
    }

}

/* ===========================
   MEMBERS PAGE
=========================== */

/* ===========================
   INTRO SECTION
=========================== */
.members-domain-strip {
    background: var(--theme-color-1);
    display: flex;
    align-items: center;
    padding: 0;
}

.members-domain-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 20px;
}

.members-domain-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--theme-color-2);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.members-domain-num i {
    font-size: 30px;
}

.members-domain-lbl {
    font-size: 13px;
    color: #96a2b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.members-domain-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* ===========================
   ADVISORY TEAM SECTION
=========================== */

/* Type header card (left/right colored block) */
.members-type-header {
    padding: 45px 38px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.members-type-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

.members-type-header--1 {
    background: linear-gradient(145deg, #192f59 0%, #1a4a80 100%);
}

.members-type-header--2 {
    background: linear-gradient(145deg, #0f3d2a 0%, #1a6645 100%);
}

.members-type-header--3 {
    background: linear-gradient(145deg, #2d1b4e 0%, #4a2d7a 100%);
}

.members-type-header--4 {
    background: linear-gradient(145deg, #1a2d50 0%, #0f3d55 100%);
}

.members-type-header>* {
    position: relative;
    z-index: 1;
}

.members-type-icon {
    width: 62px;
    height: 62px;
    background: rgba(61, 177, 102, 0.18);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.members-type-num {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color-2);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.members-type-header h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.35;
}

.members-type-header p {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Roles card (white, right/left column) */
.members-roles-card {
    background: #fff;
    padding: 38px 38px;
    border: 1px solid #e8edf5;
    border-top: 5px solid var(--theme-color-2);
}

.members-roles-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-color-1);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.members-roles-label i {
    color: var(--theme-color-2);
    font-size: 17px;
}

.members-roles-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.members-role-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f4f9;
    transition: all 0.3s;
}

.members-role-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.members-role-item:first-child {
    padding-top: 0;
}

.members-role-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: rgba(61, 177, 102, 0.08);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s;
}

.members-role-item:hover .members-role-icon {
    background: var(--theme-color-1);
    color: var(--theme-color-2);
}

.members-role-item h5 {
    font-size: 18px;
    color: var(--theme-color-1);
    margin-bottom: 3px;
}

.members-role-item p {
    margin: 0;
}

/* ===========================
   COLLECTIVE EXPERTISE
=========================== */
.members-value-card {
    background: #f4f7fb;
    padding: 30px 28px;
    height: 100%;
    border-bottom: 4px solid transparent;
    transition: all 0.5s;
}

.members-value-card:hover {
    border-bottom-color: var(--theme-color-2);
    box-shadow: 0 8px 30px rgba(25, 47, 89, 0.08);
    transform: translateY(-4px);
    background: #fff;
}

.members-value-card--dark {
    background: var(--theme-color-1);
}

.members-value-card--dark h5 {
    color: #fff;
}

.members-value-card--dark p {
    color: #96a2b8;
}

.members-value-card--dark:hover {
    background: var(--theme-color-1);
}

.members-value-card--dark .members-value-icon {
    background: rgba(61, 177, 102, 0.15);
}

.members-value-icon {
    width: 55px;
    height: 55px;
    background: rgba(61, 177, 102, 0.1);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.members-value-card h5 {
    font-size: 18px;
    color: var(--theme-color-1);
    margin-bottom: 10px;
}

.members-value-card p {
    font-size: 14px;
    color: #5f6b7a;
    line-height: 1.75;
    margin: 0;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 991px) {

    .members-domain-strip {
        flex-wrap: wrap;
    }

    .members-domain-item {
        flex: 1 1 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .members-domain-divider {
        display: none;
    }

    .members-type-header {
        padding: 35px 28px;
        min-height: auto;
        justify-content: flex-start;
    }

    .members-type-header h3 {
        font-size: 20px;
    }

    .members-roles-card {
        padding: 30px 25px;
    }

}

@media (max-width: 575px) {

    .members-domain-item {
        flex: 1 1 100%;
    }

    .members-roles-grid {
        gap: 0;
    }

}

/* ===========================
   CONTACT PAGE
=========================== */

section.contact-page-intro {
    background: #fff;
}

.contact-intro-card {
    background: linear-gradient(145deg, var(--theme-color-1) 0%, #0f1e3d 100%);
    padding: 55px 45px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-intro-card::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(61, 177, 102, 0.08);
    border-radius: 50%;
    top: -160px;
    right: -120px;
}

.contact-intro-icon {
    width: 85px;
    height: 85px;
    background: rgba(61, 177, 102, 0.12);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.contact-intro-card h3 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

ul.contact-help-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

ul.contact-help-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 18px;
    color: #d1d7e2;
    line-height: 1.8;
    font-size: 15px;
}

ul.contact-help-list li:last-child {
    margin-bottom: 0;
}

ul.contact-help-list li::before {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    background: rgba(61, 177, 102, 0.12);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
}

.contact-form-area form {
    margin-top: 20px;
}

.contact-form-area .form-group {
    margin-bottom: 25px;
}

.contact-form-area .btn-button {
    border: none;
}

section.contact-bottom-cta {
    padding-top: 0;
}

@media (max-width: 991px) {

    .contact-intro-card {
        padding: 40px 30px;
    }

    .contact-intro-card h3 {
        font-size: 28px;
    }

}

/* Policy Section */

section.policy-section {
    background: #f8fafc;
}

.policy-wrapper {
    max-width: 1100px;
    margin: auto;
}

.policy-top-content {
    margin-bottom: 70px;
}

.policy-item {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 45px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.policy-item::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 0%;
    background: var(--theme-color-2);
    left: 0;
    top: 0;
    transition: all 0.5s;
}

.policy-item:hover::before {
    height: 100%;
}

.policy-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.policy-number {
    min-width: 85px;
    height: 85px;
    background: var(--theme-color-1);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-content h3 {
    font-size: 28px;
    color: var(--theme-color-1);
    margin-bottom: 20px;
}

.policy-content p {
    color: #5f6b7a;
    line-height: 2;
    margin-bottom: 20px;
}

ul.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.policy-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    color: #5f6b7a;
    line-height: 1.9;
}

ul.policy-list li:last-child {
    margin-bottom: 0;
}

ul.policy-list li::before {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    background: rgba(61, 177, 102, 0.12);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
}

.policy-contact-box {
    background: linear-gradient(135deg, #192f59 0%, #0f172a 100%);
    padding: 60px;
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}

.policy-contact-box::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(61, 177, 102, 0.08);
    border-radius: 50%;
    top: -180px;
    right: -180px;
}

.policy-contact-box h3 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

.policy-contact-box p {
    color: #d1d7e2;
    line-height: 1.9;
    margin-bottom: 35px;
}

.policy-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.policy-contact-item {
    background: rgba(255, 255, 255, 0.06);
    padding: 30px;
}

.policy-contact-item i {
    width: 65px;
    height: 65px;
    background: rgba(61, 177, 102, 0.12);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.policy-contact-item h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
}

.policy-contact-item p,
.policy-contact-item a {
    color: #d1d7e2;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .policy-item {
        flex-direction: column;
        padding: 35px 25px;
        gap: 25px;
    }

    .policy-content h3 {
        font-size: 28px;
    }

    .policy-contact-box {
        padding: 50px 30px;
    }

    .policy-contact-grid {
        grid-template-columns: 1fr;
    }

}

section.service-details-section {
    background: #f8fafc;
}

.service-details-image-area {
    position: relative;
    overflow: hidden;
}

img.service-details-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.service-details-experience {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--theme-color-1);
    padding: 30px;
    min-width: 260px;
}

.service-details-experience h4 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 10px;
}

.service-details-experience p {
    color: #d1d7e2;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-feature-wrapper {
    margin-top: 100px;
}

.service-feature-card {
    background: #fff;
    padding: 40px 35px;
    height: 100%;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 4px;
    background: var(--theme-color-2);
    left: 0;
    top: 0;
    transition: all 0.5s;
}

.service-feature-card:hover::before {
    width: 100%;
}

.service-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-feature-icon {
    width: 85px;
    height: 85px;
    background: rgba(61, 177, 102, 0.1);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 30px;
}

.service-feature-card h4 {
    font-size: 28px;
    line-height: 1.4;
    color: var(--theme-color-1);
    margin-bottom: 18px;
}

.service-feature-card p {
    color: #5f6b7a;
    line-height: 1.9;
    margin-bottom: 0;
}

@media (max-width: 991px) {

    img.service-details-image {
        height: 500px;
    }

    .service-details-experience {
        left: 20px;
        bottom: 20px;
        padding: 25px;
    }

    .service-feature-card {
        padding: 35px 25px;
    }

    .service-feature-card h4 {
        font-size: 24px;
    }

}