@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&family=Anton&family=Archivo+Black&family=Bangers&family=Bayon&family=Bebas+Neue&family=Changa+One:ital@0;1&family=Dangrek&family=Denk+One&family=Flow+Circular&family=Francois+One&family=Great+Vibes&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Koulen&family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Khmer:wght@100..900&family=Oswald:wght@200..700&family=Paytone+One&family=Playwrite+AU+SA:wght@100..400&family=Playwrite+FR+Moderne+Guides&family=Preahvihear&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sriracha&family=Teko:wght@300..700&display=swap');

:root {
    --primary-color: #100e17;
    --primary-color-dark: #0c0b12;
    --white: #ffffff;
    --max-width: 1200px;
    --background-gradient-1: linear-gradient(to right, #cfa12d, #ffb700);
    --background-gradient-2: linear-gradient(to right, #0d1003, #242304);
}

/* Width of the scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    /* for horizontal scrollbar */
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Handle (scroll thumb) */
::-webkit-scrollbar-thumb {
    background-color: rgb(48, 158, 185);
    /* your color */
    border-radius: 10px;
    border: 3px solid #f1f1f1;
    /* optional padding around thumb */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: rgb(81, 173, 196);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.site-wrapper {
  overflow-x: hidden;
  position: relative;
}
[data-aos='fade-left'] {
  transform: translate3d(-100px, 0, 0); /* This is the AOS animation */
}
/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* background color while loading */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#preloader img {
  width: 120px;
  animation: fade 1.5s infinite alternate;
}

/* Simple fade animation */
@keyframes fade {
  from { opacity: 1; }
  to { opacity: 0.4; }
}

.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}

.section__header {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
}

.section__subheader {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.gradient__header {
    background: var(--background-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    padding: 1rem 2rem;
    outline: none;
    border: none;
    font-size: 1rem;
    font-weight: 800;
    font-family: sans-serif;
    color: black;
    background: var(--background-gradient-1);
    border-radius: 5px;
    cursor: pointer;
}

img {
    width: 80%;
    display: flex;
}

a {
    text-decoration: none;
}

#paytone-one-regular {
    font-family: "Paytone One", sans-serif;
    font-weight: 100;
}

.tag-wrapper {
    text-align: center;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    color: rgb(81, 173, 196);
    font-weight: 600;
    background: linear-gradient(to right,
            transparent,
            white 20%,
            white 80%,
            transparent);
    border-radius: 6px;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--white);
}

.line {
    width: 4px;
    margin: auto;
    border-radius: 50px;
    height: 8rem;
    background-color: #35aebe;
}

/* Hamburger menu */
.hamburger-wrapper {
    padding-right: 24px;
    display: flex;
    align-items: center;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    position: relative;
    margin-left: 12px;
}

.hamburger div {
    height: 2px;
    background-color: #ffffff;
    /* default white */
    border-radius: 1px;
    transition: background-color 0.3s ease;
}

/* Button styling */
#sec-cta {
    background-color: #ffffff;
    padding: 12px 24px;
    color: black;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sec-cta i {
    margin-right: 8px;
}
/* Button styling */
#sec-cta1 {
    background:transparent;
    padding: 12px 24px;
    color: rgb(255, 255, 255);
    border-radius: 60px;
    border: 1px solid white;
    display: flex;
    align-items: center;
    /* vertically center text */
    justify-content: center;
    /* horizontally center text */
}
.cta{
    display: flex;
    gap: 24px;
}
#sec-cta1:hover{
    opacity: 50%;
}
#sec-cta:hover{
    opacity: 50%;
}
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    transition: background-color 0.3s ease;
    background-color: transparent;
}

/* When navbar is scrolled */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(33, 158, 188, 1);
}

/* Change button and hamburger color when scrolled */
.navbar.scrolled #sec-cta {
    background-color:#35aebe;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar.scrolled .hamburger div {
    background-color:#35aebe;
}

/* Change mobile nav menu background when scrolled */
.navbar.scrolled .nav-menu {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
}

/* Change menu link colors when scrolled */
.navbar.scrolled .nav-menu a {
    color: #35aebe;
}

/* Navbar container */
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* vertically align items */
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 12px 24px;
}

/* Mobile container adjustments */
@media (max-width: 500px) {
    .navbar-container {
        max-width: 100%;
        padding: 0;
    }

    .nav-menu {
        box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
    }
}

/* Nav menu */
.nav-menu {
    position: absolute;
    top: 250%;
    right: 0;
    border-radius: 6px;
    padding: 12px;
    flex-direction: column;
    gap: 8px;
    min-width: 300px;
    margin-right: 18px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    display: flex;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    border-radius: 4px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    transition: all 0.1s ease-in;
}

.nav-menu a:hover {
    background-color: rgba(0, 0, 0, 0.05);

}

.nav-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Desktop menu */
@media (min-width: 768px) {
    .nav-menu {
        position: static;
        top: auto;
        right: auto;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        flex-direction: row;
        gap: 24px;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        align-items: center;
        /* vertically align desktop items */
    }

    .nav-menu a {
        padding: 0;
        color: #ffffff;
        /* default white */
    }

    .nav-menu a:hover {
        background: none;
        opacity: 50%;
    }

    .hamburger {
        display: none;
    }
}


.header {
    position: relative;
    background: linear-gradient(rgba(33, 158, 188, 0.5), rgba(33, 158, 188, 0.5)),
        url("assets/cyan.jpg") center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* prevents image from overflowing */
}

/* Text container */
.header__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    color: white;
}

/* Right image anchored bottom-right */
.header__image {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 40%;
    /* controls image size */
}

.header__image img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

.logo-teal {
    width: 84px;
}

/* MOBILE: force image to sit below the text and display:block */
@media (max-width: 1200px) {
    .header {
        height: auto !important;
        display: block !important;
        /* remove any flex/grid layout behavior */
        overflow: visible !important;
        text-align: center;
        margin-top: -54px;
    }

    .logo {
        padding: 12px;
    }

    /* Reset absolute positioning so image flows below the text */
    .header__image {
        position: static !important;
        right: auto !important;
        bottom: auto !important;
        top: auto !important;
        transform: none !important;
        display: block !important;
        width: 100% !important;
        /* full-width on mobile */
        max-width: 480px !important;
        /* limit so it doesn't get huge */
        margin: 1.5rem auto 0 !important;
    }

    .header__image img {
        margin-top: -64px;
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }
}



header * {
    position: relative;
    z-index: 1;
    /* keep text above overlay */
}

.header__container {
    padding-top: 4rem;
    text-align: left;
}

.header__container h1 {
    max-width: 700px;
    font-size: clamp(24px, 8.5vw, 64px);
    line-height: 1.2;
    color: white;
    margin-top: 120px;
    margin-bottom: 2rem;
}


.header__container p {
    max-width: 600px;
    margin-bottom: 4rem;
    font-size: clamp(14px, 1vw, 12px);
    line-height: 1.5;
    /* unitless also scales with font size */
}

.content-wrapper {
    background-color: #35aebe;
    /* dark blue */
    color: white;
    padding: 60px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
}

.content-wrapper h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content-wrapper p {
    font-size: 18px;
    margin-bottom: 40px;
}

.features {
    display: flex;
    flex-wrap: nowrap;
    /* keep boxes in a single row */
    gap: 20px;
    justify-content: space-between;
    /* evenly space boxes */
}

.feature {
    background-color: white;
    color: black;
    flex: 1;
    /* boxes take equal width */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.feature p {
    font-size: 16px;
}

@media (max-width: 992px) {
    .features {
        flex-wrap: wrap;
        /* wrap boxes on smaller screens */
    }

    .feature {
        flex: 1 1 45%;
        /* two per row */
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .feature {
        flex: 1 1 100%;
        /* full width on mobile */
    }
}


#about_us {
    background-color: rgb(81, 173, 196);
}

#about_us_img {
    border: 2px solid rgb(255, 255, 255);
    width: 100%;
    border-radius: 14px;
}

/* Header must remain relative for floating form */
.header {
    position: relative;
}

/* Floating contact form */
.contact-floating {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
}

.contact-form {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid rgb(81, 173, 196);
}

.header {
    /* lower than form */
    overflow: visible;
    /* allow form to overflow */
}

/* Heading */
.contact-form h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: rgb(81, 173, 196);
    text-align: center;
}

/* Row for all inputs and button */
.contact-form .form-row {
    display: flex;
    gap: 10px;
    width: 100%;
}

/* Inputs */
.contact-form input {
    flex: 1;
    /* all inputs take equal width */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Button */
.contact-form button {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    background-color: rgb(81, 173, 196);
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #060f3a;
}

/* Responsive: stack all inputs on smaller screens */
@media (max-width: 1200px) {
    .contact-floating {
        position: relative;
        /* stop floating on mobile */
        bottom: 0;
        /* reset bottom */
        left: 0;
        transform: none;
        width: 100%;
        padding: 0px 6px 0px;
        padding-top: 0;
        max-width: none;
    }

    .contact-form {
        border-bottom: none;
        border-top-left-radius: 14px;
        border-top-right-radius: 14px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .contact-form .form-row {
        flex-direction: column;
        /* stack inputs vertically */
        gap: 12px;
    }
}


#about_us_h2 {
    font-weight: bold;
    color: white;
    font-size: clamp(34px, 2vw, 18px);
}

.rewards {
    background-color: #ffffff;
    /* Background image */
    background-image: url('assets/banner.png');
    background-size: cover;
    /* makes it cover the entire container */
    background-position: center;
    /* center the image */
    background-repeat: no-repeat;
}

.map {
    /* Background image */
    background-image: url('assets/ye1.jpg');
    color: #000;
    background-size: cover;
    /* makes it cover the entire container */
    background-position: center;
    /* center the image */
    background-repeat: no-repeat;
    /* prevent tiling */
    padding: 2rem;
}

.our-process {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 6rem;
}

.our-process-left {
    flex: 1 1 50%;
}

.our-process-left img {
    width: 100%;
    aspect-ratio: 5 / 5;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid rgb(81, 173, 196);
    ;
}

.our-process-right {
    flex: 1 1 50%;
}

.our-process-right h2 {
    color: rgb(81, 173, 196);
    font-size: clamp(26px, 4vw, 34px);
    margin-bottom: 1rem;
}

.our-process-right>p {
    color: rgb(64, 64, 64);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    /* icon aligns with top of the whole text block */
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.process-step i {
    font-size: 2rem;
    color: rgb(81, 173, 196);
    flex-shrink: 0;
    margin-top: 10px;
    border: 2px solid rgb(81, 173, 196);
    padding: 16px 12px 16px;
    border-radius: 8px;
}

.process-text {
    display: flex;
    flex-direction: column;
}

.process-text h3 {
    margin: 0 0 0.3rem 0;
    font-size: 1.2rem;
    color: rgb(81, 173, 196);
}

.process-text p {
    margin: 0;
    line-height: 1.5;
    color: rgb(64, 64, 64);
}

/* Responsive */
@media (max-width: 768px) {
    .our-process {
        flex-direction: column;
        margin-top: 0rem;
    }

    .our-process-left,
    .our-process-right {
        flex: 1 1 100%;
    }
}


.rewards__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;

}


.rewards__container :is(.section__header, .section__subheader) {
    text-align: left;
    max-width: 100%;
}

.rewards__container .section__header sup {
    font-size: 1rem;
    font-weight: 500;
}

.rewards__grid {
    padding: 2px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--background-gradient-2);
}

.rewards__card {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--primary-color);
}

.rewards__card img {
    max-width: 40px;
}

.rewards__card:hover {
    background: var(--background-gradient-2);
}

.rewards__details p {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 500;
}

.rewards__details h4 {
    font-size: 2rem;
    font-weight: 500;
}

.holders1 {
    background-image: url('assets/aqua_sec.jpg');
    background-size: cover;
    /* makes it cover the entire container */
    background-position: center;
    /* center the image */
    background-repeat: no-repeat;
    /* prevent tiling */
    padding: 2rem;
    color: black;
}

.holders {
    background-color: black;
}

.transform h2 {
    color: white;
}

.transform {
    background-color: #35aebe;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding-top: 4rem;
}

.transform img {
    width: 100%;
    aspect-ratio: 5 / 7;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid white;
}

/* Responsive: on smaller screens, scale down background */
@media (max-width: 768px) {
    .transform {
        /* scales down image to fit container */
        background-position: bottom center;
        /* keep at bottom */
        padding: 1rem;
    }
}
@media (max-width: 480px) {
    .transform {
        background-size: contain;
        background-position: bottom center;
        padding: 0.5rem;
    }
}

.areas-we-serve {
    text-align: left;
}

.areas-we-serve h2 {
    color: rgb(81, 173, 196);
    font-size: clamp(18px, 8vw, 54px);
    margin-bottom: 1rem;
}

.areas-we-serve p {
    color: rgb(64, 64, 64);
    max-width: 700px;
    margin-bottom: 1.5rem;
    font-size: clamp(14px, 3vw, 16px);
}

/* Areas tags */
.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.areas-tags span {
    display: flex;
    align-items: center;
    background-color: rgb(81, 173, 196);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: clamp(14px, 2vw, 16px);
}

.areas-tags i {
    margin-right: 6px;
    font-size: 1em;
    /* smaller dot */
    color: #fff;
}

/* Map styling */
.map-container iframe {
    width: 100%;
    height: 500px;
    border: 3px solid rgb(81, 173, 196);
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }

    .areas-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem 0.4rem;
        margin-bottom: 2rem;
    }

    .areas-we-serve {
        margin-top: -4rem;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 250px;
    }
}

.holders__grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--background-gradient-2);
}

.holders__card {
    padding: 2rem;
    text-align: center;
    background-color: var(--primary-color-dark);
}

.holders__card span {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 100%;
}

.holders__card span img {
    max-width: 50px;
}

.holders__card h4 {
    font-size: 1.5rem;
    font-weight: 400;
}

.holders__content {
    max-width: 700px;
    margin: auto;
    margin-top: 2rem;
    padding: 2rem;
    text-align: center;
    background: var(--background-gradient-2);
    border-radius: 10px;
}

.work {
    /* Background image */
    background-image: url('assets/download.jpg');
    background-size: cover;
    /* makes it cover the entire container */
    background-position: center;
    /* center the image */
    background-repeat: no-repeat;
    /* prevent tiling */
    padding: 2rem;
}

.work__subheader {
    font-size: 1.2rem;
    text-align: center;
}

.work__subheader span {
    margin: 2rem;
}

.work__grid {
    margin-top: 4rem;
    padding-bottom: 2px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--background-gradient-2);
}

.work__card {
    padding: 2rem;
    text-align: center;
    background-color: black;
}

.work__card span {
    display: inline-block;
    margin-bottom: 1rem;
}

.work__card span img {
    max-width: 50px;
}

.work__card h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.work__card p {
    font-size: 0.9rem;
}

.comment-card {
    padding: 1.5rem 2rem;
    border: 2px solid rgb(81, 173, 196);
    border-radius: 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-card img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-info h3 {
    margin: 0;
    font-size: 1.3rem;
    color: rgb(81, 173, 196);
}

.profile-info span {
    font-size: 1rem;
    color: #333;
}

.comment-text {
    margin: 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    padding-left: 0;
    /* full width under profile */
}

.services-text h2 {
    color: rgb(81, 173, 196);
    font-size: clamp(1.8rem, 2.5vw, 3rem);
    margin-bottom: 1rem;
    line-height: 34px;
}

.services-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 3rem;
    /* increased gap from heading to grid */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem 2rem;
    /* row-gap 3rem, column-gap 2rem */
    align-items: stretch;
}

.service-item {
    background: #ffffff;
    padding: 4rem 2rem 2rem;
    /* extra top padding for icon spacing */
    border-radius: 10px;
    border: 2px solid rgb(81, 173, 196);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#service-p {
    max-width: 750px
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgb(81, 173, 196);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgb(81, 173, 196);
    position: absolute;
    top: -30px;
    /* half overlap outside the box */
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
}

.service-item h3 {
    margin-bottom: 1rem;
    /* increased spacing below heading */
    font-size: 1.4rem;
    color: rgb(81, 173, 196);
}

.service-item p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #service-p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;

        gap: 4rem;
    }
}


/* Why Choose Us Section */
.why-choose-us {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.why-choose-left,
.why-choose-right {
    flex: 1 1 45%;
    min-width: 300px;
}

.why-choose-left h2 {
    color: rgb(81, 173, 196);
    font-size: clamp(1.6rem, 2vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-choose-left p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.why-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.why-item {
    background: #fff;
    text-align: left;
    border-radius: 10px;
}

.why-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: rgb(81, 173, 196);
}

.why-item p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
}

.why-choose-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    float: right;
    border: 2px solid rgb(48, 158, 185);
}

/* Responsive */
@media (max-width: 992px) {
    .why-items-grid {
        grid-template-columns: 1fr;
        /* stack items for smaller tablets */
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        flex-direction: column;
        /* stack left and right sections */
    }

    .why-choose-left,
    .why-choose-right {
        flex: 1 1 100%;
    }

    .why-choose-right {
        order: -1;
        /* move image above text */
        text-align: center;
        /* center the image */
        margin-bottom: 2rem;
        /* space below image */
    }

    .why-choose-right img {
        float: none;
        /* remove float */
        display: block;
        /* center image */
        margin: 0 auto;
        width: 100%;
        /* responsive width */
        height: auto;
    }

    .why-items-grid {
        grid-template-columns: 1fr;
        /* single column for each why-item */
    }

    .why-item {
        padding: 1rem;
        border-radius: 10px;
        border: 2px solid rgb(81, 173, 196);
    }
}

.mission {
    /* Dark overlay + background image */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)),
        url('assets/pexels-curtis-adams-1694007-8583638.jpg');
    background-size: cover;
    /* cover the entire container */
    background-position: center;
    /* center the image */
    background-repeat: no-repeat;
    /* prevent tiling */
    color: #fff;
    /* optional: makes text readable */
}


.mission__grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.mission__list {
    display: grid;
    gap: 2px;
    background: var(--background-gradient-2);
}

.mission__list h4 {
    font-size: 1.2rem;
    font-weight: 500;
    background-color: var(--primary-color);
}

.mission__list h4:hover {
    background: var(--background-gradient-2);
}

.mission__content {
    align-items: center;
    gap: 4rem;
    color: white;
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.mission__content img {
    max-width: 150px;
}

/* Footer base styles */
.footer {
    position: relative;
    background: #35aebe;
    isolation: isolate;
    padding: 3rem 1rem;
    color: #fff;
}

.footer::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr) 2fr;
    gap: 2rem;
}

.footer__col h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer__col p {
    margin-bottom: 2rem;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__socials span {
    padding: 6px 11px;
    font-size: 1.25rem;
    background: var(--background-gradient-2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.footer__socials span:hover {
    background: var(--background-gradient-1);
}

.footer__col h4 {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.footer__col a {
    display: block;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer__col form {
    padding: 5px;
    width: 100%;
    max-width: 350px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.footer__col input {
    width: 100%;
    padding: 0 1rem;
    outline: none;
    border: none;
    font-size: 1rem;
    background-color: transparent;
}

.footer__col input::placeholder {
    color: var(--white);
}

.footer__col .submit__btn {
    padding: 10px 12px;
    font-size: 1.5rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr;
        /* stack all columns vertically */
        gap: 1.5rem;
    }

    .footer__socials {
        justify-content: center;
        /* center icons on mobile */
    }
}

.page-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    /* pushes footer to bottom if page is short */
}

@media (width < 900px) {
    .header__banner__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header__banner__grid .col:nth-child(3) {
        grid-area: 2/1/2/3;
    }

    .rewards__container {
        grid-template-columns: repeat(1, 1fr);
    }

    .question__box.active .content {
        height: 175px;
    }
}

@media (width < 750px) {
    .holders__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .work__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .mission__grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (width < 600px) {
    .header__banner__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .header__banner__grid .col:nth-child(3) {
        grid-area: unset;
    }

    .mission__content {
        gap: 2rem;
    }

    .question__box.active .content {
        height: 250px;
    }
}



/* Carousel base styles */
.carousel-wrapper-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-wrapper {

    display: flex;
    transition: transform 0.5s ease;
}

.card {
    flex: 0 0 calc(33.333% - 20px);
    margin-right: 20px;
    background: #ffffff;
    color: #000000;
    padding: 20px;
    border-radius: 28px;
    text-align: left;
    position: relative;
    border: 1.5px solid rgb(118, 201, 210);
}

.card:last-child {
    margin-right: 0;
}

.carousel-button {
    background-color: rgb(67, 169, 194);
    color: #fff;
    border: none;
    padding: 2px 6px 2px;
    cursor: pointer;
    font-size: 18px;
    font-family: monospace;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Google logo in top-right */
.google-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: auto;
}

/* Review card content */
.review-profile {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 15px;
}

.review-heading {
    font-size: clamp(18px, 6vw, 46px);
    max-width: 720px;
    text-align: center;
    display: block;
    line-height: 3.5rem;
    text-transform: uppercase;
    margin: 120px auto 0 auto;
    /* top 40px, bottom 0, horizontally centered */
}

.holders1 h2 {
    color: rgb(81, 173, 196);
}

#review-p {
    font-size: clamp(14px, 2vw, 16px);
    color: #5c5c5c;
    max-width: 580px;
}

/* Optional: adjust top margin for smaller screens */
@media (max-width: 768px) {
    .review-heading {
        margin-top: -60px;
        line-height: 2.4rem;
        /* smaller top margin on mobile */
    }
}

.review-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.review-name {
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified {
    color: #1a73e8;
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    color: #000000;
    margin-top: 5px;
}

/* Stars */
.review-stars {
    color: #ffc400;
    margin-top: 5px;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .card {
        flex: 0 0 45%;
        /* 2 cards per slide */
        margin-right: 10px;
    }

    .card:last-child {
        margin-right: 0;
    }
}

@media (max-width: 700px) {
    .carousel-container {
        overflow-x: auto;
        /* enable horizontal swipe */
        scroll-snap-type: x mandatory;
        /* snap to each card */
        -webkit-overflow-scrolling: touch;
        /* smooth scroll on iOS */
    }

    .carousel-wrapper {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        /* gap between cards */
    }

    .card {
        flex: 0 0 100%;
        /* show 1 card per view */
        scroll-snap-align: start;
        /* snap to start of each card */
        margin-right: 0;
    }

    .carousel-button {
        display: none;
        /* hide buttons on mobile */
    }
}

.ticker1 {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    border: 2px solid rgb(82, 141, 147);
    background: linear-gradient(322deg, rgb(205, 255, 255) 0%, rgb(255, 255, 255) 51%, rgb(205, 251, 247) 100%);
    padding: 12px 0;
    box-sizing: border-box;
}

.ticker-track1 {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
}

.ticker-item1 {
    flex: none;
    margin-right: 40px;
    font-size: 18px;
    font-weight: bold;
    color: #3f3f3f;
    white-space: nowrap;

    display: flex;
    /* make the span a flex container */
    align-items: center;
    /* center children vertically */
}

/* Mobile-first: show ticker only on mobile */
.ticker1 {
    display: flex;
}





.ticker {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    border: 2px solid rgb(82, 141, 147);
    background: linear-gradient(322deg, rgb(205, 255, 255) 0%, rgb(255, 255, 255) 51%, rgb(205, 251, 247) 100%);
    padding: 12px 0;
    box-sizing: border-box;
}

.ticker-track {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
}

.ticker-item {
    flex: none;
    margin-right: 40px;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    white-space: nowrap;

    display: flex;
    /* make the span a flex container */
    align-items: center;
    /* center children vertically */
}

/* Mobile-first: show ticker only on mobile */
.ticker {
    display: flex;
}

@media (min-width: 1200px) {
    .ticker {
        display: none;
    }
}


.reviews-container {
    display: flex;
}

.review-card {
    margin-top: -24px;
    padding: 12px;
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    color: black;
    gap: 12px;
    width: 240px;
    box-sizing: border-box;
}

#rc-1 {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

#rc-2 {
    margin-left: -34px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.review-card .img img {
    width: 50px;
    border-radius: 50%;
}

.review-card .txt {
    font-size: 15px;
}

.review-card .star {
    display: flex;
    gap: 5px;
    align-items: center;
}

.review-card .star span {
    color: rgb(255, 174, 0);
    font-size: 12px;
    display: flex;
    gap: 4px;
    margin-top: -2px;
}

/* Responsive: smaller screens */
@media (max-width: 800px) {

    .reviews-container {
        justify-content: center;
    }

    .review-card {
        width: 100%;
    }

    .review-card .img img {
        width: 40px;
    }

    .review-card #web {
        font-size: 10px;
    }

    .review-card .star span {
        font-size: 10px;
        margin-top: -2px;
    }

}

/* Only affects mobile screens */
@media (max-width: 500px) {
    .cta {
        flex-direction: column;
        gap: 12px;
    }

    .cta a {
        width: 100%;
        justify-content: center;
    }
}

.highlight {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    color: #fff;
    font-size: 18px;
}

.highlight::before,
.highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #fff, transparent);
}

.highlight::before {
    top: 0;
}

.highlight::after {
    bottom: 0;
}

/* Mobile adjustments */
@media (max-width: 500px) {
    .highlight {
        justify-content: center;
        width: 100%;
        font-size: 12px;
    }

    .mobile-center-text {
        padding-left: 0;
    }
}

/* Optional: stack map and text nicely on smaller screens */
@media (max-width: 768px) {
    .rewards__container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

.faq h2 {
    color: rgb(81, 173, 196);
    font-size: clamp(2.5rem, 6vw, 5rem);
    /* Responsive font size: min 2.5rem, max 5rem */
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
    /* Adjust for better spacing */
}

.faq-item {
    border: 2px solid rgb(81, 173, 196);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.4rem 1.6rem;
    text-align: left;
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 600;
    color: rgb(81, 173, 196);
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    margin: 1rem 0;
    color: rgb(53, 53, 53);
    line-height: 1.5;

}

/* FAQ toggle on click */
.faq-question.active+.faq-answer {
    max-height: 500px;
    /* large enough to show content */
}