/* =========================================================
   ROOT
========================================================= */

:root {

    --primary: #173f47;
    --primary-dark: #102f35;

    --secondary: #2e7f82;

    --gold: #d9b75b;

    --cream: #f7f5ef;

    --light-teal: #edf6f5;

    --white: #ffffff;

    --black: #1d292c;

    --text: #526468;

    --border: #e3ebeb;

    --shadow:
        0 15px 50px rgba(23, 63, 71, 0.10);

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    color: var(--text);

    line-height: 1.7;

    background: #ffffff;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {

    width: 92%;

    max-width: 1200px;

    margin: auto;

}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    background: var(--primary);

    color: #ffffff;

    font-size: 13px;
}

.top-bar-inner {

    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.top-left,
.top-right {

    display: flex;

    align-items: center;

    gap: 20px;

}

.top-right a {

    color: #ffffff;

    transition: 0.3s;

}

.top-right a:hover {

    color: var(--gold);

}

.top-bar i {

    margin-right: 5px;

    color: var(--gold);

}


/* =========================================================
   HEADER
========================================================= */

.main-header {

    position: sticky;

    top: 0;

    z-index: 9999;

    background: #ffffff;

    box-shadow:
        0 4px 25px rgba(0,0,0,0.06);

}

.header-inner {

    min-height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}

/* =========================================
   HEADER
========================================= */

.site-header {
    position: relative;
    width: 100%;
    height: 92px;

    background: #ffffff;

    z-index: 1000;

    border-bottom: 1px solid rgba(23, 63, 71, 0.08);

    transition: all 0.35s ease;
}


/* STICKY HEADER */

.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 8px 35px rgba(23, 63, 71, 0.08);

    animation: headerDrop 0.4s ease forwards;
}


@keyframes headerDrop {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}


/* HEADER INNER */

.header-inner {
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   LOGO
========================================= */

.site-logo {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;
}

.site-logo img {
    width: auto;
    max-width: 245px;
    max-height: 68px;

    display: block;
}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.main-navigation {
    margin-left: auto;
    margin-right: 35px;
}

.main-navigation > ul {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;

    gap: 34px;
}

.main-navigation li {
    position: relative;
}

.main-navigation > ul > li > a {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 35px 0;

    color: #173f47;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.3s ease;
}


.main-navigation > ul > li > a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 25px;

    width: 0;
    height: 2px;

    background: #173f47;

    transition: width 0.35s ease;
}


.main-navigation > ul > li > a:hover::after,
.main-navigation > ul > li > a.active::after {
    width: 100%;
}


.main-navigation > ul > li > a:hover,
.main-navigation > ul > li > a.active {
    color: #173f47;
}


/* DROPDOWN ARROW */

.dropdown-arrow {
    font-size: 14px;
    line-height: 1;
    transition: transform 0.3s ease;
    display: none;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}


/* =========================================
   DROPDOWN
========================================= */

.dropdown-menu {
    position: absolute;

    top: calc(100% + 1px);
    left: -20px;

    width: 265px;

    padding: 12px 0;

    margin: 0;

    list-style: none;

    background: #ffffff;

    border-top: 2px solid #173f47;

    box-shadow:
        0 20px 50px rgba(23, 63, 71, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}


.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: flex;

    padding: 11px 20px;

    color: #173f47;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    transition:
        background 0.3s ease,
        padding-left 0.3s ease;
}


.dropdown-menu li a:hover {
    background: #f3f7f6;

    padding-left: 26px;
}



.hidden-input-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.grecaptcha-badge { 
    visibility: hidden;
}
   
.btn-loader {
    margin-left: 8px;
}

button[type="submit"]:disabled {
    cursor: not-allowed;
    opacity: 0.7;
} 
    
/* =========================================
   APPOINTMENT BUTTON
========================================= */

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}


.header-appointment {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    padding: 0 19px;

    color: #ffffff;

    background: #173f47;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    transition: all 0.35s ease;
}


.header-appointment i {
    font-style: normal;

    font-size: 17px;

    transition: transform 0.3s ease;
}


.header-appointment:hover {
    color: #ffffff;

    background: #103238;
}


.header-appointment:hover i {
    transform: translate(3px, -3px);
}


/* =========================================
   MOBILE TOGGLE
========================================= */

.mobile-menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}


.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #173f47;
    transition: all 0.3s ease;
}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu-overlay {
    position: fixed;

    inset: 0;

    background: rgba(9, 30, 34, 0.55);

    z-index: 1090;

    opacity: 0;
    visibility: hidden;

    transition: all 0.35s ease;
}


.mobile-menu {
    position: fixed;

    top: 0;
    right: 0;

    width: min(390px, 90%);

    height: 100vh;

    background: #ffffff;

    z-index: 1100;

    transform: translateX(100%);

    transition: transform 0.45s cubic-bezier(.77,0,.18,1);

    display: flex;
    flex-direction: column;

    overflow-y: auto;
}


body.mobile-menu-open {
    overflow: hidden;
}


body.mobile-menu-open .mobile-menu {
    transform: translateX(0);
}


body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}


/* MOBILE HEADER */

.mobile-menu-header {
    min-height: 90px;

    padding: 20px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(23, 63, 71, 0.1);
}


.mobile-logo img {
    width: auto;
    max-width: 190px;
    max-height: 55px;
}


/* CLOSE */

.mobile-menu-close {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(23, 63, 71, 0.15);

    background: transparent;

    cursor: pointer;

    position: relative;
}


.mobile-menu-close span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 20px;
    height: 1.5px;

    background: #173f47;
}


.mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}


/* MOBILE NAV */

.mobile-navigation {
    padding: 25px;
}

.mobile-navigation ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.mobile-navigation > ul > li {
    border-bottom: 1px solid rgba(23, 63, 71, 0.09);
}


.mobile-navigation > ul > li > a {
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #173f47;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;
}


/* MOBILE SUBMENU */

.mobile-dropdown > a span {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(23, 63, 71, 0.15);

    font-size: 18px;

    transition: transform 0.3s ease;
}


.mobile-dropdown.active > a span {
    transform: rotate(45deg);
}


.mobile-dropdown > ul {
    display: none;

    padding: 0 0 12px;
}


.mobile-dropdown.active > ul {
    display: block;
}


.mobile-dropdown > ul li a {
    display: block;

    padding: 9px 0 9px 15px;

    color: #607579;

    font-size: 13px;

    text-decoration: none;
}


/* MOBILE BOTTOM */

.mobile-menu-bottom {
    margin-top: auto;

    padding: 25px;

    background: #173f47;
}


.mobile-menu-bottom span {
    display: block;

    margin-bottom: 12px;

    color: rgba(255,255,255,0.65);

    font-size: 11px;
}


.mobile-menu-bottom a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}


.mobile-menu-bottom a i {
    font-style: normal;
    font-size: 18px;
}


/* =========================================
   RESPONSIVE HEADER
========================================= */

@media (max-width: 1199px) {

    .main-navigation > ul {
        gap: 22px;
    }

    .main-navigation {
        margin-right: 20px;
    }

    .header-appointment {
        padding: 0 15px;
    }

}


@media (max-width: 991px) {

    .site-header,
    .header-inner {
        height: 80px;
    }

    .site-logo img {
        max-width: 205px;
        max-height: 58px;
    }

    .main-navigation,
    .header-appointment {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

}


@media (max-width: 480px) {

    .header-inner {
        padding: 0;
    }

    .site-logo img {
        max-width: 164px;
        margin-top: -8px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }

}
/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

}

.logo-symbol {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 26px;

    font-weight: 800;

}

.logo-text strong {

    display: block;

    color: var(--primary);

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 27px;

    line-height: 1;

}

.logo-text small {

    display: block;

    color: #6c797c;

    font-size: 10px;

    letter-spacing: 0.5px;

    margin-top: 5px;

}


/* NAVIGATION */

.main-nav {

    display: flex;

    align-items: center;

    gap: 30px;

}

.main-nav a {

    position: relative;

    color: var(--primary);

    font-size: 14px;

    font-weight: 600;

    padding: 8px 0;

}

.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: 0.3s;

}

.main-nav a:hover::after,
.main-nav a.active::after {

    width: 100%;

}


/* HEADER BUTTON */

.header-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 19px;

    background: var(--primary);

    color: #ffffff;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s;

}

.header-btn:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

}


/* MOBILE MENU */

.mobile-menu-btn {

    display: none;

    width: 44px;

    height: 44px;

    border: 0;

    border-radius: 8px;

    background: var(--primary);

    color: #ffffff;

    font-size: 19px;

}

.mobile-nav {

    display: none;

}


/* =========================================================
   HERO SLIDER
========================================================= */

.hero-slider {

    position: relative;

    width: 100%;

    height: 650px;

    overflow: hidden;

    background: var(--primary);

}


/* SLIDES */

.hero-slide {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    background-size: cover;

    background-position: center;

    opacity: 0;

    visibility: hidden;

    transform: scale(1.04);

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 6s ease;

}

.hero-slide.active {

    opacity: 1;

    visibility: visible;

    transform: scale(1);

}


/* OVERLAY */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(16, 47, 53, 0.92) 0%,
            rgba(16, 47, 53, 0.78) 34%,
            rgba(16, 47, 53, 0.28) 67%,
            rgba(16, 47, 53, 0.08) 100%
        );

}


/* HERO CONTENT */

.hero-container {

    height: 100%;

    display: flex;

    align-items: center;

    position: relative;

    z-index: 2;

}

.hero-content {

    max-width: 690px;

    color: #ffffff;

}

.hero-small-title {

    display: inline-block;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    color: var(--gold);

    margin-bottom: 18px;

}

.hero-content h1 {

font-family:
        "Plus Jakarta Sans",
        sans-serif;

font-size: clamp(38px, 5vw, 52px);

line-height: 1.10;

font-weight: 800;

margin-bottom: 23px;
}

.hero-content h1 span {

    display: block;

    color: #e8c96f;

}

.hero-content p {

    max-width: 620px;

    font-size: 17px;

    line-height: 1.8;

    color: rgba(255,255,255,.88);

    margin-bottom: 30px;

}


/* HERO BUTTONS */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}

.primary-btn,
.secondary-btn,
.white-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 24px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s;

}

.primary-btn {

    background: var(--gold);

    color: var(--primary);

}

.primary-btn:hover {

    background: #ffffff;

    transform: translateY(-3px);

}

.secondary-btn {

    border: 1px solid rgba(255,255,255,.7);

    color: #ffffff;

}

.secondary-btn:hover {

    background: #ffffff;

    color: var(--primary);

}


/* ARROWS */

.slider-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 52px;

    height: 52px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.45);

    background: rgba(23,63,71,.45);

    backdrop-filter: blur(5px);

    color: #ffffff;

    z-index: 10;

    cursor: pointer;

    transition: 0.3s;

}

.slider-arrow:hover {

    background: var(--gold);

    color: var(--primary);

}

.slider-prev {

    left: 25px;

}

.slider-next {

    right: 25px;

}


/* DOTS */

.slider-dots {

    position: absolute;

    left: 50%;

    bottom: 28px;

    transform: translateX(-50%);

    display: flex;

    gap: 9px;

    z-index: 10;

}

.slider-dot {

    width: 10px;

    height: 10px;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.45);

    cursor: pointer;

    transition: 0.3s;

}

.slider-dot.active {

    width: 30px;

    border-radius: 10px;

    background: var(--gold);

}


/* =========================================================
   QUICK STRIP
========================================================= */

.quick-strip {

    background: var(--primary);

    color: #ffffff;

}

.quick-strip-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}

.quick-item {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 20px 18px;

    border-right:
        1px solid rgba(255,255,255,.1);

}

.quick-item:last-child {

    border-right: 0;

}

.quick-icon {

    width: 43px;

    height: 43px;

    flex-shrink: 0;

    border-radius: 12px;

    background: rgba(255,255,255,.1);

    color: var(--gold);

    display: flex;

    align-items: center;

    justify-content: center;

}

.quick-item strong {display: block;font-size: 14px;}

.quick-item span {display: block;color: rgba(255,255,255,.62);font-size: 13px;}


/* =========================================================
   COMMON SECTION
========================================================= */

.section-padding {padding: 70px 0;}

.section-heading {max-width: 750px;margin-bottom: 30px;}

.section-heading.center {

    text-align: center;

    margin-left: auto;

    margin-right: auto;

}

.section-tag {

    display: inline-block;

    color: var(--secondary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.8px;

    margin-bottom: 10px;

}

.section-heading h2,
.about-content h2,
.conditions-content h2 {

font-family:
        "Plus Jakarta Sans",
        sans-serif;

font-size: clamp(32px, 4vw, 43px);

line-height: 1.17;

color: var(--primary);

font-weight: 800;
}

.section-heading h2 span,
.about-content h2 span,
.conditions-content h2 span {

    color: var(--secondary);

}

.section-heading p {

    max-width: 680px;

    margin: 15px auto 0;

    color: var(--text);

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    background: #ffffff;

}

.about-grid {

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 80px;

    align-items: center;

}


/* ABOUT VISUAL */

.about-visual {

    position: relative;

    min-height: 480px;

}

.about-main-box {

    position: absolute;

    inset: 0 50px 0 0;

    border-radius: 30px;

    padding: 50px;

    background:
        linear-gradient(
            145deg,
            var(--primary),
            #2b7176
        );

    color: #ffffff;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    justify-content: center;

}

.about-main-box::after {

    content: "";

    position: absolute;

    width: 330px;

    height: 330px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.15);

    right: -130px;

    bottom: -120px;

}

.about-number {

    font-size: 70px;

    font-weight: 800;

    color: rgba(255,255,255,.08);

    position: absolute;

    top: 25px;

    right: 35px;

}

.about-label {

    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;

}

.about-main-box h3 {

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 34px;

    line-height: 1.2;

    max-width: 390px;

    position: relative;

    z-index: 2;

}

.about-main-box p {

    max-width: 400px;

    color: rgba(255,255,255,.76);

    margin-top: 18px;

    position: relative;

    z-index: 2;

}

.about-circle {

    position: absolute;

    width: 130px;

    height: 130px;

    right: 0;

    bottom: 45px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 45px;

    border: 10px solid #ffffff;

}


/* ABOUT CONTENT */

.about-content h2 {

    margin-bottom: 20px;

}

.about-content p {

    margin-bottom: 14px;

}

.lead-text {

    font-size: 17px;

    color: #45595d;

}

.about-features {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin: 28px 0;

}

.about-feature {

    display: flex;

    gap: 12px;

}

.about-feature > i {

    width: 27px;

    height: 27px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #e8f3f1;

    color: var(--secondary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

}

.about-feature strong {display: block;color: var(--primary);font-size: 15px;}

.about-feature span {display: block;color: var(--text);font-size: 14px;margin-top: 2px;}

.text-btn {

    color: var(--primary);

    font-weight: 800;

    font-size: 14px;

}

.text-btn i {

    color: var(--secondary);

    margin-left: 5px;

    transition: .3s;

}

.text-btn:hover i {

    margin-left: 10px;

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    background: var(--cream);

}

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}

.service-card {position: relative;background: #ffffff;border: 1px solid var(--border);border-radius: 22px;padding: 30px;overflow: hidden;transition: .35s;min-height: 295px;}

.service-card:hover {transform: translateY(-8px);/* box-shadow: var(--shadow); */border-color: transparent;}

.service-icon {

    width: 58px;

    height: 58px;

    border-radius: 16px;

    background: #eaf3f1;

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    margin-bottom: 20px;

}

.service-number {

    position: absolute;

    top: 22px;

    right: 25px;

    font-size: 12px;

    font-weight: 800;

    color: #bcc9ca;

}

.service-card h3 {

    color: var(--primary);

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 20px;

    margin-bottom: 10px;

}

.service-card p {font-size: 15px;color: var(--text);margin-bottom: 20px;}

.service-card > a {

    color: var(--secondary);

    font-size: 13px;

    font-weight: 800;

}

.service-card > a i {

    margin-left: 5px;

}


/* =========================================================
   APPROACH
========================================================= */

.approach-section {

    background: #ffffff;

}

.approach-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 15px;

}

.approach-card {

    position: relative;

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 25px 20px;

    transition: .3s;

}

.approach-card:hover {

    background: var(--primary);

    color: #ffffff;

    transform: translateY(-5px);

}

.approach-card:hover h3 {

    color: #ffffff;

}

.approach-card:hover p {

    color: rgba(255,255,255,.7);

}

.approach-number {color: var(--gold);font-size: 12px;font-weight: 800;display: none;}

.approach-icon {

    width: 48px;

    height: 48px;

    margin: 15px 0;

    background: #edf5f3;

    color: var(--secondary);

    border-radius: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.approach-card h3 {

    color: var(--primary);

    font-size: 17px;

    line-height: 1.35;

    margin-bottom: 10px;

}

.approach-card p {

    font-size: 13px;

}


/* =========================================================
   CONDITIONS
========================================================= */

.conditions-section {

    background: var(--cream);

}

.conditions-grid {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 70px;

    align-items: center;

}

.conditions-content h2 {

    margin-bottom: 20px;

}

.conditions-content p {

    margin-bottom: 25px;

}

.conditions-list {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}
.conditions-list span:hover{
    
background: #173f47;
    
color: #fff;
}
.conditions-list span {background: #ffffff;border: 1px solid var(--border);padding: 10px 15px;border-radius: 50px;color: var(--primary);font-size: 14px;font-weight: 600;transition: .4s;}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding: 90px 0;

    background: #ffffff;

}

.cta-box {

    background:
        linear-gradient(
            120deg,
            var(--primary),
            #285f65
        );

    color: #ffffff;

    padding: 60px;

    border-radius: 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}

.cta-box h2 {

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 40px;

    line-height: 1.15;

    max-width: 650px;

    margin-bottom: 12px;

}

.cta-box p {

    max-width: 650px;

    color: rgba(255,255,255,.75);

}

.cta-box .section-tag {

    color: var(--gold);

}

.white-btn {

    background: #ffffff;

    color: var(--primary);

    white-space: nowrap;

}

.white-btn:hover {

    background: var(--gold);

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: #102f35;

    color: #ffffff;

}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.3fr .8fr .9fr 1fr;

    gap: 50px;

    padding: 70px 0 55px;

}

.footer-logo {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

}

.footer-logo .logo-symbol {

    width: 43px;

    height: 43px;

    font-size: 21px;

}

.footer-logo .logo-text strong {

    color: #ffffff;

    font-size: 22px;

}

.footer-logo .logo-text small {

    color: #aebfc1;

}

.footer-about > p {max-width: 350px;color: #aebfc1;font-size: 15px;}

.footer-social {

    display: flex;

    gap: 8px;

    margin-top: 20px;

}

.footer-social a {

    width: 35px;

    height: 35px;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;

}

.footer-social a:hover {

    background: var(--gold);

    color: var(--primary);

}

.footer-column h3 {

    color: #ffffff;

    font-size: 16px;

    margin-bottom: 18px;

}

.footer-column a {display: block;color: #aebfc1;font-size: 15px;margin: 9px 0;transition: .3s;}

.footer-column a:hover {

    color: var(--gold);

    padding-left: 4px;

}

.footer-contact p,
.footer-contact a {color: #aebfc1;font-size: 15px;line-height: 1.7;margin-bottom: 13px;}

.footer-contact i {

    color: var(--gold);

    width: 20px;

}

.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,.08);

    padding: 18px 0;

    text-align: center;

}
.footer-bottom p a{
    color:#fff;
}
.footer-bottom p {color: #8fa7a9;font-size: 14px;}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .main-nav {

        gap: 18px;

    }

    .header-btn {

        display: none;

    }

    .approach-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media(max-width:850px) {

    .main-nav {

        display: none;

    }

    .mobile-menu-btn {

        display: block;

    }

    .mobile-nav {

        position: absolute;

        left: 0;

        right: 0;

        top: 88px;

        background: #ffffff;

        padding: 20px 5%;

        box-shadow:
            0 10px 25px rgba(0,0,0,.08);

        display: none;

    }

    .mobile-nav.open {

        display: block;

    }

    .mobile-nav a {

        display: block;

        color: var(--primary);

        font-weight: 600;

        padding: 12px 0;

        border-bottom:
            1px solid var(--border);

    }

    .hero-slider {

        height: 620px;

    }

    .about-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .conditions-grid {

        grid-template-columns: 1fr;

    }

    .quick-strip-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .quick-item {

        border-bottom:
            1px solid rgba(255,255,255,.1);

    }

    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media(max-width:600px) {

    .top-left {

        display: none;

    }

    .top-bar-inner {

        justify-content: center;

    }

    .top-right {

        gap: 10px;

    }

    .top-right a {

        font-size: 11px;

    }

    .logo-text strong {

        font-size: 22px;

    }

    .logo-text small {

        font-size: 8px;

    }

    .logo-symbol {

        width: 43px;

        height: 43px;

    }

    .hero-slider {

        height: 650px;

    }

    .hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(16,47,53,.92),
                rgba(16,47,53,.68)
            );

    }

    .hero-content h1 {

        font-size: 39px;

    }

    .hero-content p {

        font-size: 15px;

    }

    .slider-arrow {

        width: 40px;

        height: 40px;

    }

    .slider-prev {

left: 12px;

display: none;

}

    .slider-next {

right: 12px;

display: none;

}

    .quick-strip-grid {

        grid-template-columns: 1fr;

    }

    .quick-item {

        border-right: 0;

    }

    .about-main-box {

        inset: 0;

        padding: 35px;

    }

    .about-circle {

        display: none;

    }

    .about-main-box h3 {

        font-size: 28px;

    }

    .about-features {

        grid-template-columns: 1fr;

    }

    .services-grid {

        grid-template-columns: 1fr;

    }

    .approach-grid {

        grid-template-columns: 1fr;

    }

    .cta-box {

        padding: 40px 25px;

        flex-direction: column;

        align-items: flex-start;

    }

    .cta-box h2 {

        font-size: 30px;

    }

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .section-padding {

        padding: 70px 0;

    }

}


@media(max-width:400px) {

    .hero-content h1 {

font-size: 28px;

}

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .primary-btn,
    .secondary-btn {

        width: 100%;

    }

}/* =========================================================
   ABOUT PAGE
========================================================= */


/* PAGE BANNER
========================================================= */

.inner-page-banner {

position: relative;

min-height: 450px;

display: flex;

align-items: center;

background-image: url("../images/innerban.webp") !important;

background-size: cover;

background-position: 40% 60%;

overflow: hidden;
}


.inner-banner-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(18, 59, 67, .96),
            rgba(18, 59, 67, .76),
            rgba(18, 59, 67, .25)
        );
}


.inner-banner-content {

position: relative;

z-index: 2;

max-width: 720px;

color: #fff;

padding: 40px 0;
}


.inner-banner-content span {

display: inline-block;

margin-bottom: 5px;

color: #e1c56b;

font-size: 35px;

font-weight: 800;

letter-spacing: 2px;
}


.inner-banner-content h1 {

margin: 0 0 22px;

font-family: "Plus Jakarta Sans", sans-serif;

font-size: clamp(40px, 5vw, 64px);

line-height: 1.12;

font-weight: 800;

display: none;
}


.inner-banner-content h1 strong {

    display: block;

    color: #e1c56b;

    font-weight: 800;
}


.inner-banner-content p {

max-width: 580px;

margin: 0;

color: rgba(255,255,255,.88);

font-size: 17px;

line-height: 1.8;
}



/* ABOUT INTRO
========================================================= */

.about-intro-grid {

    display: grid;

    grid-template-columns:
        0.95fr 1.05fr;

    gap: 80px;

    align-items: center;
}


.about-image-wrap {

    position: relative;

    padding: 0 25px 25px 0;
}


.about-image {

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    min-height: 520px;
}


.about-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(18,59,67,.25)
        );
}


.about-image img {

    width: 100%;

    height: 100%;

    min-height: 520px;

    object-fit: cover;

    display: block;
}


.about-image-wrap::before {

    content: "";

    position: absolute;

    left: 25px;

    bottom: 0;

    width: 80%;

    height: 75%;

    border: 2px solid #d9bb63;

    border-radius: 20px;

    z-index: -1;
}


.about-image-badge {

    position: absolute;

    right: 0;

    bottom: 50px;

    padding: 20px 25px;

    background: #fff;

    border-radius: 12px;

    box-shadow:
        0 15px 40px rgba(18,59,67,.15);

    display: flex;

    flex-direction: column;

    gap: 4px;
}


.about-image-badge strong {

    color: #173f47;

    font-size: 16px;
}


.about-image-badge span {

    color: #777;

    font-size: 13px;
}


.about-intro-content h2 {

    margin: 15px 0 25px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.2;

    color: #173f47;
}


.about-intro-content h2 span {

    display: block;

    color: #c39f42;
}


.about-intro-content p {

    color: #687477;

    line-height: 1.8;

    margin-bottom: 17px;

    font-size: 16px;
}



/* APPROACH
========================================================= */

.about-approach {

    background: #f5f8f7;
}


.about-approach .approach-grid {display: grid;grid-template-columns: repeat(4, 1fr);gap: 20px;margin-top: 50px;}


.approach-card {background: #fff;padding: 35px 18px;border-radius: 16px;border: 1px solid #e6eded;transition: .35s;}


.approach-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(23,63,71,.10);

    border-color: #d9bb63;
}


.approach-icon {

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #edf5f3;

    color: #173f47;

    font-size: 24px;

    margin-bottom: 25px;
}


.approach-card h3 {

    margin-bottom: 13px;

    color: #173f47;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 20px;
}


.approach-card p {margin: 0;color: #718080;line-height: 1.7;font-size: 16px;}



/* WHY ABLERISE
========================================================= */

.why-about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}


.why-about-content h2 {

    margin: 15px 0 25px;

    color: #173f47;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.2;
}


.why-about-content h2 span {

    display: block;

    color: #c39f42;
}


.why-about-content > p {

    color: #6c797b;

    line-height: 1.8;

    margin-bottom: 18px;
}


.about-check-list {

    margin-top: 30px;

    display: grid;

    gap: 15px;
}


.about-check {

    display: flex;

    align-items: center;

    gap: 14px;

    color: #334f53;

    font-weight: 600;
}


.about-check i {

    width: 27px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e6f1ee;

    color: #173f47;

    font-size: 12px;
}


.why-about-image {

    height: 550px;

    border-radius: 22px;

    overflow: hidden;
}


.why-about-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}



/* SERVICES STRIP
========================================================= */

.about-services-strip {

    padding: 75px 0;

    background: #173f47;

    color: #fff;
}


.about-services-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.about-services-inner > div {

    max-width: 700px;
}


.about-services-inner span {

    color: #d9bb63;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.about-services-inner h2 {

    margin: 12px 0 0;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.25;
}


.light-btn {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 24px;

    background: #fff;

    color: #173f47;

    border-radius: 6px;

    font-weight: 700;

    text-decoration: none;

    transition: .3s;
}


.light-btn:hover {

    background: #d9bb63;

    color: #173f47;

}



/* CTA
========================================================= */

.about-cta {

    background: #f6f8f7;
}


.about-cta-box {

    position: relative;

    overflow: hidden;

    padding: 60px;

    border-radius: 22px;

    background:
        linear-gradient(
            120deg,
            #e9f1ef,
            #f8f6ec
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


.about-cta-content {

    max-width: 650px;
}


.about-cta-content > span {

    color: #a3832e;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.about-cta-content h2 {

    margin: 12px 0 15px;

    color: #173f47;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.2;
}


.about-cta-content p {

    margin: 0;

    color: #657274;

    line-height: 1.7;
}


.about-cta-buttons {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

    flex-shrink: 0;
}


.call-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #173f47;

    text-decoration: none;

    font-weight: 700;
}



/* MOBILE
========================================================= */

@media(max-width: 991px) {

    .about-intro-grid,
    .why-about-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .approach-grid {

grid-template-columns: repeat(2, 1fr);

}


    .about-services-inner,
    .about-cta-box {

        flex-direction: column;

        align-items: flex-start;

    }


    .about-cta-buttons {

        flex-direction: row;

        align-items: center;

        flex-wrap: wrap;

    }

}


@media(max-width: 767px) {

    .inner-page-banner {min-height: 270px;}.inner-banner-content span{
        font-size: 20px;
}.inner-banner-content p{
        font-size: 14px;
}


    .about-image {

        min-height: 400px;

    }


    .about-image img {

        min-height: 400px;

    }


    .approach-grid {

grid-template-columns: 1fr !important;

}


    .why-about-image {

        height: 400px;

    }


    .about-cta-box {

        padding: 35px 25px;

    }


    .about-cta-buttons {

        flex-direction: column;

        align-items: flex-start;

    }

}
/* =========================================================
   EXPERTISE PAGE
========================================================= */

.expertise-banner {
    background-image: url("../images/expertise-banner.jpg");
}


/* INTRO
========================================================= */

.expertise-intro {
    padding-bottom: 0;
}


/* EXPERTISE LIST
========================================================= */

.expertise-list-section {
    padding: 20px 0 90px;
}


.expertise-row {

display: grid;

grid-template-columns: 1fr 1fr;

gap: 75px;

align-items: center;

padding: 50px 0 50px;

border-bottom: 1px solid #e5eceb;
}


.expertise-row:last-child {
    border-bottom: 0;
}


.expertise-row.reverse .expertise-image {
    order: 2;
}


.expertise-row.reverse .expertise-content {
    order: 1;
}


/* IMAGE
========================================================= */

.expertise-image {

    position: relative;

    height: 450px;

    border-radius: 22px;

    overflow: hidden;

    background: #edf3f1;
}


.expertise-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(18,59,67,.35)
        );
}


.expertise-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .6s ease;
}


.expertise-row:hover .expertise-image img {

    transform: scale(1.04);
}


.expertise-number {

    position: absolute;

    z-index: 2;

    left: 25px;

    bottom: 22px;

    color: #fff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 50px;

    font-weight: 800;

    line-height: 1;
}


/* CONTENT
========================================================= */

.expertise-content {

    max-width: 600px;
}


.expertise-tag {

    display: inline-block;

    color: #a5822f;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

    margin-bottom: 13px;
}


.expertise-content h2 {

    margin: 0 0 20px;

    color: #173f47;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(30px, 3.5vw, 43px);

    line-height: 1.2;
}


.expertise-content p {

    color: #6d7a7b;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 14px;
}


/* LIST
========================================================= */

.expertise-content ul {

    list-style: none;

    margin: 25px 0 0;

    padding: 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px 25px;
}


.expertise-content li {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #355459;

    font-size: 14px;

    font-weight: 600;
}


.expertise-content li i {

    width: 22px;

    height: 22px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e7f1ef;

    color: #173f47;

    font-size: 9px;
}


/* CONDITIONS
========================================================= */

.conditions-section {

    background: #f4f8f7;
}


.condition-pills {

    max-width: 1000px;

    margin: 45px auto 0;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 13px;
}


.condition-pills span {

    padding: 12px 20px;

    background: #fff;

    border: 1px solid #dce7e5;

    border-radius: 50px;

    color: #315257;

    font-size: 14px;

    font-weight: 600;

    transition: .3s;
}


.condition-pills span:hover {

    background: #173f47;

    color: #fff;

    border-color: #173f47;

    transform: translateY(-2px);
}


/* CTA
========================================================= */

.expertise-cta {

    background: #fff;
}


.expertise-cta-box {

    padding: 60px;

    border-radius: 22px;

    background: #173f47;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


.expertise-cta-box > div:first-child {

    max-width: 680px;
}


.expertise-cta-box span {

    color: #d9bb63;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.expertise-cta-box h2 {

    margin: 12px 0 15px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.2;
}


.expertise-cta-box p {

    margin: 0;

    max-width: 600px;

    color: rgba(255,255,255,.78);

    line-height: 1.7;
}


.expertise-cta-buttons {

    flex-shrink: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;
}


.expertise-phone {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #fff;

    text-decoration: none;

    font-weight: 700;
}


/* RESPONSIVE
========================================================= */

@media(max-width: 991px) {

    .expertise-row {

        grid-template-columns: 1fr;

        gap: 40px;

        padding: 55px 0;

    }


    .expertise-row.reverse .expertise-image {

        order: 1;

    }


    .expertise-row.reverse .expertise-content {

        order: 2;

    }


    .expertise-content {

        max-width: 100%;

    }


    .expertise-cta-box {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media(max-width: 767px) {

    .expertise-list-section {

        padding-bottom: 50px;

    }


    .expertise-image {

        height: 350px;

        border-radius: 16px;

    }


    .expertise-content ul {

        grid-template-columns: 1fr;

    }


    .expertise-cta-box {

        padding: 35px 25px;

    }

}/* =========================================================
   ASSESSMENT PAGE
========================================================= */

.assessment-banner {
    background-image: url("../images/assessment-banner.jpg");
}


/* =========================================================
   INTRO
========================================================= */

.assessment-intro {
    background: #fff;
}


.assessment-intro-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 75px;

    align-items: center;
}


.assessment-intro-content h2 {

    margin: 10px 0 22px;

    color: #173f47;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(30px, 4vw, 46px);

    line-height: 1.2;
}


.assessment-intro-content h2 span {

    display: block;

    color: #a3832e;
}


.assessment-intro-content p {

    color: #6d7b7d;

    line-height: 1.8;

    font-size: 15px;

    margin-bottom: 15px;
}


.assessment-highlight {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 28px;

    padding: 18px 20px;

    background: #f1f7f5;

    border-left: 3px solid #d3b052;

    border-radius: 8px;
}


.assessment-highlight > i {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #fff;

    color: #a3832e;
}


.assessment-highlight strong {display: block;color: #173f47;font-size: 15px;margin-bottom: 3px;}


.assessment-highlight p {margin: 0;font-size: 14px;}


/* IMAGE
========================================================= */

.assessment-intro-image {

    position: relative;

    height: 500px;

    border-radius: 25px;

    overflow: visible;
}


.assessment-intro-image > img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 25px;
}


.assessment-image-card {

    position: absolute;

    left: -30px;

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 18px 22px;

    background: #fff;

    border-radius: 12px;

    box-shadow:
        0 15px 40px rgba(23,63,71,.15);
}


.assessment-image-card > i {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf5f3;

    color: #173f47;
}


.assessment-image-card strong {display: block;color: #173f47;font-size: 15px;margin-bottom: 3px;}


.assessment-image-card span {display: block;color: #7a8586;font-size: 13px;}


/* =========================================================
   ASSESSMENT AREAS
========================================================= */

.assessment-areas {

    background: #f4f8f7;
}


.assessment-area-grid {

    margin-top: 50px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.assessment-area-card {

    padding: 32px 28px;

    background: #fff;

    border: 1px solid #e0e9e7;

    border-radius: 18px;

    transition: .35s ease;
}


.assessment-area-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 15px 40px rgba(23,63,71,.08);
}


.assessment-area-icon {

    width: 55px;

    height: 55px;

    margin-bottom: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: #edf5f3;

    color: #173f47;

    font-size: 20px;
}


.assessment-area-card h3 {margin: 0 0 10px;color: #173f47;font-family: "Plus Jakarta Sans", sans-serif;font-size: 22px;}


.assessment-area-card p {margin: 0;color: #788485;line-height: 1.7;font-size: 16px;}


/* =========================================================
   ASSESSMENT PROCESS
========================================================= */

.assessment-process {

    background: #fff;
}


.assessment-steps {

    margin-top: 50px;

    display: grid;

    grid-template-columns:
        1fr 40px 1fr 40px 1fr 40px 1fr;

    align-items: center;
}


.assessment-step {

    text-align: center;

    position: relative;

    padding: 10px;
}


.assessment-step-number {

position: absolute;

right: 0;

display: none;

top: 0;

color: #d3b052;

font-size: 11px;

font-weight: 800;
}


.assessment-step-icon {

    width: 72px;

    height: 72px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf5f3;

    color: #173f47;

    font-size: 22px;
}


.assessment-step h3 {margin: 0 0 10px;color: #173f47;font-family: "Plus Jakarta Sans", sans-serif;font-size: 21px;}


.assessment-step p {margin: 0;color: #7b8586;font-size: 15px;line-height: 1.7;}


.assessment-step-arrow {

display: flex;

justify-content: center;

color: #ffffff;

font-size: 18px;
}


/* =========================================================
   BOOKING
========================================================= */

.assessment-booking {

    background: #f4f8f7;
}


.assessment-booking-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 70px;

    align-items: start;
}


.assessment-booking-info {

    padding-top: 20px;
}


.assessment-booking-info h2 {

    margin: 10px 0 20px;

    color: #173f47;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.2;
}


.assessment-booking-info h2 span {

    display: block;

    color: #a3832e;
}


.assessment-booking-info > p {color: #718081;line-height: 1.8;font-size: 16px;}


/* CONTACT DETAILS
========================================================= */

.booking-contact-list {

    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 20px;
}


.booking-contact-item {

    display: flex;

    align-items: center;

    gap: 15px;
}


.booking-contact-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #fff;

    color: #173f47;

    box-shadow:
        0 5px 20px rgba(23,63,71,.07);
}


.booking-contact-item span {display: block;color: #889293;font-size: 14px;margin-bottom: 3px;}


.booking-contact-item a {color: #173f47;font-weight: 700;font-size: 16px;text-decoration: none;}


/* =========================================================
   FORM
========================================================= */

.assessment-form-wrapper {

    padding: 40px;

    background: #fff;

    border-radius: 20px;

    box-shadow:
        0 15px 50px rgba(23,63,71,.07);
}


.assessment-form {

    width: 100%;
}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.form-group {

    margin-bottom: 20px;
}


.form-group label {display: block;margin-bottom: 8px;color: #274d53;font-size: 14px;font-weight: 700;}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 13px 15px;

    border: 1px solid #dce6e4;

    border-radius: 8px;

    outline: none;

    background: #fbfcfc;

    color: #304f53;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    transition: .25s;

    box-sizing: border-box;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: #8daaa5;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(141,170,165,.12);
}


.form-group textarea {

    resize: vertical;

    min-height: 120px;
}


.form-check {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 22px;
}


.form-check input {

    margin-top: 3px;
}


.form-check label {

    color: #748182;

    font-size: 11px;

    line-height: 1.5;
}


.assessment-submit {

    border: 0;

    cursor: pointer;

    width: auto;
}


.assessment-submit:disabled {

    opacity: .65;

    cursor: not-allowed;
}


/* FORM MESSAGE
========================================================= */

.assessment-message {

    display: none;

    margin-top: 18px;

    padding: 13px 15px;

    border-radius: 7px;

    font-size: 12px;

    line-height: 1.5;
}


.assessment-message.success {

    background: #e8f5ed;

    color: #287147;

    border: 1px solid #cce8d7;
}


.assessment-message.error {

    background: #fbeaea;

    color: #a33c3c;

    border: 1px solid #efd0d0;
}


/* =========================================================
   FAQ
========================================================= */

.assessment-faq {

    background: #fff;
}


.faq-wrapper {

    max-width: 850px;

    margin: 45px auto 0;
}


.faq-item {

    border-bottom: 1px solid #dfe7e5;
}


.faq-question {

    width: 100%;

    padding: 22px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border: 0;

    background: transparent;

    color: #173f47;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 15px;

    font-weight: 700;

    text-align: left;

    cursor: pointer;
}


.faq-question i {

    width: 27px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #edf5f3;

    color: #173f47;

    font-size: 11px;

    transition: .3s;
}


.faq-item.active .faq-question i {

    transform: rotate(45deg);

    background: #173f47;

    color: #fff;
}


.faq-answer {

    display: none;

    padding: 0 50px 20px 0;
}


.faq-answer p {margin: 0;color: #788486;font-size: 15px;line-height: 1.8;}


/* =========================================================
   FINAL CTA
========================================================= */

.assessment-final-cta {

    padding: 70px 0;

    background: #f4f8f7;
}


.assessment-final-box {

    padding: 50px 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    border-radius: 20px;

    background: #173f47;

    color: #fff;
}


.assessment-final-box span {

    color: #d9bb63;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.assessment-final-box h2 {

    margin: 10px 0 8px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 32px;
}


.assessment-final-box p {margin: 0;color: rgba(255,255,255,.72);font-size: 15px;}


.assessment-final-actions {

    display: flex;

    gap: 12px;

    flex-shrink: 0;
}


.assessment-call-btn,
.assessment-whatsapp-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 20px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: .3s;
}


.assessment-call-btn {

    background: #fff;

    color: #173f47;
}


.assessment-whatsapp-btn {

    border: 1px solid rgba(255,255,255,.3);

    color: #fff;
}


.assessment-call-btn:hover,
.assessment-whatsapp-btn:hover {

    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 991px) {

    .assessment-intro-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .assessment-intro-image {

        height: 450px;
    }


    .assessment-area-grid {

        grid-template-columns: repeat(2, 1fr);
    }


    .assessment-steps {

        grid-template-columns: repeat(2, 1fr);

        gap: 35px;
    }


    .assessment-step-arrow {

        display: none;
    }


    .assessment-booking-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .assessment-final-box {

        flex-direction: column;

        align-items: flex-start;
    }

}


@media(max-width: 767px) {

    .assessment-intro-image {

        height: 380px;
    }


    .assessment-image-card {

        left: 15px;

        bottom: 20px;

        right: 15px;
    }


    .assessment-area-grid {

        grid-template-columns: 1fr;
    }


    .assessment-steps {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .assessment-form-wrapper {

        padding: 25px 20px;
    }


    .assessment-final-box {

        padding: 35px 25px;
    }


    .assessment-final-actions {

        flex-direction: column;

        width: 100%;
    }


    .assessment-call-btn,
    .assessment-whatsapp-btn {

        justify-content: center;

        width: 100%;

        box-sizing: border-box;
    }

}/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page-banner {

    background-image:
        url("../images/contact-banner.jpg");

}


/* =========================================================
   CONTACT INTRO
========================================================= */

.contact-intro {

    background: #fff;

}


.contact-info-grid {

    margin-top: 50px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.contact-info-card {

    padding: 30px 22px;

    text-align: center;

    background: #f7faf9;

    border: 1px solid #e1e9e7;

    border-radius: 17px;

    transition: .3s ease;

}


.contact-info-card:hover {

    transform: translateY(-5px);

    background: #fff;

    box-shadow:
        0 15px 35px rgba(23,63,71,.08);

}


.contact-info-icon {

    width: 58px;

    height: 58px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #eaf3f1;

    color: #173f47;

    font-size: 21px;

}


.contact-info-card > span {

    display: block;

    margin-bottom: 7px;

    color: #a3832e;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.contact-info-card h3 {

    margin: 0 0 10px;

    color: #173f47;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 16px;

}


.contact-info-card a {display: block;color: #173f47;text-decoration: none;font-size: 15px;font-weight: 700;}


.contact-info-card p {

    margin: 0;

    color: #425b5f;

    font-size: 12px;

    line-height: 1.5;

}


.contact-info-card small {display: block;margin-top: 7px;color: #899394;font-size: 14px;line-height: 1.5;}


/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-main {

    background: #f4f8f7;

}


.contact-main-grid {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 70px;

    align-items: start;

}


.contact-main-content {

    padding-top: 20px;

}


.contact-main-content h2 {

    margin: 10px 0 20px;

    color: #173f47;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(30px, 4vw, 45px);

    line-height: 1.2;

}


.contact-main-content h2 span {

    display: block;

    color: #a3832e;

}


.contact-main-content > p {

    max-width: 500px;

    color: #718081;

    font-size: 14px;

    line-height: 1.8;

}


/* POINTS
========================================================= */

.contact-points {

    margin-top: 30px;

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.contact-points div {

    display: flex;

    align-items: center;

    gap: 11px;

}


.contact-points i {

    color: #b0923d;

    font-size: 14px;

}


.contact-points span {color: #425d61;font-size: 15px;}


/* DIRECT CONTACT
========================================================= */

.contact-direct {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 35px;

    padding: 18px;

    max-width: 320px;

    background: #fff;

    border-radius: 10px;

}


.contact-direct-icon {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf5f3;

    color: #173f47;

}


.contact-direct span {

    display: block;

    margin-bottom: 4px;

    color: #899293;

    font-size: 10px;

}


.contact-direct a {

    color: #173f47;

    text-decoration: none;

    font-size: 15px;

    font-weight: 800;

}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrapper {

    padding: 40px;

    background: #fff;

    border-radius: 20px;

    box-shadow:
        0 15px 50px rgba(23,63,71,.07);

}


.contact-form {

    width: 100%;

}


.contact-form .form-group {

    margin-bottom: 20px;

}


.contact-form .form-group label {display: block;margin-bottom: 8px;color: #274d53;font-size: 14px;font-weight: 700;}


.contact-form input,
.contact-form select,
.contact-form textarea {

    width: 100%;

    padding: 13px 15px;

    box-sizing: border-box;

    border: 1px solid #dce6e4;

    border-radius: 8px;

    outline: none;

    background: #fbfcfc;

    color: #304f53;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 13px;

    transition: .25s;

}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {

    border-color: #8daaa5;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(141,170,165,.12);

}


.contact-form textarea {

    resize: vertical;

    min-height: 140px;

}


.contact-form .form-check {

    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-bottom: 22px;

}


.contact-form .form-check input {

    width: auto;

    margin-top: 3px;

}


.contact-form .form-check label {

    margin: 0;

    color: #788486;

    font-size: 11px;

    line-height: 1.5;

}


.contact-submit {

    border: 0;

    cursor: pointer;

}


.contact-submit:disabled {

    opacity: .6;

    cursor: not-allowed;

}


.contact-message-box {

    display: none;

    margin-top: 17px;

    padding: 13px 15px;

    border-radius: 7px;

    font-size: 12px;

    line-height: 1.5;

}


.contact-message-box.success {

    background: #e8f5ed;

    color: #287147;

    border: 1px solid #cce8d7;

}


.contact-message-box.error {

    background: #fbeaea;

    color: #a33c3c;

    border: 1px solid #efd0d0;

}


/* =========================================================
   LOCATION
========================================================= */

.contact-location {

    padding: 90px 0;

    background: #fff;

}


.location-heading {

    margin-bottom: 35px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

}


.location-heading h2 {

    margin: 10px 0 0;

    color: #173f47;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(30px, 4vw, 43px);

}


.location-heading h2 span {

    color: #a3832e;

}


.location-directions {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 18px;

    border: 1px solid #d8e3e1;

    border-radius: 7px;

    color: #173f47;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: .3s;

}


.location-directions:hover {

    background: #173f47;

    color: #fff;

}


.map-wrapper {

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    border: 1px solid #dce7e5;

}


.map-wrapper iframe {

    display: block;

    filter: grayscale(15%);

}


.map-location-card {

    position: absolute;

    left: 25px;

    bottom: 25px;

    max-width: 320px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 17px 20px;

    background: #fff;

    border-radius: 10px;

    box-shadow:
        0 10px 35px rgba(23,63,71,.15);

}


.map-location-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #edf5f3;

    color: #173f47;

}


.map-location-card strong {

    display: block;

    margin-bottom: 4px;

    color: #173f47;

    font-size: 12px;

}


.map-location-card span {

    display: block;

    color: #7b8586;

    font-size: 10px;

    line-height: 1.5;

}


/* =========================================================
   QUICK HELP
========================================================= */

.contact-help {

    background: #f4f8f7;

}


.contact-help-grid {

    margin-top: 45px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.contact-help-card {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px;

    background: #fff;

    border: 1px solid #e1e9e7;

    border-radius: 15px;

    color: inherit;

    text-decoration: none;

    transition: .3s;

}


.contact-help-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(23,63,71,.08);

}


.contact-help-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #edf5f3;

    color: #173f47;

    font-size: 19px;

}


.contact-help-card div:nth-child(2) {

    flex: 1;

}


.contact-help-card span {

    display: block;

    margin-bottom: 5px;

    color: #a3832e;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.contact-help-card h3 {

    margin: 0 0 5px;

    color: #173f47;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 15px;

}


.contact-help-card p {margin: 0;color: #7b8586;font-size: 13px;}


.contact-help-card > i {

    color: #a3832e;

    font-size: 13px;

}


/* =========================================================
   FINAL CTA
========================================================= */

.contact-final-cta {

    padding: 70px 0;

    background: #f4f8f7;

}


.contact-final-box {

    padding: 50px 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    border-radius: 20px;

    background: #173f47;

    color: #fff;

}


.contact-final-box span {

    color: #d9bb63;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.contact-final-box h2 {

    margin: 10px 0 8px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 32px;

}


.contact-final-box p {

    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 13px;

}


.contact-final-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

}


.contact-call-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 20px;

    border: 1px solid rgba(255,255,255,.3);

    border-radius: 7px;

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: .3s;

}


.contact-call-btn:hover {

    background: #fff;

    color: #173f47;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 991px) {

    .contact-info-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .contact-main-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .contact-help-grid {

        grid-template-columns:
            1fr;

    }


    .contact-final-box {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media(max-width: 767px) {

    .contact-info-grid {

        grid-template-columns:
            1fr;

    }


    .contact-form-wrapper {

        padding: 25px 20px;

    }


    .contact-form .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .location-heading {

        align-items: flex-start;

        flex-direction: column;

    }


    .map-wrapper iframe {

        height: 350px;

    }


    .map-location-card {

        position: relative;

        left: auto;

        bottom: auto;

        max-width: none;

        border-radius: 0;

        box-shadow: none;

    }


    .contact-final-box {

        padding: 35px 25px;

    }


    .contact-final-actions {

        width: 100%;

        flex-direction: column;

        align-items: stretch;

    }


    .contact-final-actions .primary-btn,
    .contact-call-btn {

        justify-content: center;

        width: 100%;

        box-sizing: border-box;

    }

}
.footer-logo img{
    
width: 150px;
}
.services-carousel{

}
.services-carousel .owl-nav{

text-align: center;

margin-top: 30px;
}
.services-carousel .owl-next{width: 40px;height: 40px;background: #253f47 !important;margin-left: 5px;border-radius: 100%;}
.services-carousel .owl-prev{
    width: 40px;
    height: 40px;
    background: #253f47 !important;
    margin-right: 5px;
    border-radius: 100%;
}.services-carousel .owl-next i{
    color: #fff;
}
.services-carousel .owl-prev i{
    color: #fff;
}.services-carousel .owl-next:hover{
    background: #2e7f82 !important;
}.services-carousel .owl-prev:hover{
    background: #2e7f82 !important;
}
.logo-col{    width: 100px;
    margin: auto;}
/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(10, 35, 40, 0.65);

    z-index: 1090;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


/* MENU PANEL */

.mobile-menu {
    position: fixed;

    top: 0;
    right: 0;

    width: min(390px, 90%);
    height: 100vh;

    background: #ffffff;

    z-index: 1100;

    transform: translateX(100%);

    visibility: hidden;

    transition:
        transform 0.45s cubic-bezier(.77, 0, .18, 1),
        visibility 0.45s ease;

    display: flex;
    flex-direction: column;

    overflow-y: auto;
    overflow-x: hidden;

    box-shadow: -15px 0 50px rgba(23, 63, 71, 0.15);
}


/* OPEN */

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu {
    transform: translateX(0);
    visibility: visible;
}

body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================
   MOBILE HEADER
========================================= */

.mobile-menu-header {
    min-height: 90px;

    padding: 18px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(23, 63, 71, 0.10);

    flex-shrink: 0;
}

.mobile-logo {
    display: inline-flex;
    align-items: center;
}

.mobile-logo img {
    display: block;

    width: auto;
    max-width: 190px;
    max-height: 55px;
}


/* =========================================
   CLOSE BUTTON
========================================= */

.mobile-menu-close {
    position: relative;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    padding: 0;

    border: 1px solid rgba(23, 63, 71, 0.15);

    background: transparent;

    cursor: pointer;
}

.mobile-menu-close span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 20px;
    height: 1.5px;

    background: #173f47;

    transition: transform 0.3s ease;
}

.mobile-menu-close span:first-child {
    transform:
        translate(-50%, -50%)
        rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}

.mobile-menu-close:hover {
    background: #173f47;
}

.mobile-menu-close:hover span {
    background: #ffffff;
}


/* =========================================
   NAVIGATION
========================================= */

.mobile-navigation {
    padding: 20px 25px 30px;

    flex: 1;
}

.mobile-navigation > ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.mobile-navigation > ul > li {
    margin: 0;

    border-bottom: 1px solid rgba(23, 63, 71, 0.09);
}


/* NORMAL LINKS */

.mobile-navigation > ul > li > a {
    min-height: 60px;

    display: flex;
    align-items: center;

    color: #173f47;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.mobile-navigation > ul > li:not(.mobile-dropdown) > a:hover {
    padding-left: 7px;
    color: #173f47;
}


/* =========================================
   EXPERTISE LINK
========================================= */

.mobile-dropdown-link {
    position: relative;

    justify-content: space-between;

    gap: 15px;
}

.mobile-dropdown-title {
    display: block;
}


/* PLUS BUTTON */

.mobile-dropdown-toggle {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(23, 63, 71, 0.18);

    color: #173f47;

    font-size: 20px;
    font-weight: 300;
    line-height: 1;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}


/* ACTIVE PLUS */

.mobile-dropdown.active .mobile-dropdown-toggle {
    transform: rotate(45deg);

    background: #173f47;

    color: #ffffff;

    border-color: #173f47;
}


/* =========================================
   SUB MENU
========================================= */

.mobile-dropdown > ul {
    display: none;

    margin: 0;
    padding: 5px 0 15px;

    list-style: none;
}

.mobile-dropdown.active > ul {
    display: block;
}

.mobile-dropdown > ul li {
    margin: 0;
}

.mobile-dropdown > ul li a {
    display: block;

    padding: 10px 10px 10px 15px;

    color: #718184;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.5;

    text-decoration: none;

    border-left: 1px solid rgba(23, 63, 71, 0.15);

    transition:
        color 0.3s ease,
        padding-left 0.3s ease,
        border-color 0.3s ease;
}

.mobile-dropdown > ul li a:hover {
    color: #173f47;

    padding-left: 22px;

    border-color: #173f47;
}


/* =========================================
   BOTTOM CTA
========================================= */

.mobile-menu-bottom {
    padding: 25px;

    background: #173f47;

    flex-shrink: 0;
}

.mobile-menu-bottom span {
    display: block;

    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.mobile-menu-bottom a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.5;

    text-decoration: none;
}

.mobile-menu-bottom a i {
    width: 35px;
    height: 35px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.3);

    font-style: normal;
    font-size: 16px;

    transition: all 0.3s ease;
}

.mobile-menu-bottom a:hover i {
    background: #ffffff;

    color: #173f47;

    transform: translate(3px, -3px);
}


/* =========================================
   ONLY MOBILE
========================================= */

@media (min-width: 992px) {

    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .mobile-menu {
        width: 92%;
    }

    .mobile-menu-header {
        padding: 18px 20px;
    }

    .mobile-navigation {
        padding: 15px 20px 25px;
    }

    .mobile-menu-bottom {
        padding: 22px 20px;
    }

    .mobile-logo img {
        max-width: 170px;
    }

}/* =========================================
   QUICK ENQUIRY BUTTON
========================================= */

.header-quick-enquiry {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 28px;
    background: #173f47;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    /* border-radius: 10px; */
    transition: all 0.35s ease;
}

.header-quick-enquiry i {
    width: 26px;
    height: 26px;
    display: flex;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.35);
    font-style: normal;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.header-quick-enquiry:hover {
    color: #ffffff;
    background: #b9904b;
}

.header-quick-enquiry:hover i {
    transform: translate(3px, -3px);
}


/* =========================================
   OVERLAY
========================================= */

.enquiry-overlay {
    position: fixed;
    inset: 0;

    background: rgba(9, 31, 35, 0.62);

    z-index: 1190;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}


/* =========================================
   DRAWER
========================================= */

.quick-enquiry-drawer {
    position: fixed;

    top: 0;
    right: 0;

    width: min(560px, 94vw);
    height: 100vh;

    background: #ffffff;

    z-index: 1200;

    transform: translateX(100%);

    visibility: hidden;

    display: flex;
    flex-direction: column;

    box-shadow:
        -20px 0 70px rgba(23, 63, 71, 0.18);

    transition:
        transform 0.55s cubic-bezier(.77, 0, .18, 1),
        visibility 0.55s ease;
}


/* =========================================
   OPEN STATE
========================================= */

body.enquiry-open {
    overflow: hidden;
}

body.enquiry-open .enquiry-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.enquiry-open .quick-enquiry-drawer {
    transform: translateX(0);
    visibility: visible;
}


/* =========================================
   DRAWER HEADER
========================================= */

.enquiry-drawer-header {
    padding: 45px 45px 35px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;

    background: #173f47;

    flex-shrink: 0;
}

.enquiry-small-title {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: rgba(255,255,255,0.62);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.enquiry-small-title::before {
    content: "";

    width: 25px;
    height: 1px;

    background: rgba(255,255,255,0.65);
}

.enquiry-drawer-header h3 {
    margin: 0;

    color: #ffffff;

    font-size: 39px;
    line-height: 1.12;

    font-weight: 400;

    letter-spacing: -1.5px;
}

.enquiry-drawer-header h3 br {
    display: block;
}


/* =========================================
   CLOSE BUTTON
========================================= */

.enquiry-close {
    position: relative;

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    border: 1px solid rgba(255,255,255,0.25);

    background: transparent;

    cursor: pointer;

    transition: background 0.3s ease;
}

.enquiry-close span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 20px;
    height: 1px;

    background: #ffffff;
}

.enquiry-close span:first-child {
    transform:
        translate(-50%, -50%)
        rotate(45deg);
}

.enquiry-close span:last-child {
    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}

.enquiry-close:hover {
    background: rgba(255,255,255,0.12);
}


/* =========================================
   BODY
========================================= */

.enquiry-drawer-body {
    flex: 1;

    overflow-y: auto;

    padding: 35px 45px 30px;
}

.enquiry-intro {
    margin: 0 0 30px;
    max-width: 450px;
    color: #718184;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   FORM
========================================= */

.quick-enquiry-form {
    width: 100%;
}

.enquiry-row {
    display: grid;

    grid-template-columns: 1fr 0.65fr;

    gap: 20px;
}

.enquiry-field {
    margin-bottom: 22px;
}

.enquiry-field label {
    display: block;
    margin-bottom: 9px;
    color: #173f47;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.enquiry-field input,
.enquiry-field select,
.enquiry-field textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 14px 15px;

    border: 1px solid rgba(23,63,71,0.15);

    background: #f8faf9;

    color: #173f47;

    outline: none;

    border-radius: 0;

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.enquiry-field input {
    height: 50px;
}

.enquiry-field select {
    height: 50px;

    cursor: pointer;
}

.enquiry-field textarea {
    min-height: 105px;

    resize: vertical;
}

.enquiry-field input::placeholder,
.enquiry-field textarea::placeholder {
    color: #9aa8aa;
}

.enquiry-field input:focus,
.enquiry-field select:focus,
.enquiry-field textarea:focus {

    border-color: #173f47;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(23,63,71,0.06);
}


/* =========================================
   SUBMIT
========================================= */

.enquiry-submit {
        width: 100%;
        min-height: 55px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        border: 0;
        background: #173f47;
        color: #ffffff;
        cursor: pointer;
        font-family: inherit;
        font-size: 15px;
        font-weight: 700;
        transition:
        background 0.3s ease,
        padding 0.3s ease;
        }

.enquiry-submit i {

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.3);

    font-style: normal;

    font-size: 15px;

    transition: transform 0.3s ease;
}

.enquiry-submit:hover {
    background: #103238;
}

.enquiry-submit:hover i {
    transform: translate(3px, -3px);
}


/* =========================================
   FOOTER
========================================= */

.enquiry-drawer-footer {

    padding: 20px 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background: #f4f7f5;

    border-top: 1px solid rgba(23,63,71,0.08);

    flex-shrink: 0;
}

.enquiry-drawer-footer span {
    color: #7b898b;
    font-size: 14px;
}

.enquiry-drawer-footer a {
    color: #173f47;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .header-quick-enquiry {
        display: none;
    }

}


@media (max-width: 575px) {

    .quick-enquiry-drawer {
        width: 100%;
    }

    .enquiry-drawer-header {
        padding: 30px 22px 28px;
    }

    .enquiry-drawer-header h3 {
        font-size: 30px;
    }

    .enquiry-drawer-body {
        padding: 28px 22px;
    }

    .enquiry-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .enquiry-drawer-footer {
        padding: 18px 22px;
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

}
@media(max-width:767px){
    .footer-column a{
        width:50%;
        float: left;
    }
}
[data-aos="fire"] {
    opacity: 0;
    transform: scale(0.3) translateY(100px);
    filter: brightness(2) blur(1px);
    transition-property: transform, opacity, filter;
}[data-aos="fire"].aos-animate {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: brightness(1) blur(0);
}[data-aos] {
    transition-duration: .3s !important;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
}/* =========================================
   ABLERISE PREMIUM PRELOADER
========================================= */

.ab-preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;

    background: #173f47;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}


/* PRELOADER HIDDEN */

.ab-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* INNER */

.ab-preloader-inner {
    width: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
}


/* =========================================
   LOGO
========================================= */

.ab-loader-logo {
    position: relative;
    width: 210px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation:
        abLogoReveal 0.9s 0.15s ease forwards;
}

.ab-loader-logo img {
    display: block;
    width: 35%;
    margin: auto;
    height: auto;
    filter: brightness(0) invert(1);
}


/* =========================================
   CIRCLE
========================================= */

.ab-loader-circle {
    width: 54px;
    display: none;
    height: 54px;
    position: relative;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
}


.ab-loader-circle::before {
    content: "";

    position: absolute;

    inset: 4px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;
}


.ab-loader-circle span {
    position: absolute;

    inset: -1px;

    border-radius: 50%;

    border: 2px solid transparent;

    border-top-color: #ffffff;

    border-right-color: rgba(255,255,255,0.35);

    animation: abLoaderRotate 1.1s linear infinite;
}


/* CENTER DOT */

.ab-loader-circle::after {
    content: "";

    position: absolute;

    width: 6px;
    height: 6px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: #ffffff;

    border-radius: 50%;
}


/* =========================================
   PROGRESS LINE
========================================= */

.ab-loader-line {
    width: 180px;
    height: 1px;

    background: rgba(255,255,255,0.18);

    overflow: hidden;

    margin-bottom: 18px;
}


.ab-loader-line span {
    display: block;

    width: 0;
    height: 100%;

    background: #ffffff;

    animation: abLoaderProgress 2.2s ease forwards;
}


/* =========================================
   LOADER TEXT
========================================= */

.ab-loader-text {
    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,0.58);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2px;

    opacity: 0;

    animation:
        abTextReveal 0.7s 0.5s ease forwards;
}


.ab-loader-text span:first-child {
    color: rgba(255,255,255,0.8);
}


.ab-loader-text span + span::before {
    content: "";

    display: inline-block;

    width: 3px;
    height: 3px;

    margin-right: 10px;

    vertical-align: middle;

    background: rgba(255,255,255,0.4);

    border-radius: 50%;
}


/* =========================================
   DECORATIVE ELEMENT
========================================= */

.ab-preloader::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    top: -250px;

    border: 1px solid rgba(255,255,255,0.07);

    border-radius: 50%;
}


.ab-preloader::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    left: -180px;
    bottom: -180px;

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 50%;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes abLogoReveal {

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

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

}


@keyframes abLoaderRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes abLoaderProgress {

    0% {
        width: 0;
    }

    30% {
        width: 35%;
    }

    65% {
        width: 70%;
    }

    100% {
        width: 100%;
    }

}


@keyframes abTextReveal {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .ab-preloader-inner {
        width: 260px;
    }

    .ab-loader-logo {
        width: 180px;
        margin-bottom: 38px;
    }

    .ab-loader-circle {
        width: 48px;
        height: 48px;
    }

    .ab-loader-line {
        width: 160px;
    }

    .ab-loader-text {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

}/* =========================================
   ABLERISE OUR TEAM
========================================= */

.team-section {
    position: relative;
    padding: 70px 0 70px;
    background: #f7f8f6;
    overflow: hidden;
}


/* =========================================
   DECORATIVE BACKGROUND
========================================= */

.team-section::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -260px;
    top: -200px;

    border: 1px solid rgba(23,63,71,0.07);

    border-radius: 50%;
}

.team-section::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    left: -165px;
    bottom: -150px;

    border: 1px solid rgba(23,63,71,0.06);

    border-radius: 50%;
}


/* =========================================
   HEADING
========================================= */

.team-heading {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: end;
    margin-bottom: 0;
}


.team-heading-left {
    max-width: 760px;
}


.team-eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color: #173f47;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.team-eyebrow span {
    display: block;

    width: 30px;
    height: 1px;

    background: #173f47;
}


.team-heading h2 {
    margin: 0;
    color: #173f47;
    font-size: clamp(42px, 4.7vw, 50px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -2.5px;
}


.team-heading h2 strong {
    display: block;

    font-weight: 700;
}


.team-heading-right {
    padding-bottom: 5px;
}


.team-heading-right p {
    max-width: 500px;

    margin: 0;

    color: #65797c;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================
   TEAM GRID
========================================= */

.team-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
}


/* =========================================
   TEAM CARD
========================================= */

.team-card {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    /* opacity: 0; */
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease,
        box-shadow 0.4s ease;
}


.team-card.revealed {
    opacity: 1;

    transform: translateY(0);
}


.team-card:nth-child(2) {
    transition-delay: 0.12s;
}


.team-card:nth-child(3) {
    transition-delay: 0.24s;
}


.team-card:hover {
    box-shadow:
        0 25px 60px rgba(23,63,71,0.12);
}


/* =========================================
   IMAGE
========================================= */

.team-image {
    position: relative;

    width: 100%;

    height: 430px;

    overflow: hidden;

    background: #dfe7e5;
}


.team-card-featured .team-image {
    height: 500px;
}


.team-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;

    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1);
}


.team-card:hover .team-image img {
    transform: scale(1.045);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.team-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(23,63,71,0) 55%,
            rgba(23,63,71,0.45) 100%
        );

    pointer-events: none;
}


/* =========================================
   NUMBER
========================================= */

.team-number {
    position: absolute;
    top: 22px;
    left: 22px;
    display: none;
    width: 45px;
    height: 45px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(23,63,71,0.88);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
}


/* =========================================
   TEAM INFO
========================================= */

.team-info {
    padding: 30px 30px 35px;
}


.team-info-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(23,63,71,0.12);
}


.team-info h3 {
    margin: 0 0 10px;

    color: #173f47;

    font-size: 25px;

    line-height: 1.2;

    font-weight: 600;

    letter-spacing: -0.5px;
}


.team-role {
    display: block;

    color: #718083;

    font-size: 11px;

    line-height: 1.6;

    font-weight: 600;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


.team-role i {
    display: inline-block;

    width: 4px;
    height: 4px;

    margin: 0 6px;

    vertical-align: middle;

    background: #173f47;

    border-radius: 50%;
}


/* =========================================
   ARROW
========================================= */

.team-arrow {
    flex-shrink: 0;
    display: none;
    width: 42px;
    height: 42px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    color: #173f47;
    border: 1px solid rgba(23,63,71,0.2);
    font-size: 17px;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


.team-card:hover .team-arrow {
    color: #ffffff;

    background: #173f47;

    transform: translate(3px,-3px);
}


/* =========================================
   DESCRIPTION
========================================= */

.team-description {
    padding-top: 24px;
}


.team-description p {
    margin: 0 0 15px;
    color: #6d7d80;
    font-size: 15px;
    line-height: 1.8;
}


.team-description p:last-child {
    margin-bottom: 0;
}


/* =========================================
   FEATURED MEMBER
========================================= */

.team-card-featured .team-info {
    padding: 34px 35px 40px;
}


.team-card-featured .team-info h3 {
    font-size: 29px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .team-heading {
        gap: 60px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-card-featured {
        grid-column: span 2;
    }

    .team-card-featured .team-image {
        height: 480px;
    }

}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 991px) {

    .team-section {
        padding: 100px 0 100px;
    }

    .team-heading {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 60px;
    }

    .team-heading h2 {
        font-size: 48px;
    }

    .team-heading-right p {
        max-width: 650px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .team-section {
        padding: 75px 0 75px;
    }

    .team-heading {
        gap: 20px;

        margin-bottom: 45px;
    }

    .team-eyebrow {
        font-size: 9px;

        letter-spacing: 1.5px;

        margin-bottom: 18px;
    }

    .team-heading h2 {
        font-size: 38px;

        line-height: 1.12;

        letter-spacing: -1.5px;
    }

    .team-heading-right p {
        font-size: 14px;

        line-height: 1.8;
    }

    .team-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .team-card-featured {
        grid-column: auto;
    }

    .team-image,
    .team-card-featured .team-image {
        height: 430px;
    }

    .team-info,
    .team-card-featured .team-info {
        padding: 25px 22px 30px;
    }

    .team-info h3,
    .team-card-featured .team-info h3 {
        font-size: 23px;
    }

    .team-role {
        font-size: 9px;
    }

    .team-description p {
        font-size: 13px;

        line-height: 1.75;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .team-image,
    .team-card-featured .team-image {
        height: 390px;
    }

    .team-number {
        top: 15px;
        left: 15px;

        width: 40px;
        height: 40px;
    }

    .team-info-top {
        gap: 10px;
    }

    .team-arrow {
        width: 38px;
        height: 38px;
    }
    
    

}