/*==================================================
        GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');


/*=================================
HEADER
==================================*/

:root {

    --primary: #1d5fd0;
    --heading: #183b4e;
    --text: #425466;
    --border: #e8ecef;
    --navy: #083c4a;
    --blue: #07527c;
    --deep-blue: #074d78;
    --teal: #05aaa9;
    --teal-dark: #087c83;
    --gold: #b98517;
    --light-bg: #f7faf9;
    --text: #294c53;
    --white: #ffffff;
    --brand-teal: #00B8AD;
    --brand-blue: #0A5FAE;
    --brand-gradient: linear-gradient(135deg, var(--brand-teal), var(--brand-blue));

}

.container {

    max-width: 1200px;

}

.header-area {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    background: #fff;
    z-index: 9999;
    transition: .35s;
    border-bottom: 1px solid var(--border);

}

.header-area.sticky {
    height: 78px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.header-area .navbar {
    height: 88px;
    transition: .35s;
}

.header-area.sticky .navbar {
    height: 78px;
}

/* Logo */


.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.1rem;
}
.brand-mark {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.brand-word {
    background: var(--brand-gradient);
    background-clip: text;
    color: transparent;
    font-family: var(--brandfont);
    font-weight: 700;
    font-size: 1.12rem;
}
.brand-text small {
    font-family: var(--body);
    font-weight: 500;
    font-size: .62rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #425a56;
}

/* Menu */

.navbar-nav {
    gap: 42px;
}

.nav-link {
    color: var(--heading);
    font-size: 15px;
    font-weight: 600;
    position: relative;
    padding: 0px 0 !important;
    transition: .35s;
}

.nav-link:hover,

.nav-link.active {
    color: var(--black);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--black);
    transform: translateX(-50%);
    transition: .35s;
}

.nav-link:hover::after,

.nav-link.active::after {
    width: 100%;
    background: #00b8ad;
}

/* Button */

.consult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 26px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    transition: .35s;
    text-decoration: none;
}

.consult-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.nav-link-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.header-area{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid #eef2f5;

    transition: all .35s ease;
}

.header-area.sticky{
    box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
}
/* Mobile */

@media(max-width:991px) {

    .header-area {
        height: 76px;
    }
    .header-area .navbar {
        height: 76px;
    }

    .logo img {
        width: 170px;
    }
    .navbar-collapse {
        background: #fff;
        margin-top: 15px;
        padding: 20px;
        border-radius: 18px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    }
    .navbar-nav {
        gap: 8px;
    }
    .nav-link {
        padding: 12px 0 !important;
    }
    .consult-btn {
        width: 100%;
        margin-top: 15px;
    }

}
/* hero */

.hero-container {
    max-width: 1140px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: calc(100vh - 73px);
    padding: 60px 0 36px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 74% 11%,
            rgba(237, 224, 187, 0.22),
            transparent 26%
        ),
        linear-gradient(110deg, #f8fbfa 0%, #ffffff 58%, #fbfaf5 100%);
}

.hero-row {
    --bs-gutter-x: 64px;
}

/* Left Content */
.hero-content {
    max-width: 565px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold);
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2.1px;
    text-transform: uppercase;
}

.hero-eyebrow span {
    width: 22px;
    height: 1px;
    flex: 0 0 auto;
    background: #d49a22;
}

.hero-content h1 {
    margin: 0 0 28px;
    color: var(--navy);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 58px;
    font-weight: 600;
    line-height: 1.035;
    letter-spacing: -1.7px;
}

.hero-description {
    max-width: 555px;
    margin: 0 0 19px;
    color: #365b61;
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    text-align: justify;
}

/* Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}

.hero-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 27px;
    border: 1.5px solid #006fca;
    border-radius: 999px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-btn-primary {
    min-width: 234px;
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(100deg, #00b5ad 0%, #0876c7 100%);
    box-shadow: 0 9px 18px rgba(0, 137, 174, 0.18);
}

.hero-btn-primary:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 25px rgba(0, 111, 173, 0.27);
}

.hero-btn-outline {
    min-width: 197px;
    color: #005098;
    background: rgba(255, 255, 255, 0.72);
}

.hero-btn-outline:hover {
    color: #ffffff;
    background: #0769b8;
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(0, 92, 161, 0.16);
}

/* Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 18px;
    margin-top: 30px;
    color: #365b61;
    font-family: "DM Sans", sans-serif;
    font-size: 13.5px;
    line-height: 1.4;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-wide {
    flex-basis: 100%;
}

.check-icon {
    color: #009e9d;
    font-size: 15px;
    font-weight: 700;
}

/* Right Illustration */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 512px;
    height: 588px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(137deg, #074d78 0%, #0c7f82 100%);
    box-shadow: 0 18px 34px rgba(7, 71, 91, 0.11);
    margin-top: 10%;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
}

.visual-circle-top {
    top: -83px;
    right: -58px;
    width: 314px;
    height: 314px;
    background: rgba(53, 149, 154, 0.32);
}

.visual-circle-bottom {
    left: -78px;
    bottom: -87px;
    width: 255px;
    height: 255px;
    background: rgba(41, 136, 147, 0.25);
}

.visual-wave {
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: 142px;
    height: 76px;
    border-radius: 50% 50% 0 0;
    background: #07577b;
    transform: rotate(1deg);
}

/* People */
.person {
    position: absolute;
    z-index: 2;
}

.person span {
    position: absolute;
    display: block;
}

.person-head {
    border-radius: 50%;
}

.person-body {
    border-radius: 33px;
    background: #f4f8f7;
}

.person-large {
    top: 163px;
    left: 188px;
    width: 115px;
    height: 272px;
}

.person-large .person-head {
    top: 0;
    left: 0;
    width: 111px;
    height: 111px;
    background: #82d5d3;
}

.person-large .person-body {
    top: 120px;
    left: 2px;
    width: 107px;
    height: 148px;
}

.person-small {
    top: 225px;
    right: 70px;
    width: 100px;
    height: 220px;
}

.person-small .person-head {
    top: 0;
    left: 5px;
    width: 94px;
    height: 94px;
    background: #c2a957;
}

.person-small .person-body {
    top: 99px;
    left: 12px;
    width: 80px;
    height: 116px;
    background: #dce9e8;
}

.connection-line {
    position: absolute;
    z-index: 3;
    top: 344px;
    left: 249px;
    width: 144px;
    height: 47px;
}

/* Coordinator Card */
.coordinator-card {
    position: absolute;
    z-index: 5;
    left: 20px;
    right: 20px;
    bottom: 21px;
    min-height: 75px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 17px;
    border-radius: 8px;
    background: rgba(249, 252, 251, 0.95);
    box-shadow: 0 7px 18px rgba(0, 34, 49, 0.08);
}

.status-dot {
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #00b5ad;
    box-shadow: 0 0 0 5px rgba(0, 181, 173, 0.08);
}

.coordinator-card strong,
.coordinator-card small {
    display: block;
    font-family: "DM Sans", sans-serif;
}

.coordinator-card strong {
    margin-bottom: 5px;
    color: #123e4b;
    font-size: 13px;
    font-weight: 700;
}

.coordinator-card small {
    color: #687f83;
    font-size: 12px;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    z-index: 999;
    right: 29px;
    bottom: 10px;
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: #1ed760;
    box-shadow: 0 10px 24px rgba(0, 190, 84, 0.28);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.floating-whatsapp svg {
    width: 26px;
    height: 26px;
}

.floating-whatsapp:hover {
    color: #ffffff;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 15px 28px rgba(0, 190, 84, 0.36);
}

/* Laptop */
@media (max-width: 1199.98px) {
    .hero-container {
        max-width: 960px;
    }

    .hero-row {
        --bs-gutter-x: 42px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-visual {
        height: 550px;
    }

    .person-large {
        left: 150px;
    }

    .connection-line {
        left: 210px;
    }
}

/* Tablet and Mobile */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 70px 0 60px;
    }

    .hero-container {
        max-width: 720px;
    }

    .hero-row {
        --bs-gutter-x: 24px;
        --bs-gutter-y: 52px;
    }

    .hero-content {
        max-width: 650px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-eyebrow,
    .hero-actions,
    .hero-features {
        justify-content: center;
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 53px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        max-width: 512px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .hero-section {
        padding: 48px 0 42px;
    }

    .hero-container {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-eyebrow {
        justify-content: flex-start;
        font-size: 10px;
        letter-spacing: 1.4px;
        text-align: left;
    }

    .hero-content {
        text-align: left;
    }

    .hero-content h1 {
        margin-bottom: 21px;
        font-size: clamp(39px, 12vw, 48px);
        line-height: 1;
        letter-spacing: -1px;
    }

    .hero-content h1 br {
        display: none;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-btn {
        width: 100%;
        min-width: 0;
    }

    .hero-features {
        justify-content: flex-start;
        flex-direction: column;
        gap: 13px;
        margin-top: 25px;
    }

    .feature-wide {
        flex-basis: auto;
    }

    .hero-visual {
        height: 455px;
        border-radius: 17px;
    }

    .visual-circle-top {
        width: 260px;
        height: 260px;
    }

    .person-large {
        top: 116px;
        left: 31%;
        transform: scale(0.83);
        transform-origin: top left;
    }

    .person-small {
        top: 180px;
        right: 8%;
        transform: scale(0.82);
        transform-origin: top right;
    }

    .connection-line {
        top: 286px;
        left: 43%;
        width: 118px;
    }

    .visual-wave {
        bottom: 119px;
    }

    .coordinator-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .floating-whatsapp {
        right: 17px;
        bottom: 17px;
        width: 52px;
        height: 52px;
    }
}
.trust-strip {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(
        105deg,
        #0a4377 0%,
        #093f65 28%,
        #0b4e5e 62%,
        #078476 100%
    );
}

.trust-strip-container {
    width: 100%;
    max-width: 1100px;
    min-height: 195px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 25px 18px 23px;
    color: #fff;
    text-align: center;
}

.trust-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 13px;
    color: #7fd8d8;
}

.trust-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-item h3 {
    margin: 0 0 5px;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
}

.trust-item p {
    margin: 0;
    color: #c8f5f3;
    font-family: "DM Sans", sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.55;
}

/* Subtle hover */
.trust-item {
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.045);
}

.trust-item:hover .trust-icon {
    transform: translateY(-3px);
}

.trust-icon {
    transition: transform 0.3s ease;
}

/* Large laptop */
@media (max-width: 1199.98px) {
    .trust-strip-container {
        max-width: 100%;
    }

    .trust-item {
        padding-left: 12px;
        padding-right: 12px;
    }

    .trust-item h3 {
        font-size: 13px;
    }

    .trust-item p {
        font-size: 12.5px;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .trust-strip-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item {
        min-height: 180px;
        justify-content: center;
        padding: 28px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .trust-item:nth-child(2n) {
        border-right: 0;
    }

    .trust-item:last-child {
        grid-column: 1 / -1;
        border-right: 0;
        border-bottom: 0;
    }

    .trust-item h3 {
        font-size: 14px;
    }

    .trust-item p {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .trust-strip-container {
        display: block;
    }

    .trust-item {
        min-height: auto;
        padding: 28px 18px;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .trust-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 11px;
    }

    .trust-item h3 {
        margin-bottom: 6px;
        font-size: 15px;
    }

    .trust-item p {
        font-size: 13.5px;
        line-height: 1.6;
    }
}

