
*,
*::after,
*::before{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
/* * {
  outline: 1px solid red;
} */
/* Alata */
@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
@import url(https://db.onlinewebfonts.com/c/7635d90039421d23bf78530f566b63db?family=Very+Vogue+Text);
/* Baskervville */
@font-face {
    font-family: 'Baskervville';
    src: url('../fonts/baskerville-similar/Baskervville/static/Baskervville-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Baskervville-Bold';
    src: url('../fonts/baskerville-similar/Baskervville/static/Baskervville-Bold.ttf') format('truetype');
}

@font-face {
    font-family: "Very Vogue Text";
    src: url("https://db.onlinewebfonts.com/t/7635d90039421d23bf78530f566b63db.eot");
    src: url("https://db.onlinewebfonts.com/t/7635d90039421d23bf78530f566b63db.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/7635d90039421d23bf78530f566b63db.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/7635d90039421d23bf78530f566b63db.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/7635d90039421d23bf78530f566b63db.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/7635d90039421d23bf78530f566b63db.svg#Very Vogue Text")format("svg");
}


/* =========================
   VARIABLES
========================= */
:root {
    --font-v-1: 'Alata', sans-serif;
    --font-v-2: 'Baskervville', serif;
    --font-v-3: 'Very Vogue Text', serif;
    --font-v-4: 'Baskervville-Bold', serif;
    --primary-cat: #ff9f43; /* Warm Ginger */
    --secondary-cat: #576574; /* Charcoal Gray */
    --bg-light: #fefaf6; /* Cream */
    --bg-light: #fefaf6; /* Cream */
    --white: #ffffff;
    --black: #000000;
}

h1, h2, h3 {
    font-family: var(--font-v-2);
}
.font-motterdam{
    font-family: 'Motterdam', cursive;
}
.text-black{
    color: #000;
}
.text-white{
    color: var(--white);
}
.text-v-3{
    font-family: var(--font-v-3);
}
/* =========================
   HEADER LAYOUT
========================= */
.header {
    display: flex;
    width: 100%;
}

/* LEFT LOGO */
.header-left {
    background: #0d0d8c;
    color: white;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    min-width: 350px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: bold;
}

.logo img {
    height: 75px;
}


/* RIGHT SIDE */
.header-right {
    flex: 1;
}

.topbar {
    background: #c7b08a;
    padding: 10px 20px;
    font-size: 18px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: -15px;
    font-family: var(--font-v-3);
    /* flex-wrap: wrap; */
}

/* Navbar Container */
.navbar {
    background-color: var(--white);
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    /* padding: 1rem 5%; */
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-cat);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
   justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
    gap: 40px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    font-weight: 350;
    /* font-size: 20px; */
    /* padding: 10px 25px; */
    transition: 0.3s;
    font-family: var(--font-v-1);
}
.nav-links a:active {
    color: #030081;
    font-weight: 600;
}

/* Dropdown Logic */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    border-top: 3px solid var(--primary-cat);
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    font-size: 0.9rem;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-cat);
    border-radius: 2px;
}

.hero {
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;   /* vertical center */
    justify-content: flex-start; /* left */
}


/* =========================
   GRADIENT OVERLAY
========================= */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* BLACK → TRANSPARENT (LEFT → RIGHT) */
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.95) 0%,   /* 🔥 more black */
        rgba(0,0,0,0.75) 25%,
        rgba(0,0,0,0.2) 45%,
        rgba(0,0,0,0.1) 70%,
        rgba(0,0,0,0) 100%
    );
}
.hero-overlay-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* BLACK → TRANSPARENT (BOTTOM → TOP) */
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.75) 25%,
        rgba(0,0,0,0.2) 45%,
        rgba(0,0,0,0.1) 70%,
        rgba(0,0,0,0) 100%
    );
}


/* =========================
   CONTENT (BOTTOM LEFT)
========================= */
.hero-content {
    position: relative;
    color: white;
    padding: 60px;
    max-width: 900px;
    text-align: left; /* ensure left align */
}


/* TITLE */
.hero-content .title {
    font-size: 57px;
    line-height: 1.5; /* good proportion for large titles */
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: var(--font-v-2);
    font-weight: 400;
}

/* SUBTITLE */
.hero-content .subtitle {
    font-size: 18px;
    line-height: 27px; 
    opacity: 0.9;
    font-family: var(--font-v-1);
    text-transform: uppercase;
    font-weight: 300;
}
/* =========================
   SEARCH FLOATING
========================= */
.search-wrapper {
    position: relative;
    margin-top: -40px; /* pull up over next section */
    display: flex;
    justify-content: center;
    z-index: 10;
}

.search-box {
    background: #fff;
    width: 60%;
    max-width: 700px;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    font-family: var(--font-v-3);
}

.search-icon {
    width: 24px;
    height: 24px;
}

/* =========================
   SERVICES LAYOUT
========================= */
.services {
    display: flex;
    align-items: center; /* THIS is the fix */
    justify-content: center;
    /* gap: 30px; */
    padding: 80px 60px;
}

/* DEFAULT CARD */
.service-item {
    position: relative;
    width: 28%;
}

.service-item.featured {
    width: 36%;
}

/* IMAGE */
/* Side images */
.service-item img {
   width: 80%;           /* main change */
    height: auto;
    display: block;
    margin: 0 auto;       /* center image */
}




/* =========================
   OVERLAY (BOTTOM → TOP)
========================= */
.overlay-img-service {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* center overlay */

    width: 80%; /* same as image width */
    padding: 25px;
    color: white;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.7) 40%,
        rgba(0,0,0,0.5) 70%,
        rgba(0,0,0,0) 100%
    );
}



.overlay-img-service .desc {
    font-size: 22px;
    margin-bottom: 30px;
    font-family: var(--font-v-3);
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
}

/* SHOW DESCRIPTION ON HOVER */
.service-item:hover .overlay-img-service .desc {
    opacity: 1;
    /* transform: translateY(0); */
}
/* TITLE */
.overlay-img-service h3 {
    font-size: 35px;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    font-family: var(--font-v-3);
}
    .img-service-wrapper h2 {
        font-size: 18px;
        text-align: center;
        padding: 5px;
    }


/* =========================
   HOVER EFFECT
========================= */

/* UNDERLINE ANIMATION */
.overlay-img-service h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.service-item:hover .overlay-img-service h3::after {
    width: 100%;
}

/* =========================
   MAIN LAYOUT
========================= */
.who-we-are {
    display: flex;
    width: 100%;
    height: 100vh;

    background: url('/assets/img/bg/bg-home-1.webp') no-repeat center center;
    background-size: cover; /* covers left + right */
}

.who-left {
    width: 50%;
    position: relative;
    
}

.who-overlay-content {
    position: absolute;
    inset: 0; /* ✅ cover entire left side */

    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* ✅ push content to bottom */
    align-items: flex-start;   /* ✅ left align */

    padding: 0 60px 80px 60px;
    color: white;

    background: rgba(0,0,0,0.3); /* full overlay */
}
.who-content {
    max-width: 500px; /* ✅ THIS is what you want */
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 15px;

    color: white;
}
/* TEXT */
.who-overlay-content h5 {
    font-size: 28px;
    margin: 15px 0;
    font-family: var(--font-v-3);
}
.who-overlay-content h1 {
    font-size: 58px;
    margin: 25px 0;
    font-family: var(--font-v-2);
}

.who-overlay-content p {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 300;
    font-family: var(--font-v-3);
}

.who-btn {
    display: inline-block;
    margin-top: 20px;
    background: white;
    color: black;
    padding: 12px 20px;
    text-decoration: none;
    width: auto;
}

.who-right {
    width: 50%;
    display: flex;
    flex-direction: column;
}

/* ROW */
.who-row {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.2);

    /* background: linear-gradient(135deg, #2a2a72, #7a1fa2); */
    color: white;
    backdrop-filter: blur(10px);
}
/* ACTIVE (TOP WHITE ONE) */
.who-row.active {
    background: #f5f5f5;
    color: black;
}

/* TEXT */
.who-row h2 {
    font-size: 28px;
}

.who-row span {
    font-size: 16px;
}

/* SECTION */
.logo-slider {
    background: #ffffff;
    padding: 30px 0;
}

/* CONTAINER */
.logo-slider-1 {
    width: 100%;
  max-width: 1000px;
  margin-left: 90px;
  text-align: center;
}

/* MAIN QUOTE */
.logo-slider-1 p {
    color: #030081;
    font-size: 58px;
    line-height: 1.2;
    max-width: 900px;
    /* margin: 0 auto 10px auto; */
    text-align: left;
    font-family: var(--font-v-3);
}

/* NAME (RIGHT ALIGN) */
.name-quote {
    color: #000;              /* black */
    text-align: right;        /* push to right */
    margin-bottom: 40px;
    margin-right: 50px;
}

.owl-carousel.version-1, .owl-carousel.version-2{
  position: relative;
  padding: 15px 105px 0;
}

.owl-carousel .owl-item {
    background: #E5E3DF;
    padding: 0 20px;
}
.owl-carousel .owl-item img {
    max-height: 100px;
    width: auto;
    margin: 0 auto;
    display: block;
    opacity: 0.7;
    transition: 0.3s;
}

.owl-carousel .owl-item img:hover {
    opacity: 1;
}.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 36px;
    height: 36px;

    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);

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

.owl-nav button.owl-next {
    right: -10px;
}

.owl-nav button.owl-prev {
    left: -10px;
}

/* SECTION */
.expertise-section {
    background: #000;
    color: #fff;
    padding: 40px 0;
}

/* CONTAINER */
.expertise-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

/* LEFT */
.expertise-left {
    width: 50%;
}

.expertise-left h5 {
    font-size: 34px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.7;
        font-family: var(--font-v-3);
}

.expertise-left p {
    font-size: 55px;
    font-weight: 400;
    line-height: 60px;
    max-width: 700px;
    font-family: var(--font-v-3);
}

/* RIGHT */
.expertise-right {
    width: 50%;
    font-family: var(--font-v-1);
}

/* HEADING */
.expertise-right h4 {
    font-size: 20px;
    margin-bottom: 20px;
}
.expertise-container h3 {
    width: 80%;
    font-size: 20px;
    margin-bottom: 20px;
}

.radio-pill input {
    display: none;
}

/* LABEL STYLE (LIKE BUTTON) */
.radio-pill label span {
    display: inline-block;
    padding: 10px 36px;
    border: 1px solid #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 100;
}
.filter-group.radio-pill,
.filter-categories.radio-pill {
    margin-bottom: 20px;
}

/* DEFAULT */
.radio-pill label span {
    background: transparent;
    color: #fff;
}

/* ACTIVE (checked) */
.radio-pill input:checked + span {
    background: #fff;
    color: #000;
}

/* HOVER */
.radio-pill label span:hover {
    background: #fff;
    color: #000;
}
/* CATEGORY BUTTONS */
/* container */
.filter-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* hide radio */
.filter-categories input {
    display: none;
}

/* pill style */
.filter-categories label span {
    display: inline-block;
    padding: 12px 16px;
    border: 1px solid #fff;
    border-radius: 100px;
    cursor: pointer;
    transition: 0.3s;

    background: transparent;
    color: #fff;
}

/* active (checked) */
.filter-categories input:checked + span {
    background: #fff;
    color: #000;
}

/* hover */
.filter-categories label span:hover {
    background: #fff;
    color: #000;
}

/* SORT + SEARCH */
.filter-tools {
    display: flex;
    gap: 15px;
}

.filter-tools select,
.filter-tools input {
    padding: 10px 25px;
    border: 1px solid #fff;
    border-radius: 20px;
    background: transparent;
    color: #fff;
}

.filter-tools input::placeholder {
    color: rgba(255,255,255,0.6);
}
.filter-categories button:hover {
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}
.filter-tools input:focus {
    outline: none;
    border-color: #aaa;
}
.btn-consult-nav {
    padding: 10px 20px;
    background: #030081;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

/* hover effect */
.btn-consult-nav:hover {
    background: transparent;
    color: #fff;
    background-color: #0200819f;
}
.btn-book {
    display: inline-block;
    margin-top: 50px;
    font-size: 30px;
    padding: 20px 30px;
    border: var(--bg-light);
    background: #ffffff00;
    color: #fff;
    border: 2px solid #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-v-4);
    text-decoration: none;
}

/* hover effect */
.btn-book:hover {
    background: transparent;
    color: #fff;
    background-color: #0200819f;
    text-decoration: none;
}
.btn-find {
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 20px;
    background: #fff;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
}

/* hover effect */
.btn-find:hover {
    background: transparent;
    color: #fff;
}
/* SECTION */
.expertise-solutions {
    margin-top: 80px;
}

/* ALIGN WITH LEFT SIDE */
.solutions-container {
    width: 80%;
    margin: 0 auto;
}

/* HEADING */
.solutions-heading {
    color: #fff;
    margin-bottom: 40px;
    font-size: 28px;
}

/* GRID */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ITEM */
.solution-item {
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.solution-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    padding: 30px;

    display: flex;                /* ✅ */
    align-items: center;
    justify-content: space-between; /* text left, arrow right */

    color: #fff;
    
    /* background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.4),
        transparent
    ); */
}

.solution-overlay h4 {
    margin: 0;
    font-family: var(--font-v-1);
    font-size: 28px;     /* increase */
    font-weight: 100;
    max-width: 80%;
}
.solution-overlay .arrow {
    width: 94px;
    height: 94px;

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

    border-radius: 50%; /* ✅ circle */

    background: rgba(255, 255, 255, 0.25); /* ✅ 25% opacity */
    backdrop-filter: blur(4px); /* optional premium blur */
}
.solution-overlay .arrow svg {
    width: 54px;
    height: 54px;

    transform: rotate(-45deg); /* ✅ rotate arrow */
    transition: transform 0.3s ease;
}
.solution-item:hover .arrow svg {
    transform: rotate(-45deg) translateX(10px);
}
/* SECTION */
.expertise-cta {
    background: #000;
    padding: 40px 0;
}

/* CONTAINER */
.cta-container {
    width: 80%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* AVATAR GROUP */
.cta-avatars {
    display: flex;
}

/* CIRCLE IMAGES */
.cta-avatars img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;

    border: 3px solid #000;

   margin-left: -25px; /* overlap */
}

/* remove first overlap */
.cta-avatars img:first-child {
    margin-left: 0;
}

/* TEXT */
.cta-text {
    color: #fff;
}

/* SMALL TEXT */
.cta-small {
    font-size: 25px;
    margin-bottom: 10px;
    font-family: var(--font-v-3);
}

/* LINK */
.cta-link {
    font-size: 35px;
    font-family: var(--font-v-3);
    color: #fff;
    text-decoration: underline;

    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ARROW */
.cta-arrow svg {
    transform: rotate(-45deg);
    transition: 0.3s;
}

/* HOVER EFFECT */
.cta-link:hover .cta-arrow svg {
    transform: rotate(-45deg) translateX(6px);
}

/* SECTION */
.featured-images {
    background: #ffffff;
    min-height: 100vh; /* ✅ full screen height */
    display: flex;
    align-items: center; /* vertical center */
}

/* CONTAINER */
.featured-container {
    width: 100%;
    margin: 0 auto;
}
/* HEADER */
.featured-label {
    font-size: 100px;
    font-weight: 100;
    color: #030081;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
    font-family: var(--font-v-4);
}

/* ROW */
.featured-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
/* SIDE IMAGES */
.featured-item {
    flex: 1;
    height: 350px;
    overflow: hidden;
}

/* CENTER IMAGE (BIGGER) */
.featured-center {
    flex: 1.5;       /* 🔥 bigger width */
    height: 450px;   /* 🔥 taller */
}

/* IMAGE STYLE */
.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-footer {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;   /* vertical center */
    justify-content:center;
}

.hero-footer-content {
    /* position: relative; */
    color: white;
    /* padding: 60px; */
    max-width: 900px;
    text-align: center; /* ensure left align */
    z-index: 2;
}
.hero-footer-content .title {
    font-size: 37px;
    line-height: 1.5; /* good proportion for large titles */
    letter-spacing: 2px;
    margin-top: 147px;
    margin-bottom: 15px;
    font-family: var(--font-v-3);
    font-weight: 400;
}

/* SUBTITLE */
.hero-footer-content .subtitle {
    font-size: 61px;
    opacity: 0.9;
    line-height: 1.2;
    font-family: var(--font-v-3);
    text-transform: uppercase;
    font-weight: 300;
}
.footer {
    background: #000;
    color: #fff;
    font-family: var(--font-v-1);
}
/* TOP */
.footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 45px 0;
}

/* container alignment */
.footer-top-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* label */
.market-label {
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
}

/* 🔥 pill style */
.market-pill {
    background: #fff;
    color: #000;

    padding: 8px 16px;
    border-radius: 12px;

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

    display: flex;
    align-items: center;
    gap: 8px;
}

/* arrows */
.market-pill .up {
    color: #00c853;
    font-size: 12px;
}

.market-pill .down {
    color: #ff3d00;
    font-size: 12px;
}

/* LIVE STATUS */
.status-live {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* GREEN DOT */
.dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
}
/* BOTTOM */
.footer-bottom {
    padding: 60px 0;
}

/* CONTAINER */
.footer-bottom-container {
    width: 90%;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

/* BIG TEXT */
.footer-brand h2 {
    font-size: 36px;
    line-height: 1.4;
    font-weight: 400;
    font-family: var(--font-v-3);
}

/* MENU */
.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    font-family: var(--font-v-3);
}

/* CONTACT */
.footer-contact p {
    margin-bottom: 10px;
    font-size: 20px;
    font-family: var(--font-v-3);
}
#usd, #gdp, #fdi {
    opacity: 0.6;
}
.dot {
    animation: pulse 1.5s infinite;
}
/* TOP */
.footer-copyright {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 45px 0;
}

/* container alignment */
.footer-copyright-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.copyright-label {
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: var(--font-v-3);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}
/* =========================
   SECTION
========================= */
.insight-section {
    background: #F8F7F4;
    padding: 60px 0;
}

/* =========================
   TABS
========================= */
.tabs {
    display: flex;
    gap: 25px;
    padding: 0 60px 40px;
}

.tab {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    color: #7E7E7E;
    letter-spacing: 1px;
    transition: 0.3s;
}

.tab.active {
    color: #0600FF;
}

/* =========================
   CONTENT
========================= */
.tab-content {
    width: 100%;
}

/* =========================
   ROW ITEM
========================= */
.row-item {
    display: grid;
    grid-template-columns: 2fr 1fr 3fr 2fr;
    align-items: center;
    gap: 30px;

    padding: 40px 60px;
    border-top: 1px solid #ddd;

    opacity: 0.16; /* 🔥 default faded */
    transition: opacity 0.4s ease;
}

/* hover */
.row-item:hover {
    opacity: 1;
}

/* optional: keep one active */
.row-item.active {
    opacity: 1;
}

/* =========================
   COLUMNS
========================= */

/* TITLE */
.col.title {
    max-width: 350px;
    font-size: 37px;
    font-weight: 500;
    line-height: 1.2;
    font-family: var(--font-v-3);
}

/* LINK */
.col.link {
    max-width: 120px;
    font-size:25px;
    color: #0600FF;
    font-family: var(--font-v-3);
}

/* DESCRIPTION */
.col.desc {
    font-size: 25px;
    color: #333;
    line-height: 1.5;
}

/* IMAGE */
.col.image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* =========================
   GROUP HOVER (OPTIONAL PREMIUM EFFECT)
========================= */
.tab-content:hover .row-item {
    opacity: 0.16;
}

.tab-content .row-item:hover {
    opacity: 1;
}
/* hide all */
.tab-content {
    display: none;
}

/* show active */
.tab-content.active {
    display: block;
}
.standard-vistaka {
    background: #ffffff;
    min-height: 100vh; /* ✅ full screen height */
    display: flex;
    align-items: flex-start; /* vertical center */
}

/* CONTAINER */
.standard-container {
    width: 100%;
    margin: 0 auto;
    padding: 60px;
}
/* HEADER */
.standard-label {
    font-size: 52px;
    font-weight: 100;
    color: #030081;
    margin-bottom: 30px;
    text-align: justify;
    font-family: var(--font-v-3);
}
.standard-vistaka p {
    font-size: 27px;
    font-weight: 100;
    color: var(--black);
    margin-bottom: 30px;
    text-align: justify;
    font-family: var(--font-v-2);
    margin-bottom: 55px;
    margin-top: 25px;
}


.standard-title {
    position: relative;
    display: inline-block;
    font-size: 48px;
    color: #000;
    font-family: var(--font-v-2);
}

.standard-title::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 25px;
    background: #000;
    margin-bottom: 10px; /* space between line and text */
}
/* GRID */
.standard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 🔥 2 columns */
    gap: 30px;
}

/* CARD */
.standard-card {
    display: flex;
    flex-direction: column;
}

/* IMAGE WRAPPER */
.standard-item {
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.standard-item img {
    width: 100%;
    height: auto; /* 🔥 control height */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* CAPTION */
.standard-caption {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* HOVER EFFECT */
.standard-card:hover img {
    transform: scale(1.05);
}
/* =========================
   PIE SECTION WRAPPER
========================= */
.pie-section {
    width: 100%;
    height: 100vh;
      display: flex;
     justify-content: center; /* Horizontal centering */
    align-items: center; 
    background: url('/assets/img/bg/bg-standard.webp') no-repeat center center;
}
.pie-chart{
    position: relative;

    width: 500px;
    height: 500px;
    margin: auto;
}

/* =========================
   SVG
========================= */
.pie-svg {
    width: 500px;
    height: 500px;
    display: block;
}

/* =========================
   SLICES (BLUE DEFAULT)
========================= */
.slice path {
    fill: #030081;
    stroke: #ffffff;
    stroke-width: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* HOVER EFFECT (OPTIONAL NICE TOUCH) */
.slice:hover path {
    opacity: 0.85;
}

/* =========================
   IMAGE LAYER (IMPORTANT)
========================= */
.slice-img {
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none; /* allow hover pass-through */
}

/* =========================
   CENTER CIRCLE
========================= */
.pie-center {
    position: absolute;
    width: 220px;
    height: 220px;
    background: #f5f5f5;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 20px;
}

/* CENTER TEXT */
.pie-center h1 {
    font-size: 48px;
    margin: 0;
    font-weight: 600;
    color: #030081;
}

.pie-center h3 {
    font-size: 16px;
    margin: 5px 0;
    letter-spacing: 2px;
    color: #333;
}

.pie-center p {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}

.desc-bottom-standard{
    margin-top: 50px;
    font-size: 30px;
}


.contact-page-section {
    display: flex;
    width: 100%;
    min-height: 500px;
    padding: 60px;
}

/* =========================
   LEFT (MAP)
========================= */
.contact-page-left {
    width: 50%;
}

.contact-page-left img,
.contact-page-left iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

/* =========================
   RIGHT (CONTENT)
========================= */
.contact-page-right {
    width: 50%;
    padding: 80px 60px;
    background: #f8f7f4;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TEXT */
.contact-page-right-desc {
    font-size: 25px;
    margin-bottom: 30px;
}
.contact-page-item p {
    font-size: 30px;
}

.contact-page-right h2 {
    font-size: 40px;
    margin-bottom: 10px;
    font-family: var(--font-v-2);
}

/* ITEMS */
.contact-page-item {
    margin-bottom: 20px;
}

.contact-page-item h4 {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.contact-page-item p {
    font-size: 16px;
    color: #333;
}

/* BUTTON */
.contact-page-bottom-desc {
    width: 100%;
    padding: 30px 60px;
}

.contact-page-bottom-desc p {
    margin: 0;
    text-align: justify;
    font-size: 28px;
    line-height: 1.5;
    color: #333;
}

/* SECTION */
.contact-page-hero {
    position: relative;
    height: 100vh;
    padding: 80px;
    background: url('/assets/img/bg/bg-bottom-contact.webp') center/cover no-repeat;

    display: flex;
    align-items: center;
}

/* DARK OVERLAY (optional but recommended) */
.contact-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

/* CONTENT */
.contact-page-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* BIG TEXT */
.contact-page-hero-title {
    font-size: 90px;
    line-height: 1.7;
    color: #fff;
    font-weight: 400;
    font-family: var(--font-v-2)
}

/* INPUT STYLE (INLINE LIKE DESIGN) */
.contact-page-hero input,
.contact-page-hero select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 28px;
    padding: 5px 10px;
    margin: 0 10px;
    outline: none;
}

/* PLACEHOLDER */
.contact-page-hero input::placeholder {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
}

/* SELECT */
.contact-page-hero select {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
}

/* BUTTON POSITION */
.contact-page-submit {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/* BUTTON STYLE */
.contact-page-submit button {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 24px 50px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 24px;
}

.contact-page-submit button:hover {
    background: #fff;
    color: #000;
}
.approach-section {
    padding: 80px;
    background: #F8F7F4;
}

/* CARD */
.approach-card {
    display: flex;
    align-items: stretch;
    margin-bottom: 40px;
    border: 1px solid #ddd;
}

/* REVERSE CARD */
.approach-card.reverse {
    flex-direction: row-reverse;
}

/* TEXT SIDE */
.approach-text {
    width: 50%;
    padding: 60px;
    background: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* IMAGE SIDE */
.approach-image {
    width: 50%;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TAG */
.tag {
    color: #030081;
    font-size: 26px;
    margin-bottom: 10px;
    font-family: var(--font-v-4);
}

/* TITLE */
.approach-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-family: var(--font-v-3);
}

/* PARAGRAPH */
.approach-text p {
    font-size: 25px;
    line-height: 1.6;
    color: #333;
    font-family: var(--font-v-1);
}

/* LINK */
.learn-more {
    margin-top: 20px;
    font-size: 26px;
    color: #030081;
    text-decoration: none;
    font-weight: 500;
}
/* TABLET */
@media (max-width: 1024px) {
    .header-left {
    color: white;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    min-width: 150px;
    }
    .logo img {
    height: 45px;
    }   
    .nav-links {
    display: flex;
    list-style: none;
    justify-content: center;
    margin-top: 11px;
    margin-bottom: 10px;
    gap: 20px;
    }
    .nav-links a {
        text-decoration: none;
        font-weight: 350;
        font-size: 9px;
        transition: 0.3s;
    }
    .topbar {
    padding: 2px 20px;
    margin-top: 0;
    font-size: 10px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    /* flex-wrap: wrap; */
    }
    .logo-slider-1{
        max-width: 700px;
        margin-left: 20px;

    }
    .logo-slider-1 p {
    font-size: 40px;
    line-height: 1.2;
    max-width: 600px;
    /* margin: 0 auto 10px auto; */
    text-align: left;
    font-family: var(--font-v-3);
    }
    .hero {
    width: 100%;
    height: auto;
    }
    .hero-content {
    position: relative;
    padding: 110px 10px;
    max-width: 370px;
    margin-left: 40px;
    text-align: left; /* ensure left align */
    }
    .hero-content .title {
    font-size: 24px;
    line-height: 1; /* good proportion for large titles */
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 400;
    }

    .hero-content .subtitle {
    font-size: 8px;
    line-height: 1.5; 
    font-weight: 300;
    max-width: 310px;
    }
    .btn-consult-nav {
    padding: 5px 10px;
    }
    .search-wrapper {
    margin-top: -15px; /* pull up over next section */
    }

    .search-box {
        width: 50%;
        max-width: 600px;
        padding: 5px 20px;
    }

    .search-box input {
        font-size: 8px;
    }
    .search-icon {
        width: 15px;
        height: 15px;
    }
    .services {
    padding: 10px 30px;
    gap: 5%;
    }
    .overlay-img-service{
        padding: 10px;
        width: 100%; 
    }

    .overlay-img-service .desc {
        font-size: 9px;
        margin-bottom: 30px;
        opacity: 1;
    }

    /* TITLE */
    .img-service-wrapper h2 {
        font-size: 8px;
        text-align: center;
        padding: 5px;
    }
    .overlay-img-service h3 {
        font-size: 15px;
        font-weight: 300;
        letter-spacing: 1px;
        font-family: var(--font-v-3);
    }


    /* DEFAULT CARD */
    .service-item {
        width: 28%;
    }

    .service-item.featured {
        width: 36%;
    }

    .service-item img {
        width: 100%;           /* main change */
        height: auto;

    }

    .who-overlay-content h5 {
        font-size: 10px;
        margin: 0;
    }
    .who-overlay-content h1 {
        font-size: 30px;
        margin: 0;
    }
    .who-overlay-content p {
        font-size: 15px;
        margin: 0;
    }

    .who-row h2 {
    font-size: 18px;    
    }

    .who-row span {
        font-size: 6px;
    }
       .who-we-are {
        height: auto;
        /* min-height: 90vh; */

        background-size: 100% auto;
        background-position: center top;
    }

    /* LEFT */

    .who-content {
        margin-top: 200px;
        max-width: 200px;
        gap: 10px;
    }
    .who-overlay-content{
        position: relative;
    }

    .who-overlay-content h5 {
        font-size: 10px;
    }

    .who-overlay-content h1 {
        font-size: 25px; /* 🔥 smaller */
        margin: 5px 0;
    }

    .who-overlay-content p {
        font-size: 10px;
        line-height: 1;
    }

    /* RIGHT */
    .who-row {
        padding: 0 30px;
    }

    .who-row h2 {
        font-size: 20px;
    }

    .who-row span {
        font-size: 14px;
    }

        .who-btn {
            margin-top: 5px;
            padding: 5px 10px;
            font-size: 8px;
            width: auto;
        }
        .expertise-left h5 {
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 15px;
            opacity: 0.7;
        }

        .expertise-left p {
            font-size: 22px;
            line-height: 25px;
            font-weight: 400;
        }

        /* HEADING */
        .expertise-right h4 {
            font-size: 8px;
            margin-bottom: 20px;
        }
        .expertise-container h3 {
            width: 80%;
            font-size: 10px;
            margin-bottom: 20px;
        }
        .radio-pill label span {
            padding: 5px 15px;
            border: 1px solid #fff;
            border-radius: 50px;
            cursor: pointer;
            transition: 0.3s;
            font-weight: 100;
            font-size: 8px;
        }
        .filter-group.radio-pill,
        .filter-categories.radio-pill {
            margin-bottom: 10px;
        }
        .btn-find {
        padding: 5px 20px;
        font-size: 8px;
        border-radius: 20px;
    }
    .filter-tools {
    display: flex;
    gap: 10px;
    }

    .filter-tools select,
    .filter-tools input {
        padding: 5px 10px;
        font-size: 8px;
        border-radius: 20px;
    }
    .expertise-solutions{
        margin-top: 40px;
    }
    .solutions-heading{
        margin-bottom: 20px;
    }
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .solution-overlay{
        padding: 10px;
    }
    .solution-overlay h4 {
        font-size: 12px;     /* increase */
        font-weight: 100;
        max-width: 80%;
    }
    .solution-overlay .arrow{
        width: 30px;
        height: 30px;
    }
    .expertise-cta{
        padding-top: 40px;
    }
    .cta-small {
    font-size: 15px;
    margin-bottom: 10px;
    font-family: var(--font-v-3);
    }

    /* LINK */
    .cta-link {
        font-size: 25px;
        font-family: var(--font-v-3);
        color: #fff;
        text-decoration: underline;

        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    .featured-images{
        margin: 20px 0;
        min-height: 0;
    }
    .featured-label {
        font-size: 50px;
        font-weight: 100;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }
    .hero-footer {
        width: 100%;
        height: auto;
        background-size: 100% auto;
        background-position: center top;
    }
    .hero-footer-content{
       max-width: 500px;
       margin-bottom: 200px;
    }
    .hero-footer-content .title {
        margin-top: 35px;
        font-size: 20px;
    }
    .hero-footer-content .subtitle {
        font-size: 35px;
    }
    .market-label{
        font-size: 8px;
    }
    .market-pill{
        font-size: 8px;
        padding: 4px 8px;
    }
    .status-live{
        font-size: 8px;
    }
    .footer-top {
        padding: 30px 0;
    }
    .footer-bottom{
        padding:0;
    }
    .footer-bottom-container {
       grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-brand h2{
        font-size: 14px;
    }
    .footer-menu ul li a{
        font-size: 8px;
    }
        .contact-section {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-left {
        height: 300px;
    }

    .contact-right {
        padding: 40px 20px;
    }
    .contact-page-section {
        min-height: 300px;
        padding: 30px;
    }
    .contact-page-right{
        padding: 40px 30px;
    }
    .contact-page-right h2 {
        font-size: 25px;
    }
    .contact-page-right-desc{
        font-size: 14px;
    }
    .contact-page-item h4{
        font-size: 13px;
    }
    .contact-page-item p{
        font-size: 9px;
    }
    .contact-page-bottom-desc {
    padding: 20px 30px;
    }

    .contact-page-bottom-desc p {
        font-size: 16px;
    }
    .contact-page-hero{
        height: auto;
        padding: 30px;
    }
    .contact-page-hero-title{
        font-size: 50px;
    }
    .contact-page-submit {
        bottom: 5px;
        right: 5px;
    }
    .contact-page-submit button{
        padding: 12px 25px;
        font-size: 14px;
    }
    .standard-container {
        padding: 30px;
    }
    .standard-label{
        font-size: 25px;
        text-transform: capitalize;
    }
    .standard-vistaka p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .standard-title {
        font-size: 24px;
    }
    .standard-title::before {
        margin-top: 5px;
    }
    .desc-bottom-standard{
        font-size: 16px;
    }
    .btn-book {
        margin-top: 25px;
        font-size: 15px;
        padding: 10px 15px;
    }
    .tabs{
        padding: 0 30px 20px
    }
    .row-item{
        padding: 20px 30px;
    }
    .col.title {
        font-size: 30px;
        max-width: 200px;
    }
    .col.desc {
        font-size: 20px;
    }
    .tag{
        font-size: 16px;
    }
    .approach-text h2 {
    font-size: 22px;
    margin-bottom: 10px;
    }

    /* PARAGRAPH */
    .approach-text p {
        font-size: 12px;
        line-height: 1.6;
    }

    /* LINK */
    .learn-more {
        margin-top: 10px;
        font-size: 16px;
        text-decoration: none;
        font-weight: 500;
    }
}

/* Tablet potrait  */
@media (max-width: 768px) {
      .search-icon {
        width: 20px;
        height: 20px;
    }
    .menu-toggle {
                display: flex;
            }

            .topbar{
                display: none;
            }

            .nav-links {
                display: none; /* Hide by default on mobile */
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .dropdown-content {
                position: static;
                box-shadow: none;
                background-color: #f9f9f9;
                margin-top: 10px;
            }
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .footer-top-container {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        text-align: center;
    }
    .footer-brand h2 {
        font-size: 24px;
    }
        .footer-bottom-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand h2 {
        font-size: 24px;
    }

    .footer-menu ul {
        padding: 0;
    }

    .footer-menu li {
        margin-bottom: 8px;
    }
}


/* Mobile */
@media (max-width: 480px) {
    .search-icon {
        width: 18px;
        height: 18px;
    }
    .services {
        padding: 5px 10px;
        gap: 5%;
    }
    .img-service-wrapper h2 {
        font-size: 5px;
        text-align: center;
        padding: 5px;
    }
    .overlay-img-service {
        padding: 5px;
        width: 100%;
    }
    .overlay-img-service .desc {
        font-size: 5px;
    }
    .overlay-img-service h3 {
        font-size: 8px;
    }
    .who-overlay-content {
        padding: 10px;
    }
    .who-content {
        margin-top: 0;
    }
    .who-overlay-content h5 {
        font-size: 8px;
    }
    .who-overlay-content h1 {
        font-size: 18px;
    }
    .who-row {
        padding: 0 10px;
    }
    .who-row h2 {
        font-size: 10px;
    }
    .who-row span {
        font-size: 8px;
    }
    .logo-slider-1 {
        padding: 10px;
    }
    .logo-slider-1 {
        margin-left: 0;
        margin: auto;
    }
    .logo-slider-1 p {
        font-size: 32px;
        width: 100%;
    }
    .name-quote{
        margin-bottom: 10px;
    }
    .expertise-container {
        width: 100%;
        padding: 10px;
       flex-direction: column; 
       gap: 30px;

    }
      .expertise-left,
    .expertise-right {
        width: 100%;            /* full width each */
    }
    .expertise-left p {
        font-size: 30px;
        line-height: 1;
    }
    .expertise-right h4 {
        font-size: 12px;
    }
    .owl-carousel.version-1, .owl-carousel.version-2{
    padding: 15px 10px 0;
    }

    .solutions-grid {
        display: flex;              /* change grid → flex */
        overflow-x: auto;           /* enable horizontal scroll */
        gap: 16px;

        scroll-snap-type: x mandatory; /* smooth snap */
        padding-bottom: 10px;
    }

    .solutions-grid::-webkit-scrollbar {
        display: none; /* hide scrollbar (optional) */
    }

    .solution-item {
        min-width: 80%;   /* 1 item per view */
        flex: 0 0 auto;   /* prevent shrink */
        
        scroll-snap-align: start; /* snap each card */
        height: 300px;
    }
        .cta-container {
        flex-direction: column;   /* 🔥 change to 1 column */
        text-align: center;       /* center text nicely */
        gap: 20px;
    }

    .cta-avatars {
        justify-content: center;  /* center avatars */
    }
    .cta-small {
        text-align: left;  /*  text */
        font-size: 14px;
    }
    .cta-link {
        text-align: left;  /*  text */
        font-size: 18px;
    }
    .featured-item {
        height: 100px;
    }
    .hero-footer-content {
        margin-bottom: 130px;
    }
    .hero-footer-content .title {
        font-size: 8px;
        margin-top: 20px;
        margin-bottom: 5px;
    }
    .hero-footer-content .subtitle {
    font-size: 14px;
    max-width: 200px;
    }

    .footer-bottom-container{
        text-align: left;
        gap: 20px;
    }
    .footer-brand h2{
        font-size: 38px;
        max-width: 300px;
    }
    .footer-menu ul li a{
        font-size: 14px;
    }
    .navbar {
        justify-content: space-between;
        /* padding: 10px; */
    }
       .menu-toggle {
        display: flex;
        margin-right: 20px; 
    }
    .nav-links {
        margin-top: 0;
    }
    .separator, .desc, .image{
        display: none;
    }
    .insight-section {
        padding: 30px 0;
    }
    .tabs{
        gap : 10px
    }
       .row-item {
        grid-template-columns: 2fr 1fr;
    }

    .title {
        grid-column: 1;
    }

    .link {
        grid-column: 2;
        text-align: left;
    }

    .desc,
    .image {
        display: none;
    }
    .col.title {
        font-size: 20px;
    }
    .col.link {
        font-size: 20px;
    }
    .standard-grid {
        grid-template-columns: 1fr;
    }
    .pie-chart {
        width: 300px;
        height: 300px;
    }
    .pie-svg {
        width: 300px;
        height: 300px;
    }
    .approach-section {
        padding: 20px;
    }
    .approach-text {
        padding: 10px;
    }
    .hero-content {
        margin-left: 20px;
    }
    .contact-page-hero-title {
        font-size: 24px;
        padding: 60px 0;
    }
    .contact-page-submit {
        bottom: -20px;
    }
    .contact-page-hero input{
        font-size: 30px;
    }
    .contact-page-hero select{
        font-size: 18px;
    }
 
}