* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}
body {
    font-family: "Sitka Text", "Sitka Heading", serif;
    overflow-x: hidden;
    background: #F5F6F8;
}

/* ===============================
   NAVBAR BASE
================================ */
.main-navbar {
    background: #13225B;
    padding: 8px 0;
    font-family: "Sitka Text", serif;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 6px 15px #00000052;
}

/* CONTAINER */
.nav-wrapper {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 70px;
}

/* MENU */
.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

/* LINK */
.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

/* ACTIVE */
.nav-menu li.active a {
    color: #f4c430;
}

/* UNDERLINE */
.nav-menu li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #f4c430;
    transition: 0.3s;
    transform: translateX(-50%);
}

.nav-menu li:hover::after {
    width: 100%;
}

/* HOVER */
.nav-menu li:hover > a {
    color: #f4c430;
}

/* DROPDOWN */
.submenu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #0f2a44;
    padding: 10px 0;
    min-width: 180px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;

    border-radius: 8px;
}

.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu a {
    display: block;
    padding: 10px 15px;
}

/* RIGHT ICON */
.nav-right {
    color: #fff;
    font-size: 18px;
}

/* MENU TOGGLE */
.menu-toggle {
    display: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}


/* ===============================
   TABLET (992px ↓)
================================ */
@media (max-width: 992px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #13225B;

        flex-direction: column;
        align-items: flex-start;
        padding: 15px 30px;

        max-height: 0;
        overflow: hidden;
        transition: 0.4s;
    }

    .nav-menu.active {
        max-height: 600px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
    }

    /* REMOVE UNDERLINE */
    .nav-menu li::after {
        display: none;
    }

    /* DROPDOWN MOBILE */
    .submenu {
        position: static;
        background: transparent;
        padding-left: 15px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown.active .submenu {
        display: block;
    }
}



















/* HERO SECTION */
.hero-section {
    position: relative;
    height: 800px;

    background-image: url("../images/carusel-img/carusel-img-01.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    padding: 0 8%;
    color: #fff;
}


/* CONTENT */
.hero-content {
    position: relative;
    max-width: 550px;
    z-index: 1;
}

/* TITLE */
.hero-content h1 {
    font-size: 42px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* TEXT */
.hero-content p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 27px;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 15px;
}

/* BUTTON BASE */
.btn {
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

/* PRIMARY */
.btn.primary {
    position: relative;
    background: #f4c430;
    color: #000;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* OUTLINE */
.btn.outline {
    position: relative;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* HOVER */
.btn.primary:hover {
    background: #f4c430;
    transform: translateY(-2px);

    box-shadow:
        0 0 10px rgba(244,196,48,0.6),
        0 0 20px rgba(244,196,48,0.5),
        0 0 40px rgba(244,196,48,0.4),
        0 10px 25px rgba(0,0,0,0.25);
}

.btn.outline:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);

    box-shadow:
        0 0 10px rgba(255,255,255,0.6),
        0 0 20px rgba(255,255,255,0.5),
        0 0 40px rgba(255,255,255,0.4),
        0 10px 25px rgba(0,0,0,0.25);
}

/* =========================
   LARGE (1200px ↓)
========================= */
@media (max-width: 1200px) {

    .hero-section {
        height: 600px;
        padding: 0 6%;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 14px;
    }
}

/* =========================
   LAPTOP (992px ↓)
========================= */
@media (max-width: 992px) {

    .hero-section {
        height: 400px;
        padding: 0 5%;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* =========================
   TABLET (768px ↓)
========================= */
@media (max-width: 768px) {

    .hero-section {
        height: 350px; 
        padding: 80px 20px;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 13px;
    }

    .buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* =========================
   MOBILE (576px ↓)
========================= */
@media (max-width: 576px) {

    .hero-section {
        padding: 60px 15px;
        height: auto;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 12px;
        line-height: 22px;
    }

    .buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 40%;
        text-align: center;
        margin: 0 auto;
    }
}













/* SECTION */
.stats-section {
    background: #13225B;
    padding: 30px 0;
    font-family: "Sitka Text", "Sitka Heading", serif;
    margin: 50px 0;
}

/* CONTAINER */
.stats-container {
    width: 85%;
    margin: auto;
    display: flex;
    gap: 20px;
}

/* CARD */
.stat-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 14px;

    backdrop-filter: blur(8px);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.03);
    transition: all 0.3s ease;
}


.stat-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 0 10px rgba(255,255,255,0.15),
        0 0 25px rgba(255,255,255,0.12),
        0 0 50px rgba(255,255,255,0.10),
        0 15px 30px rgba(0,0,0,0.25),

        inset 0 0 20px rgba(255,255,255,0.03); /* keep original */
}

/* ICON */
.stat-card img {
    width: 80px;
}

/* CONTENT */
.stat-content {
    display: flex;
    flex-direction: column;
}

/* TOP LINE */
.stat-top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* NUMBER */
.stat-top h2 {
    font-size: 70px;
    color: #dbe6ff;
    line-height: 1;
    font-family: "Times New Roman", Times, serif;
}

/* + or % */
.symbol {
    font-size: 30px;
    color: #dbe6ff;
    margin-top: 0px;
}

/* TEXT RIGHT SIDE */
.text {
    font-size: 25px;
    color: #cbd5e1;
    line-height: 1.2;
    margin-top: 15px;
    font-weight: 500;
}
.text p{
    font-size: 25px;
    color: #cbd5e1;
    line-height: 1.2;
    margin-top: 20px;
    font-weight: 500;
}

/* STARS */
.stars {
    margin-left: 5px;
    margin-top: -10px;
    font-size: 0px;
}

.stars i {
    color: #f4c430;
    font-size: 9px;
    margin-right: 2px;
}

@media (max-width: 1500px) {

    .stats-container {
        width: 90%;
    }

    /* main fix */
    .stat-top h2 {
        font-size: clamp(40px, 4vw, 70px);
    }

    .symbol {
        font-size: clamp(18px, 2vw, 30px);
    }

    .text,
    .text p {
        font-size: clamp(14px, 1.5vw, 25px);
    }

    .stat-card img {
        width: clamp(50px, 5vw, 80px);
    }
}

/* =========================
   LARGE (1200px ↓)
========================= */
@media (max-width: 1200px) {

    .stats-container {
        flex-wrap: wrap;
        width: 90%;
        gap: 15px;
        flex: 1;
    }

    .stat-top h2 {
        font-size: 55px;
    }

    .text,
    .text p {
        font-size: 20px;
    }

    .stat-card img {
        width: 65px;
    }
}

/* =========================
   LAPTOP (992px ↓)
========================= */
@media (max-width: 992px) {

    .stats-container {
        justify-content: center;
        gap: 20px;
    }

    .stat-card {
        width: 45%;
    }

    .stat-top h2 {
        font-size: 45px;
    }

    .text,
    .text p {
        font-size: 18px;
    }

    .symbol {
        font-size: 24px;
    }
}


/* =========================
   TABLET (768px ↓)
========================= */
@media (max-width: 768px) {

    .stats-section {
        padding: 40px 15px;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .stat-card {
        width: 100%;
        flex-direction: row; /* 🔥 FIX */
        justify-content: center; /* 🔥 center whole block */
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .stat-card img {
        width: 55px;
    }

    /* text center inside */
    .stat-content {
        align-items: center;
    }

    .stat-top {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .stat-top h2 {
        font-size: 36px;
    }

    .text,
    .text p {
        font-size: 15px;
        margin-top: 5px;
    }

    .stars {
        margin-top: -8px;
        margin-left: -106px;
    }
}

@media (max-width: 576px) {

    .stat-card {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .stat-card img {
        width: 45px;
    }

    .stat-top h2 {
        font-size: 30px;
    }

    .symbol {
        font-size: 18px;
    }

    .text,
    .text p {
        font-size: 13px;
    }
}











/* SECTION */
.services-section {
    background: #f5f6f8;
    padding: 80px 0;
    font-family: "Sitka Text", "Sitka Heading", serif;
}

/* CONTAINER */
.services-container {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    background: #F5F6F8;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: 0.3s;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

/* ICON BOX */
.icon {
    width: 65px;
    height: 65px;

    background: #1e2f66;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

/* ICON IMAGE */
.icon img {
    width: 35px;
}

/* TITLE */
.service-header h3 {
    font-size: 20px;
    color: #1e2f66;
    font-weight: 700;
    line-height: 1.2;
}

/* TEXT */
.service-card p {
    font-size: 16px;
    color: #1e2f66;
    margin: 12px 0 20px;
    line-height: 1.6;
    font-weight: 600;
}

/* BUTTON */
.btn-yellow {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 6px 20px;
    background: linear-gradient(
    to bottom,
    #f2b84a 0%,
    #E09903 50%,
    #c87f00 100%
    );
    color: #000;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    transition: all 0.2s ease;
}

.btn-yellow:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 10px rgba(242,184,74,0.6),
        0 0 20px rgba(224,153,3,0.5),
        0 0 40px rgba(200,127,0,0.4),
        0 10px 25px rgba(0,0,0,0.25);
}

/* CLICK (realistic press) */
.btn-yellow:active {
    transform: translateY(2px);

    box-shadow:
        0 2px 0 #c89600,
        0 4px 10px rgba(0,0,0,0.15);
}

/* VIEW ALL BUTTON */
.view-all {
    text-align: center;
    margin-top: 50px;
}

.view-all a {
    display: inline-block;
    background: #1e2f66;
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 20px;
}

.view-all a span {
    margin-left: 10px;
    display: inline-block;
    transition: 0.3s;
}

/* ICON */
.view-all a i {
    font-size: 18px;
}

/* HOVER MOVE EFFECT */
.view-all a:hover span {
    transform: translateX(5px);
}

/*  GLOW HOVER */
.view-all a:hover {
    background: #16234d;
    transform: translateY(-2px);

    box-shadow:
        0 0 10px rgba(30,47,102,0.6),
        0 0 25px rgba(30,47,102,0.5),
        0 0 50px rgba(30,47,102,0.4),
        0 10px 25px rgba(0,0,0,0.25);
}

/* =========================
   EXTRA LARGE FIX (1500px ↓)
    prevent squeezing
========================= */
@media (max-width: 1500px) {

    .services-container {
        width: 90%;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* =========================
   LARGE (1200px ↓)
========================= */
@media (max-width: 1200px) {

    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-header h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 15px;
    }
}


/* =========================
   TABLET (768px ↓)
========================= */
@media (max-width: 768px) {

    .services-container {
        grid-template-columns: 1fr;
    }

    .service-card {
        text-align: center;
    }

    .service-header {
        flex-direction: column;
        gap: 10px;
    }

    .service-header h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    .btn-yellow {
        margin-top: 10px;
    }
}

/* =========================
   MOBILE (576px ↓)
========================= */
@media (max-width: 576px) {

    .services-section {
        padding: 60px 10px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-header h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 13px;
    }

    .icon {
        width: 50px;
        height: 50px;
    }

    .icon img {
        width: 24px;
    }

    .btn-yellow {
        font-size: 14px;
        padding: 8px 18px;
    }

    .view-all a {
        font-size: 16px;
        padding: 12px 25px;
    }
}











/* SECTION */
.why-section {
    background: #f3ecd9;
    padding: 80px 0;
    font-family: "Sitka Text", serif;
}

/* HEADER */
.why-header {
    text-align: center;
    margin-bottom: 40px;
}

.subtitle {
    font-size: 24px;
    color: #8fa4c9;
}

/* CONTAINER */
.why-container {
    width: min(1500px, 90%);
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.why-left {
    width: 50%;
    display: flex;
    justify-content: center;
}

/*  GROUP WRAPPER */
.why-visual {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1/1;
}

/* IMAGE */
.image-box img {
    position: absolute;
    width: 75%;
    top: 15%;
    left: 10%;
    border-radius: 20px;
    z-index: 3;
}

/* SHAPES */
.shape {
    position: absolute;
    border-radius: 20px;
}

.shape-1 {
    width: 35%;
    height: 35%;
    background: #bcbcbc;
    top: 50px;
    left: 5%;
}

.shape-2 {
    width: 85%;
    height: 70%;
    background: #fff;
    bottom: 5%;
    left: 10%;
    border-radius: 40px;
}

.shape-3 {
    width: 40%;
    height: 45%;
    background: #f9f6ee;
    bottom: 0;
    right: 5%;
}

/* BADGE */
.experience-badge {
    position: absolute;
    bottom: 8%;
    right: 8%;
    background: #1e2f66;
    color: #fff;
    padding: 15px 25px;
    border-radius: 16px;
    text-align: center;
    z-index: 5;
}

.experience-badge h2 {
    font-size: clamp(30px, 5vw, 60px);
}

.experience-badge p {
    font-size: 14px;
}

/* RIGHT */
.why-right {
    width: 50%;
}

.why-right h2 {
    font-size: 32px;
    color: #1e2f66;
}

.desc {
    margin-bottom: 20px;
}

/* CARDS */
.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.why-card {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}


.why-card:hover {
    transform: scale(1.04); /* zoom */
    
    box-shadow:
        0 10px 25px rgba(0,0,0,0.15),
        0 0 20px rgba(30,47,102,0.15),
        0 0 40px rgba(30,47,102,0.1);
}
/* ICON */
.why-icon {
    width: 60px;
    height: 60px;
    background: #1e2f66;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0; /* important */
}

/*  FIX IMAGE ALIGNMENT */
.why-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1500px) {

    .why-cards {
        grid-template-columns: 1fr;
    }
}
/* =========================
   RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 992px) {

    .why-container {
        flex-direction: column;
        text-align: center;
    }

    .why-left,
    .why-right {
        width: 100%;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .why-section {
        padding: 50px 15px;
    }

    .why-right h2 {
        font-size: 22px;
    }

}




/* SECTION */
.steps-section {
    font-family: "Sitka Text", "Sitka Heading", serif;
    background: #f3ecd9;
    padding-bottom: 80px;
}

/* TOP */
.steps-top {
    background: #1e2f66;
    padding: 80px 0 120px;
    text-align: center;
    color: #fff;
}

.steps-top .subtitle {
    font-size: 30px;
    opacity: 0.7;
}

.steps-top h2 {
    font-family: "Sitka Text", "Sitka Heading", serif;
    font-size: 40px;
    margin-top: 20px;
    font-weight: 800;
    margin: 20px auto 0;
    max-width: 500px;
    line-height: 55px;
    margin-bottom: 60px;
    color: #ffffffad;
}

/* CONTAINER */
.steps-container {
    width: 80%;
    margin: -110px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
}

/* CARD */
.step-card {
    background: #A9BFE3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: scale(1.04);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.25),
        0 0 25px rgba(30,47,102,0.15),
        0 0 50px rgba(30,47,102,0.1);
}


/* IMAGE */
.step-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 15px;
}

/* CONTENT */
.step-content {
    padding: 20px 30px;

}

/* HEADER */
.step-head {
    display: flex;
    justify-content: space-between;
}

/* TITLE */
.step-head h3 {
    font-size: 22px;
    color: #1e2f66;
}

/* STEP BADGE */
.step-head span {
    font-size: 12px;
    background: #1e2f66;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    width: 100px;
    height: 30px;
    text-align: center;
    display: flex;           
    align-items: center;       
    justify-content: center; 

}

/* TEXT */
.step-content p {
    font-size: 15px;
    margin: 10px 0;
    color: #000;
}

/* SMALL TAG */
.step-content small {
    background: #1e2f66;
    color: #ffffffa6;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
}

@media (max-width: 1500px) {

    .steps-container {
        width: 90%;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    .step-card img {
    width: 100%;
    height: 330px;
    }
}


/* =========================
   LARGE (1200px ↓)
========================= */
@media (max-width: 1200px) {

    .steps-container {
        width: 90%;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .steps-top h2 {
        font-size: 34px;
        line-height: 1.4;
    }
}

/* =========================
   LAPTOP (992px ↓)
========================= */
@media (max-width: 992px) {

    .steps-top {
        padding: 70px 20px 110px;
    }

    .steps-top .subtitle {
        font-size: 22px;
    }

    .steps-top h2 {
        font-size: 30px;
        line-height: 1.4;
        max-width: 450px;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: -90px;
    }

    .step-card img {
        height: 300px;
    }
}

/* =========================
   TABLET (768px ↓)
========================= */
@media (max-width: 768px) {

    .steps-section {
        padding-bottom: 60px;
    }

    .steps-top {
        padding: 60px 15px 100px;
    }

    .steps-top h2 {
        font-size: 24px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0 15px;
        margin-top: -80px;
    }

    .step-card {
        border-radius: 14px;
    }

    .step-card img {
        height: 350px;
    }

    .step-content {
        padding: 18px;
    }

    .step-head h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 14px;
    }
}

/* =========================
   MOBILE (576px ↓)
========================= */
@media (max-width: 576px) {

    .steps-top {
        padding: 50px 10px 90px;
    }

    .steps-top .subtitle {
        font-size: 16px;
    }

    .steps-top h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .steps-container {
        margin-top: -70px;
    }

    .step-card img {
        height: 250px;
    }

    .step-head {
        flex-direction: column;
        gap: 5px;
    }

    .step-head span {
        width: fit-content;
        height: auto;
        padding: 4px 12px;
    }

    .step-head h3 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 13px;
    }

    .step-content small {
        font-size: 10px;
    }
}

















/* SECTION */
.highlight-section {
    position: relative;
    background: url("../images/business-mva/bg-mva-01.png") no-repeat center;
    background-size: cover;
    padding: 35px 10px 10px 25px;
    font-family: "Sitka Text", "Sitka Heading", serif;
    color: #fff;
    background-color: #1E2F66;
}


/* CONTAINER */
.highlight-container {
    position: relative;
    width: 85%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT */
.highlight-left {
    width: 50%;
}

.highlight-left h2 {
    font-family: "Sitka Text", "Sitka Heading", serif;
    font-size: 40px;
    line-height: 1.6;
    font-weight: 700;
}

/* RIGHT */
.highlight-right {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 30px;
}

/* ITEM */
.highlight-item {
    margin-bottom: 20px;
    padding: 15px;
}

/* ICON BOX */
.highlight-item .icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: none;
    margin-bottom: 20px;
}

/* ICON IMAGE */
.highlight-item .icon img {
    width: 50px;
    filter: brightness(0) invert(1); 
}

/* TEXT */
.highlight-item h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.highlight-item p {
    font-size: 15px;
    opacity: 0.85;
}


/* =========================
   LARGE (1200px ↓)
========================= */
@media (max-width: 1200px) {

    .highlight-container {
        width: 90%;
        gap: 40px;
    }

    .highlight-left h2 {
        font-size: 34px;
    }

    .highlight-right {
        gap: 25px;
    }
}

/* =========================
   LAPTOP (992px ↓)
========================= */
@media (max-width: 992px) {

    .highlight-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .highlight-left,
    .highlight-right {
        width: 100%;
    }

    .highlight-left h2 {
        font-size: 30px;
        line-height: 1.4;
    }

    .highlight-right {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }

    .highlight-item {
        text-align: center;
    }

    .highlight-item .icon {
        margin: 0 auto 15px;
    }
}


/* =========================
   TABLET (768px ↓)
========================= */
@media (max-width: 768px) {

    .highlight-section {
        padding: 50px 15px;
    }

    .highlight-left h2 {
        font-size: 24px;
    }

    .highlight-right {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-item {
        padding: 15px 10px;
    }

    .highlight-item h4 {
        font-size: 18px;
    }

    .highlight-item p {
        font-size: 14px;
    }
}

/* =========================
   MOBILE (576px ↓)
========================= */
@media (max-width: 576px) {

    .highlight-section {
        padding: 40px 10px;
    }

    .highlight-container {
        width: 100%;
    }

    .highlight-left h2 {
        font-size: 20px;
        line-height: 1.4;
    }

    .highlight-item {
        text-align: center;
    }

    .highlight-item h4 {
        font-size: 16px;
    }

    .highlight-item p {
        font-size: 13px;
    }

    .highlight-item .icon {
        width: 45px;
        height: 45px;
    }

    .highlight-item .icon img {
        width: 28px;
    }
}












.testimonial-section {
    background: #13245C;
    padding: 80px 0;
    color: #fff;
    font-family: "Sitka Text", "Sitka Heading", serif;
    text-align: center;
}

/* CONTAINER */
.container {
    width: 85%;
    margin: auto;
}

/* TOP */
.testi-top span {
    color: #abbfe3;
    font-size: 35px;
}

.testi-top h2 {
    font-size: 55px;
    margin: 10px 0;
    font-weight: 700;
    color: #ffffffa8;
}

.testi-top p {
    color: #cbd5e1;
}

/* STATS */
.testi-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 30px 0 50px;
}

.testi-stats h3 {
    color: #f4c430;
    font-size: 30px;
    font-family: "Times New Roman", Times, serif;
}

.testi-stats p {
    font-size: 20px;
    color: #cbd5e1;
}

.divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.3);
}


/* WRAPPER */
.testi-wrapper {
    overflow: hidden;
    width: 80%;
    margin: 0 auto;
}


/* CARDS */
.testi-cards {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    transition: 0.5s ease;
}

.testi-card {
    min-width: calc(50% - 20px);
    background: rgba(255,255,255,0.08);
    padding: 20px 40px;
    border-radius: 12px;
    text-align: left;
}

/* HEADER */
.testi-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.testi-header img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.testimonial-stars {
    color: #f4c430;
    font-size: 20px;
}

.testi-header h4 {
    font-size: 14px;
    margin: 2px 0;
}

.testi-header span {
    font-size: 12px;
    color: #cbd5e1;
}

/* TEXT */
.testi-card p {
    font-size: 13px;
    color: #dbe6ff;
}

/* NAV */
.testi-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 50px;
}

.testi-nav span {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.testi-nav span:hover {
    background: #f4c430;
    color: #000;
    border-color: #f4c430;

    transform: translateY(-2px);

    box-shadow:
        0 0 10px rgba(244,196,48,0.6),
        0 0 20px rgba(244,196,48,0.5),
        0 0 40px rgba(244,196,48,0.4),
        0 8px 20px rgba(0,0,0,0.25);
}

/* CTA */
.testi-cta h2 {
    font-size: 40px;
    margin-bottom: 10px;
}


.testi-cta p {
    color: #cbd5e1;
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
    max-width: 300px;
    margin: 0 auto 20px;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    background: #cbd5e1;
    color: #1e2f66;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #e2e8f0;
    color: #1e2f66;

    transform: translateY(-2px);

    box-shadow:
        0 0 10px rgba(203,213,225,0.6),
        0 0 20px rgba(203,213,225,0.4),
        0 8px 20px rgba(0,0,0,0.2);
}


/* =========================
   LARGE (1200px ↓)
========================= */
@media (max-width: 1200px) {

    .testi-wrapper {
        width: 90%;
    }

    .testi-top h2 {
        font-size: 45px;
    }
}


/* =========================
   LAPTOP (992px ↓)
========================= */
@media (max-width: 992px) {

    .testi-top span {
        font-size: 26px;
    }

    .testi-top h2 {
        font-size: 36px;
    }

    .testi-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .divider {
        display: none;
    }

    .testi-wrapper {
        width: 95%;
    }

    /* card size adjust */
    .testi-card {
        min-width: calc(100% - 20px);
        padding: 20px;
    }
}

/* =========================
   TABLET (768px ↓)
========================= */
@media (max-width: 768px) {

    .testimonial-section {
        padding: 70px 15px;
    }

    .container {
        width: 100%;
    }

    .testi-top h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .testi-top span {
        font-size: 18px;
    }

    .testi-top p {
        font-size: 14px;
    }

    .testi-stats {
        gap: 15px;
    }

    .testi-stats h3 {
        font-size: 20px;
    }

    .testi-wrapper {
        width: 100%;
    }

    .testi-card {
        min-width: 100%;
        padding: 20px;
    }

    .testi-card p {
        font-size: 13px;
    }

    .testi-header img {
        width: 40px;
        height: 40px;
    }

    .testi-nav span {
        width: 35px;
        height: 35px;
    }

    .testi-cta h2 {
        font-size: 28px;
    }

    .testi-cta p {
        font-size: 14px;
    }
}

/* =========================
   MOBILE (576px ↓)
========================= */
@media (max-width: 576px) {

    .testimonial-section {
        padding: 60px 10px;
    }

    .testi-top h2 {
        font-size: 22px;
    }

    .testi-top span {
        font-size: 14px;
    }

    .testi-top p {
        font-size: 12px;
    }

    .testi-card {
        border-radius: 10px;
        padding: 15px;
    }

    .testi-header {
        align-items: flex-start;
    }

    .testi-header h4 {
        font-size: 13px;
    }

    .testi-header span {
        font-size: 11px;
    }

    .testimonial-stars {
        font-size: 16px;
    }

    .testi-card p {
        font-size: 12px;
    }

    .testi-nav {
        gap: 10px;
    }

    .testi-nav span {
        width: 32px;
        height: 32px;
    }

    .testi-cta h2 {
        font-size: 20px;
    }

    .testi-cta p {
        font-size: 12px;
        max-width: 100%;
    }

    .cta-btn {
        width: 40%;
        display: block;
        margin: 0 auto;
    }
}


















/* SECTION */
.pricing-section {
    background: #17285D;
    padding: 100px 20px;
    color: #fff;
    font-family: "Sitka Text", "Sitka Heading", serif;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header .tag {
    color: #abbfe3;
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.pricing-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-header p {
    max-width: 650px;
    margin: auto;
    color: #cbd5e1;
    line-height: 1.6;
}
/* WRAPPER */
.pricing-wrapper{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

/* ========================= */
/* CARD */
/* ========================= */
.pricing-card{
    position:relative;
    width:350px;
    height:420px;
    padding:30px 10px;
    border-radius:28px;
    background:#15255B;
    overflow:hidden;

    display:flex;
    flex-direction:column;
}



/*  ACTIVATE GLOW */
.pricing-card:hover::before {
    opacity: 1;
    animation: borderGlow 3s linear infinite;
}
/* LEFT GLOW */
.pricing-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100px;
    height:100%;
    background:linear-gradient(
        to right,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.08),
        transparent
    );
}

/* RIGHT GLOW (FIXED PERFECT) */
.pricing-card::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:120px;
    height:100%;
    background: linear-gradient(to left, rgb(219 222 229 / 28%), rgb(219 222 229 / 12%), rgb(61 81 136 / 14%), transparent);
}

/* CENTER CARD */
.pricing-card.active{
    border:1px solid rgba(255,255,255,0.25);
}

/* BADGE */
.badge{
    position:absolute;
    top:8px;
    left:50%;
    transform:translateX(-50%);
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
}

/* TITLE */
.pricing-card h4{
    text-align:center;
    margin-bottom:5px;
    font-size: 16px;
    margin-top: 10px;
}

.pricing-card small{
    display:block;
    text-align:center;
    margin-bottom:25px;
    color:#cbd5e1;
}

/* LIST */
.pricing-card ul{
    list-style:none;
    padding:0;
    margin:0;
    flex-grow:1;
}

.pricing-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

/* LEFT SIDE (text flexible) */
.pricing-card ul li .left {
    display: flex;
    gap: 10px;
    flex: 1;
}

/* PRICE (fixed column) */
.pricing-card ul li b {
    width: 80px;
    font-weight: 600;
    color: #fff;
    font-size: 10px;

}


.left i{
    color:#facc15;
    font-size:12px;
    padding-top: 3px;
}
.left span{
    font-size: 12px;
}
/* BUTTON */
.pricing-card button{
    width: 45%;
    margin: 0 auto;
    padding:10px 20px;
    border:none;
    border-radius:30px;
    background: linear-gradient(180deg, #e1bf47 0%, #d1a000 40%, #684c00 100%);
    font-weight:600;
    cursor:pointer;
    transition: all 0.3s ease;
}
.pricing-card button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 10px rgba(225,191,71,0.6),
        0 0 20px rgba(209,160,0,0.5),
        0 0 40px rgba(104,76,0,0.4),
        0 10px 25px rgba(0,0,0,0.25);
}
/* HOVER */
.pricing-card:hover{
    transform:translateY(-10px);
    transition:.3s;
}

/* =========================
   LARGE (1200px ↓)
========================= */
@media (max-width: 1200px) {

    .pricing-card {
        width: 360px;
        height: auto; /* important fix */
        padding: 25px 15px;
    }

    .pricing-header h2 {
        font-size: 36px;
    }
}


/* =========================
   LAPTOP (992px ↓)
========================= */
@media (max-width: 992px) {

    .pricing-wrapper {
        gap: 20px;
    }

    .pricing-card {
        width: 500px;
        margin-bottom: 30px;
    }

    .pricing-header h2 {
        font-size: 32px;
    }

    .pricing-header p {
        font-size: 14px;
    }
}


/* =========================
   TABLET (768px ↓)
========================= */
@media (max-width: 768px) {

    .pricing-section {
        padding: 80px 15px;
    }

    .pricing-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 420px;
        height: auto;
    }

    .pricing-header h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .pricing-header .tag {
        font-size: 16px;
    }

    .pricing-card ul li {
        align-items: flex-start;
    }

    .pricing-card ul li b {
        width: auto;
        font-size: 11px;
    }

    .pricing-card button {
        width: 40%;
        font-size: 14px;
    }
}


/* =========================
   MOBILE (576px ↓)
========================= */
@media (max-width: 576px) {

    .pricing-section {
        padding: 60px 10px;
    }

    .pricing-header h2 {
        font-size: 22px;
    }

    .pricing-header p {
        font-size: 13px;
    }

    .pricing-card {
        border-radius: 20px;
        padding: 20px 15px;
    }

    .pricing-card h4 {
        font-size: 14px;
    }

    .pricing-card small {
        font-size: 12px;
    }

    .left span {
        font-size: 11px;
    }

    .pricing-card ul li {
        gap: 4px;
    }

    .pricing-card ul li b {
        font-size: 11px;
    }

    .pricing-card button {
        width: 30%;
        padding: 12px;
    }
}







.blog-section {
    background: #13245C;
    padding: 100px 20px;
    text-align: center;
    font-family: "Sitka Text", "Sitka Heading", serif;
}

/* HEADER */
.blog-tag {
    color: #abbfe3;
    font-size: 20px;
}

.blog-section h2 {
    font-size: 42px;
    margin: 10px 0;
    color: #dbeafe;
}

.blog-sub {
    color: #cbd5e1;
    margin-bottom: 50px;
}

/* WRAPPER */
.blog-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.blog-card {
    width: 100%;
    background: #ABBFE2;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* IMAGE */
.blog-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 20px;
}

/* CONTENT */
.blog-content {
    padding: 20px;
}

/* BADGE */
.blog-badge {
    padding: 5px 20px;
    border: 1px solid #1e2f66;
    border-radius: 20px;
    font-size: 11px;
    color: #1e2f66;
    margin-bottom: 10px;
}

/* TITLE */
.blog-content h4 {
    font-size: 16px;
    color: #1e2f66;
    margin-bottom: 10px;
    line-height: 24px;
    margin-top: 15px;
}

/* TEXT */
.blog-content p {
    font-size: 13px;
    color: #334155;
    margin-bottom: 15px;
}

/* META */
.meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #1e2f66;
    margin-bottom: 15px;
}

.meta img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.dot {
    opacity: .6;
}

/* BUTTON */
.read-btn {
    display: block;
    text-align: center;
    background: #1E2F66;
    color: #ffffffd6;
    padding: 5px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    width: 45%;
    margin: auto;
    transition: all 0.3s ease;
}

.read-btn:hover {
    background: #16234f;
    transform: translateY(-2px);

    box-shadow:
        0 0 10px rgba(30,47,102,0.6),
        0 0 20px rgba(30,47,102,0.5),
        0 0 40px rgba(30,47,102,0.4),
        0 8px 20px rgba(0,0,0,0.25);
}

/* =========================
   LARGE DEVICES (1200px ↓)
========================= */
@media (max-width: 1200px) {

    .blog-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-section h2 {
        font-size: 36px;
    }
}


/* =========================
   TABLET (992px ↓)
========================= */
@media (max-width: 992px) {

    .blog-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .blog-section {
        padding: 80px 20px;
    }

    .blog-section h2 {
        font-size: 32px;
    }

    .blog-sub {
        font-size: 14px;
    }

    .blog-card img {
        height: 230px;
    }
    .blog-card .meta img {
        height: 35px;
    }
    .meta {
    font-size: 9px;
    }
}


/* =========================
   SMALL TABLET (768px ↓)
========================= */
@media (max-width: 768px) {

    .blog-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-section {
        padding: 70px 15px;
    }

    .blog-section h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .blog-tag {
        font-size: 16px;
    }

    .blog-sub {
        font-size: 13px;
        margin-bottom: 40px;
    }

    .blog-card img {
        height: 300px;
    }
    .blog-card .meta img {
        height: 35px;
    }
    .blog-content h4 {
        font-size: 15px;
    }

    .blog-content p {
        font-size: 13px;
    }

    .meta {
        flex-wrap: wrap;
        gap: 6px;
        font-size: 15px;
    }

    .read-btn {
        width: 30%;
        font-size: 13px;
    }
}


/* =========================
   MOBILE (576px ↓)
========================= */
@media (max-width: 576px) {

    .blog-section {
        padding: 60px 10px;
    }

    .blog-section h2 {
        font-size: 22px;
    }

    .blog-tag {
        font-size: 14px;
    }

    .blog-sub {
        font-size: 12px;
    }

    .blog-card {
        border-radius: 16px;
    }

    .blog-card img {
        height: 220px;
        border-radius: 16px;
    }

    .blog-content {
        padding: 15px;
    }

    .blog-content h4 {
        font-size: 14px;
        line-height: 20px;
    }

    .blog-content p {
        font-size: 12px;
    }

    .blog-card .meta img {
        width: 28px;
        height: 28px;
    }

    .meta {
        font-size: 11px;
    }

    .read-btn {
        width: 30%;
        padding: 10px;
        font-size: 13px;
    }
}







/* SECTION */
.faq-section {
    background: #e9e2d2;
    padding: 100px 20px;
    font-family: "Sitka Text", "Sitka Heading", serif;
    text-align: center;
}

/* TAG */
.faq-tag {
    font-size: 20px;
    color: #1e2f66;
    display: block;
    margin-bottom: 10px;
}

/* TITLE */
.faq-section h2 {
    font-size: 42px;
    color: #1e2f66;
    margin-bottom: 50px;
}

/* WRAPPER */
.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

/* ITEM */
.faq-item {
    border: 1px solid #1e2f66;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: left;
    overflow: hidden;
    background: transparent;
}

/* QUESTION */
.faq-question {
    padding: 18px 20px;
    font-weight: 600;
    color: #1e2f66;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 14px;
    color: #6b7280;
    transition: all 0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

/* ICON */
.faq-question span {
    font-size: 20px;
}

/* =========================
   TABLET (≤ 992px)
========================= */
@media (max-width: 992px) {

    .faq-section {
        padding: 80px 20px;
    }

    .faq-section h2 {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .faq-tag {
        font-size: 18px;
    }

    .faq-wrapper {
        max-width: 100%;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
    }

    .faq-answer {
        font-size: 13px;
    }
}


/* =========================
   MOBILE (≤ 768px)
========================= */
@media (max-width: 768px) {

    .faq-section {
        padding: 60px 15px;
    }

    .faq-section h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .faq-tag {
        font-size: 16px;
    }

    .faq-question {
        font-size: 14px;
        padding: 14px 16px;
    }

    .faq-answer {
        font-size: 12.5px;
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 12px 16px;
    }

    .faq-question span {
        font-size: 18px;
    }
}


/* =========================
   SMALL MOBILE (≤ 576px)
========================= */
@media (max-width: 576px) {

    .faq-section {
        padding: 50px 10px;
    }

    .faq-section h2 {
        font-size: 22px;
    }

    .faq-tag {
        font-size: 14px;
    }

    .faq-question {
        font-size: 13px;
        padding: 12px 14px;
    }

    .faq-answer {
        font-size: 12px;
    }

    .faq-question span {
        font-size: 16px;
    }
}







/* SECTION */
.consult-section {
    padding: 120px 20px;
    color: #fff;
    font-family: "Sitka Text", "Sitka Heading", serif;
    background: url('../images/consultation-bg.png') no-repeat center;
    background-size: cover;
}


/* CONTENT */
.consult-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.consult-text{
    padding-top: 16px;
}
/* TEXT */
.consult-text h2 {
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 600;
}

.consult-text p {
    font-size: 14px;
    color: #cbd5e1;
}

/* ACTIONS */
.consult-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* PRIMARY BUTTON */
.btn-primary {
    padding: 12px 20px;
    border-radius: 8px;
    background: linear-gradient(180deg, #e2e8f0, #cbd5e1);
    color: #1e2f66;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
}

/* OUTLINE BUTTON */
.btn-outline {
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
}

.btn-primary,
.btn-outline {
    transition: all 0.3s ease;
}

/*  PRIMARY HOVER */
.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
}

/* OUTLINE HOVER */
.btn-outline:hover {
    transform: translateY(-3px) scale(1.05);
}
/* =========================
   RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 992px) {

    .consult-wrap {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .consult-text {
        padding-top: 0; /* remove extra space */
    }

    .consult-text h2 {
        font-size: 28px;
    }

    .consult-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary,
    .btn-outline {
        font-size: 16px;
        padding: 10px 18px;
    }
}


/* MOBILE */
@media (max-width: 576px) {

    .consult-section {
        padding: 80px 15px;
    }

    .consult-text h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .consult-text p {
        font-size: 13px;
    }

    .consult-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
        font-size: 15px;
        padding: 12px;
    }
}



/* ========================= */
/* SECTION */
/* ========================= */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;   
    padding: 100px 20px;
    font-family: "Sitka Text", "Sitka Heading", serif;
    color: #fff;
    background: url('../images/contact-bg-01.png') no-repeat center;
    background-size: cover;
}


/* CONTAINER */
.contact-container {
    width: 100%;
    max-width: 1200px;  
    margin: 0 auto;
    gap: 60px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
}
/* ========================= */
/* LEFT SIDE */
/* ========================= */
.contact-left .tag {
    font-size: 16px;
    color: #abbfe3;
    letter-spacing: 1px;
    font-weight: 800;
}

.contact-left h2 {
    font-size: 42px;
    margin: 10px 0 15px;
    line-height: 1.2;
}

.contact-left p {
    color: #cbd5e1;
    max-width: 420px;
    margin-bottom: 30px;
}

/* INFO ITEMS */
.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: scale(1.03);
}

.info-item i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ABBFE2;
    border-radius: 10px;
    font-size: 23px;
    color: #000;
}

.info-item h5 {
    font-size: 13px;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 12px;
}

/* ========================= */
/* RIGHT SIDE */
/* ========================= */
.contact-right {
    max-width: 100%;
}

.contact-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
}


/* LABEL */
.contact-right label {
    font-size: 11px;
    display: block;
    margin-bottom: 5px;
    color: #cbd5e1;
    letter-spacing: 1px;
}

/* INPUT DESIGN (MATCH TARGET) */
input,
select,
textarea {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 6px;

    background: #ffffff1f;

    color: #cbd5e1;
    font-size: 13px;

}

/* SELECT */
select {
    appearance: none;
    margin-bottom: 15px;
}


.select-option{
    background: #ffffff1f;
    color: #fff;
}

/* TEXTAREA */
textarea {
    height: 120px;
    margin-top: 10px;
}
input::placeholder,
textarea::placeholder {
    color: #cbd5e1;
}
/* CHECKBOX */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    margin: 15px 0;
}

.checkbox-group input {
    width: 14px;
    height: 14px;
    margin-top: 3px;
    accent-color: #ABBFE2;
}

/* BUTTON */
.contact-right button {
    width: 100%;
    padding: 5px;
    border-radius: 6px;
    border: none;
    background: #ABBFE2;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-right button:hover {
    transform: scale(1.04);

    box-shadow:
        0 0 10px rgba(171,191,226,0.6),
        0 0 20px rgba(171,191,226,0.5),
        0 0 40px rgba(171,191,226,0.4),
        0 8px 20px rgba(0,0,0,0.2);
}

/* =========================
   TABLET (≤ 992px)
========================= */
@media (max-width: 992px) {

    .contact-section {
        padding: 80px 20px;
        min-height: auto;
    }

    .contact-left h2 {
        font-size: 32px;
    }

    .contact-right h2 {
        font-size: 28px;
    }

    .contact-left p {
        max-width: 100%;
    }

    /* form 2 column → still ok */
    .form-row {
        gap: 15px;
    }
}


/* =========================
   MOBILE (≤ 768px)
========================= */
@media (max-width: 768px) {

    .contact-section {
        padding: 60px 15px;
    }

    .contact-left {
        text-align: center;
    }

    .contact-left h2 {
        font-size: 26px;
    }

    .contact-left p {
        font-size: 13px;
    }

    /* info center */
    .info-item {
        text-align: left;
    }

    /* form full width */
    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .contact-right h2 {
        text-align: center;
        font-size: 24px;
    }
}


/* =========================
   SMALL MOBILE (≤ 576px)
========================= */
@media (max-width: 576px) {

    .contact-section {
        padding: 50px 10px;
    }

    .contact-left h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .contact-right h2 {
        font-size: 22px;
    }

    input,
    select,
    textarea {
        font-size: 12px;
        padding: 10px;
    }

    .contact-right button {
        font-size: 16px;
        padding: 10px;
    }

    /* checkbox clean */
    .checkbox-group {
        font-size: 11px;
    }
}












/* FOOTER */
.footer {
    background: #12235A;
    padding: 80px 20px 30px;
    color: #cbd5e1;
    font-family: "Sitka Text", "Sitka Heading", serif;
    border-top: 4px solid #1f3a9112;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* TOP GRID */
.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* COLUMN */
.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-logo img {
    width: 150px;   
    margin-bottom: 15px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d1a000;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col .line {
    border-bottom: 2px solid rgb(255 255 255 / 66%);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* SUBSCRIBE */
.subscribe {
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgb(255 255 255 / 66%);
    margin-top: 20px;
}

.subscribe input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 10px 0;
}

.subscribe input::placeholder {
    color: #cbd5e1;
}

.subscribe button {
    background: #A9BFE3;
    border: none;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.subscribe button:hover {
    transform: scale(1.05);

    box-shadow:
        0 0 8px rgba(169,191,227,0.7),
        0 0 18px rgba(169,191,227,0.5),
        0 0 30px rgba(169,191,227,0.4),
        0 6px 15px rgba(0,0,0,0.2);
}

/* LINE */
.footer-line {
    height: 4px;
    background: rgba(255,255,255,60%);
    margin: 40px 0 20px;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* SOCIAL */
.footer-bottom .social a {
    margin-left: 20px;
    text-decoration: none;
    color: #cbd5e1;
}

.footer-bottom .social a:hover {
    color: #d1a000;
}

/* =========================
   TABLET (992px)
========================= */
@media (max-width: 992px) {

    .footer-top {
        grid-template-columns: repeat(2, 1fr); /* 2 column */
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom .social a {
        margin: 0 10px;
    }
}


/* =========================
   MOBILE (576px)
========================= */
@media (max-width: 576px) {

    .footer {
        padding: 60px 15px 25px;
    }

    .footer-top {
        grid-template-columns: 1fr; /* 1 column */
        gap: 25px;
    }

    .footer-col h4 {
        font-size: 15px;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 13px;
    }

    /* subscribe full width */
    .subscribe {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        border-bottom: none;
    }

    .subscribe input {
        width: 100%;
        border-bottom: none;
    }

    .subscribe button {
        width: 100%;
        text-align: center;
        padding: 8px;
    }

    /* bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom .social {
        margin-top: 10px;
    }

    .footer-bottom .social a {
        display: inline-block;
        margin: 0 8px;
    }
}
