/* =========================================================
   GOOGLE FONT
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");


/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    margin: 0;
    line-height: 1.5;
}

img {
    max-width: 100%;
}

p {
    text-align: justify;
}

/* Justify reads badly on narrow mobile columns (big uneven gaps) */
/* @media (max-width: 768px) {
    p {
        text-align: left;
    }
} */

button,
input,
textarea,
select {
    font-family: "Poppins", sans-serif;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid #00d4ff;
    outline-offset: 3px;
}


/* =========================================================
   HEADINGS
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-60px);

    transition:
        opacity 0.8s ease-out,
        transform 0.8s ease-out;
}

h1.show-heading,
h2.show-heading,
h3.show-heading,
h4.show-heading,
h5.show-heading,
h6.show-heading {
    opacity: 1;
    transform: translateX(0);
}

/*
   Only use animation class when required.
   This prevents every heading on the website
   from automatically being moved -60px.
*/

.animate-heading {
    opacity: 0;
    transform: translateX(-60px);
    transition:
        opacity 0.8s ease-out,
        transform 0.8s ease-out;

    font-family: "Poppins", sans-serif;

    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.3;

    font-weight: 700;

    letter-spacing: -1.3px;
}

.animate-heading.show-heading {
    opacity: 1;
    transform: translateX(0);

    font-family: "Poppins", sans-serif;

    font-size: clamp(26px, 4.5vw, 40px);
    line-height: 1.3;
    color: #0068ad;
    font-weight: 700;

    letter-spacing: -1.3px;
}

h1 {
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.28;
}

h2 {
    font-size: clamp(26px, 4vw, 40px);
}

h3 {
    font-size: clamp(22px, 3.5vw, 32px);
}

h4 {
    font-size: clamp(20px, 3vw, 28px);
}

h5 {
    font-size: clamp(18px, 2.5vw, 24px);
}

h6 {
    font-size: clamp(16px, 2vw, 20px);
}


/* =========================================================
   HEADER / NAVBAR
   (single definition — transparent + absolute on desktop so
   it floats over the hero video, fixed + solid on mobile so
   it stays usable while the collapsed menu opens)
========================================================= */

#mainHeader {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: transparent;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.4s ease;
}

#mainNavbar {
    background: transparent !important;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

/* Header hover = white (desktop only, see 991px override below) */
#mainHeader:hover,
#mainHeader:hover #mainNavbar {
    background: #fff !important;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#mainHeader .nav-link {
    color: #fff !important;

    transition: color 0.25s ease;
}

#mainHeader:hover .nav-link {
    color: #111 !important;
}

#mainHeader:hover .nav-link:hover {
    color: #62bf35 !important;
}

@media (min-width: 992px) {
    #mainHeader:hover .navbar-brand span {
        color: #111 !important;
    }
}


/* =========================================================
   NAVBAR BRAND / LOGO
========================================================= */

.navbar-brand {
    display: flex;
    align-items: center;

    font-family: "Poppins", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10001;
    text-decoration: none;
}

.navbar-brand span {
    color: #fff !important;
}

.navbar-brand img {
    object-fit: contain;
}

.navbar-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;

    transition:
        width 0.4s ease,
        height 0.4s ease;
}

.brand-name {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;

    transition: color 0.3s ease;
}


/* =========================================================
   NAV LINKS
========================================================= */

#mainNavbar .nav-link,
.navbar .nav-link {
    position: relative;

    color: #fff !important;

    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;

    padding: 12px 14px !important;
    margin: 0 2px;

    background: transparent !important;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

#mainNavbar .nav-link:hover,
.navbar .nav-link:hover {
    color: #72d494 !important;
}

#mainNavbar .nav-link.active,
.navbar .nav-link.active {
    color: #72d494 !important;
}

#mainNavbar .nav-link::after {
    content: "";

    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 5px;

    height: 2px;

    background: #72d494;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}

#mainNavbar .nav-link:hover::after,
#mainNavbar .nav-link.active::after {
    transform: scaleX(1);
}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

#mainNavbar .dropdown-toggle::after {
    margin-left: 7px;
    vertical-align: middle;
    border-top: .1em solid;
}


/* =========================================================
   DROPDOWN MENU
========================================================= */

#mainNavbar .dropdown-menu,
.dropdown-menu {
    min-width: 210px;

    margin-top: 8px;
    padding: 10px;

    border: none;
    border-radius: 10px;

    background: #fff;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);

    animation: dropdownAnimation 0.25s ease;
}

@keyframes dropdownAnimation {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#mainNavbar .dropdown-item,
.dropdown-item {
    padding: 11px 15px;

    border-radius: 7px;

    color: #203a43;

    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        padding-left 0.25s ease;
}

#mainNavbar .dropdown-item:hover,
.dropdown-item:hover {
    color: #fff;

    background: linear-gradient(135deg, #45a96d, #0879bd);

    padding-left: 20px;
}

@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}


/* =========================================================
   SCROLLED NAVBAR
========================================================= */

#mainHeader.scrolled {
    background: linear-gradient(135deg, #003049 0%, #0077b6 100%) !important;

    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.22);

    backdrop-filter: blur(10px);
}

#mainHeader.scrolled #mainNavbar {
    background: linear-gradient(135deg, #003049 0%, #0077b6 100%) !important;

    padding-top: 6px;
    padding-bottom: 6px;
}

#mainHeader.scrolled .navbar-logo {
    width: 55px;
    height: 55px;
}

#mainHeader.scrolled .brand-name {
    color: #fff;
}


/* =========================================================
   MOBILE TOGGLER
========================================================= */

.navbar-toggler {
    position: relative;

    z-index: 10003;

    width: 58px;
    height: 48px;

    padding: 0;

    border: 2px solid #111;
    border-radius: 12px;

    background: rgba(20, 20, 20, 0.9) !important;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;

    outline: none !important;
}

.navbar-toggler:focus {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
}

.navbar-toggler span {
    display: block;

    width: 27px;
    height: 3px;

    margin: 0 !important;

    background: white;

    border-radius: 5px;

    transition:
        transform 0.35s ease,
        opacity 0.25s ease,
        width 0.35s ease;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================================================
   HERO / HOME
========================================================= */

.home {
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    flex-direction: column;

    background-color: #0077b6;

    overflow: hidden;
}

.home::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 1;
}

.video-slide {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

    clip-path: circle(0% at 0 50%);

    opacity: 0;
    visibility: hidden;

    transition:
        clip-path 2s ease,
        opacity 0.3s ease;
}

.video-slide.active {
    clip-path: circle(150% at 0 50%);

    opacity: 1;
    visibility: visible;

    z-index: 1;
}

.hero-content {
    position: absolute;

    top: 70%;
    left: 7%;
    right: 7%;

    transform: translateY(-50%);

    color: #fff;

    z-index: 10;

    max-width: 850px;
}

.animate-title {
    width: 0;

    overflow: hidden;
    white-space: nowrap;

    border-right: 3px solid #fff;

    font-size: clamp(22px, 3.6vw, 34px);

    animation: typing 3s steps(30, end) forwards;
}

.animate-title span {
    display: block;
    color: #00d4ff;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
        border-right-color: transparent;
    }
}

.animate-subtitle {
    font-size: clamp(16px, 2.4vw, 28px);
    font-weight: 300;

    margin-top: 20px;

    letter-spacing: 1px;

    opacity: 0;

    transform: translateY(60px);

    animation: fadeUp 1.2s ease forwards;

    animation-delay: 0.5s;
}

.hero-btn {
    display: inline-block;

    margin-top: 35px;

    padding: 15px 35px;

    border: 2px solid #fff;
    border-radius: 50px;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    opacity: 0;

    transform: translateY(40px);

    animation: fadeUp 1s ease forwards;

    animation-delay: 1s;

    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #00b4d8;
    border-color: #00b4d8;

    color: #fff;

    transform: translateY(0) scale(1.05);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-arrows {
    position: absolute;

    top: 50%;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    transform: translateY(-50%);

    z-index: 999;

    padding: 0 25px;

    pointer-events: none;
}

.slider-arrows button {
    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.25);

    color: #fff;

    font-size: 22px;

    cursor: pointer;

    transition: 0.3s ease;

    pointer-events: auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrows button:hover {
    background: #2696e9;
    transform: scale(1.1);
}

.slider-navigation {
    position: absolute;

    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 888;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    margin: 0;
}

.slider-navigation .nav-btn {
    width: 10px;
    height: 10px;

    padding: 0;
    margin: 0;

    background: whitesmoke;

    border: none;
    border-radius: 50%;

    cursor: pointer;

    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);

    transition: 0.3s ease;
}

.slider-navigation .nav-btn:not(:last-child) {
    margin-right: 20px;
}

.slider-navigation .nav-btn.active {
    background: #2696e9;
    transform: scale(1.2);
}

.slider-navigation .nav-btn:hover {
    transform: scale(1.3);
}


/* =========================================================
   MISSION SECTION
========================================================= */
.mission-section {
    position: relative;

    width: 100%;
    height: 80vh; /* accounts for mobile browser address bar */
    /* min-height: 450px; */

    overflow: hidden;

    background: #203a43;
}

/* Background image panel */
.mission-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 62%;
    height: 100%;

    z-index: 1;

    overflow: hidden;

    background: #eef3eb;
}

.mission-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;
}

/* Curved divider — desktop only, see below */
.mission-curve {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 2;

    pointer-events: none;
}

.mission-curve svg {
    display: block;

    width: 100%;
    height: 100%;
}

/* Text content panel */
.mission-content {
    position: relative;

    z-index: 3;

    width: 62%;
    height: 100%;

    padding: 50px 72px 450px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mission-title {
    margin: 0 0 18px;

    color: #fff;

    font-family: "Poppins", sans-serif;

    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -1.3px;
}

.mission-bottom {
    max-width: 350px;
    margin-bottom: 5px;
}

.mission-arrow {
    width: 30px;
    height: 35px;

    margin-bottom: 20px;

    color: #fff;

    display: flex;
    align-items: center;
}

.mission-arrow span {
    font-family: Arial, sans-serif;

    font-size: 38px;
    font-weight: 300;
    line-height: 1;

    color: #fff;
}

.mission-description {
    margin: 0;

    max-width: 400px;

    color: rgba(255, 255, 255, 0.85);

    font-family: "Poppins", sans-serif;

    font-size: clamp(16px, 1vw, 18px);
    font-weight: 500;

    line-height: 1.6;
}

/* ---------------------------------------------------
   LARGE DESKTOP / ULTRA-WIDE (>= 1600px)
   Cap the section height so it doesn't stretch enormous
   on huge monitors — 100vh on a 4K display is excessive.
--------------------------------------------------- */
@media (min-width: 1600px) {
    .mission-section {
        height: 85vh;
        max-height: 850px;
    }
}

/* ---------------------------------------------------
   LAPTOP / SMALL DESKTOP (max-width: 1200px)
--------------------------------------------------- */
@media (max-width: 1200px) {
    .mission-content {
        padding: 40px 45px 300px;
    }
}

/* ---------------------------------------------------
   TABLET (max-width: 991px)
--------------------------------------------------- */
@media (max-width: 991px) {
    .mission-section {
        height: 80vh;
        height: 80dvh;

        min-height: 600px;
    }

    .mission-image {
        width: 60%;
    }

    .mission-content {
        width: 60%;

        padding: 30px;
    }

    .mission-bottom {
        max-width: 300px;
    }
}

/* ---------------------------------------------------
   MOBILE (max-width: 767px)
   Stack image above text instead of side-by-side —
   62% width columns don't work once .mission-content
   has no room left for its own text.
--------------------------------------------------- */
@media (max-width: 767px) {
    .mission-section {
        height: auto;
        min-height: auto;

        display: flex;
        flex-direction: column;
    }

    .mission-image {
        position: relative;

        width: 100%;
        height: 45vh;

        min-height: 300px;
    }

    .mission-curve {
        display: none; /* the curve is drawn for the side-by-side layout only */
    }

    .mission-content {
        position: relative;

        width: 100%;
        height: auto;

        padding: 28px 24px 34px;
    }

    .mission-bottom {
        max-width: 100%;
    }

    .mission-description {
        max-width: 100%;
        text-align: justify;
    }
}

/* ---------------------------------------------------
   SMALL PHONES (max-width: 480px)
--------------------------------------------------- */
@media (max-width: 480px) {
    .mission-image {
        height: 38vh;

        min-height: 260px;
    }

    .mission-content {
        padding: 24px 18px 30px;
    }

    .mission-arrow {
        margin-bottom: 14px;
    }
}

/* =========================================================
   CHAIRMAN SECTION  (single source of truth — no duplicates)
========================================================= */

.chairman-section {
    width: 100%;
    height: 680px;

    background: #fff;

    overflow: hidden;
}

.chairman-main {
    position: relative;

    width: 100%;
    max-width: 1920px;
    height: 680px;

    margin: 0 auto;

    display: flex;

    overflow: hidden;
}

.chairman-left {
    position: relative;

    width: 40%;
    height: 680px;

    flex-shrink: 0;

    overflow: hidden;
}

/* Legacy background-image variant of the left panel (unused by the
   current HTML, which uses .profile/.person instead) — kept for
   backward compatibility with other pages that may still use it. */
.chairman-left-image {
    position: absolute;

    left: 50px;
    top: 70px;

    width: 650px;
    height: 680px;

    background-image: url("../images/chairman-design.png");

    background-repeat: no-repeat;
    background-position: left top;
    background-size: 1920px 680px;
}

.chairman-content {
    position: relative;

    width: 66%;
    height: 680px;

    padding-left: 30px;
    padding-right: 100px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    z-index: 5;
}

.quote {
    position: absolute;

    left: -1px;
    top: 40px;

    font-family: Georgia, "Times New Roman", serif;

    color: #e8e8e8;

    font-size: clamp(60px, 12vw, 112px);
    font-weight: normal;

    line-height: 0.8;

    height: clamp(48px, 9vw, 78px);

    overflow: hidden;

    z-index: 1;
}

.chairman-content h1 {
    position: relative;

    z-index: 3;

    max-width: 1120px;

    margin: 10px 0 18px;

    color: #0068ad;

    font-family: "Poppins", sans-serif;

    font-size: clamp(22px, 3.2vw, 40px);
    line-height: 1.3;

    text-align: left;

    font-weight: 700;

    letter-spacing: -0.5px;
}

.chairman-content .description {
    position: relative;

    z-index: 3;

    max-width: 1100px;
 text-align: justify;
    margin: 0 0 24px;

    color: #3d3d3d;

    font-family: "Poppins", sans-serif;

    font-size: clamp(14px, 1.6vw, 16px);

    line-height: 1.65;

    font-weight: 400;
}

.chairman-content h2 {
    position: relative;

    z-index: 3;

    margin: 0;

    color: #66be3f;

    font-family: "Poppins", sans-serif;

    font-size: clamp(20px, 2.4vw, 30px);

    line-height: 1.2;

    font-weight: 700;
}

.chairman-content .designation {
    position: relative;

    z-index: 3;

    margin: 3px 0 0;

    color: #333;

    font-family: "Poppins", sans-serif;

    font-size: clamp(13px, 1.4vw, 18px);

    line-height: 1.3;

    font-weight: 400;
}

.right-decoration {
    position: absolute;

    right: 0;
    top: 0;

    width: 180px;
    height: 680px;

    background-image: url("../images/chaiman.png") !important;

    background-repeat: no-repeat;
    background-position: right top;
    background-size: 1920px 680px;

    pointer-events: none;

    z-index: 10;
}

/* ---- Responsive breakpoints for chairman section ---- */

@media (max-width: 991px) {
    .right-decoration {
        width: 130px;
        height: 480px;

        background-size: 1400px 480px;
    }
}

@media (max-width: 768px) {
    .chairman-main {
        flex-direction: column;
        height: auto;
    }

    .chairman-section {
        height: auto;
    }

    .chairman-left {
        width: 100%;
        height: auto;
        overflow: visible;
        padding-top: 24px;
    }

    .chairman-left-image {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 650 / 680;
        margin: 0 auto;
        background-size: contain;
    }

    .chairman-content {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .chairman-content h1,
    .chairman-content .description,
    .chairman-content h2,
    .chairman-content .designation {
        max-width: 100%;
    }

    .right-decoration {
        width: 90px;
        height: 340px;

        background-size: 960px 340px;

        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .quote {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: -10px;
    }

    .right-decoration {
        display: none;
    }

    .chairman-content {
        padding-left: 15px;
        padding-right: 25px;
    }
}


/* =========================================================
   PROFILE IMAGE ANIMATION
========================================================= */

.profile {
    position: relative;

    width: 100%;
    max-width: 400px;

    margin: clamp(16px, 5vw, 50px) auto;

    overflow: hidden;
}

.person {
    position: relative;

    z-index: 2;

    display: block;

    width: 100%;
    height: auto;

    transform: translateY(120px);

    opacity: 0;

    animation: imageComeUp 1.5s cubic-bezier(.22, 1, .36, 1) forwards;

    animation-play-state: paused;
}

.profile.animate .person {
    animation-play-state: running;
}

.curveimg {
    position: absolute;

    z-index: 3;

    left: 0;
    bottom: 0;

    width: 100%;
    height: clamp(180px, 45%, 380px);

    pointer-events: none;
}

@media (max-width: 768px) {
    .profile {
        margin: 24px auto;
    }

    .curveimg {
        height: 40%;
    }
}

@media (max-width: 480px) {
    .profile {
        margin: 16px auto;
    }

    .person {
        transform: translateY(60px);
    }

    .curveimg {
        height: 30%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .person {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@keyframes imageComeUp {
    0% {
        transform: translateY(120px);
        opacity: 0;
    }

    55% {
        transform: translateY(-12px);
        opacity: 1;
    }

    70% {
        transform: translateY(5px);
    }

    82% {
        transform: translateY(-3px);
    }

    92% {
        transform: translateY(1px);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* =========================================================
   GARDEN STATS SECTION  (single source of truth)
========================================================= */

.garden-stats {
    position: relative;

    width: 100%;
    min-height: 270px;
    height: auto;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image: url("https://images.pexels.com/photos/8815826/pexels-photo-8815826.jpeg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    padding: 40px 0;
}

.garden-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(20, 72, 48, 0.66);

    z-index: 1;
}

.garden-stats .container-fluid {
    position: relative;

    z-index: 2;

    width: 100%;

    padding-left: 20px;
    padding-right: 20px;
}

.stat-box {
    color: #fff;
    padding: 20px 10px;
}

.stat-box h2 {
    color: #fff;

    font-size: clamp(32px, 6vw, 82px);
    font-weight: 800;

    line-height: 1;

    margin: 0 0 16px;

    letter-spacing: -1px;

    opacity: 1;
    transform: none;
}

.stat-box p {
    color: #fff;
    text-align: center;

    font-size: clamp(14px, 2.2vw, 30px);
    font-weight: 500;

    line-height: 1.2;

    margin: 0;

    white-space: normal;
}

@media (max-width: 576px) {
    .garden-stats {
        padding: 30px 0;
    }

    .stat-box {
        padding: 10px 4px;
    }

    .stat-box h2 {
        margin-bottom: 8px;
    }
}


/* =========================================================
   NEXT SECTION
========================================================= */

.next-section {
    min-height: 500px;

    padding: clamp(50px, 10vw, 100px) 8%;

    background: #fff;

    text-align: center;
}

.next-section h2 {
    font-size: clamp(28px, 4vw, 48px);

    margin-bottom: 20px;
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
    width: 100%;

    padding: clamp(40px, 6vw, 60px) 5%;
}

.section-title {
    text-align: center;

    margin-bottom: 40px;
}

.section-title h2 {
    position: relative;

    display: inline-block;

    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;

    color: #0068ad;

    margin: 0;
}

.section-title h2::after {
    content: "";

    position: absolute;

    width: 70px;
    height: 4px;

    background: #00a6a6;

    left: 50%;
    bottom: -12px;

    transform: translateX(-50%);

    border-radius: 10px;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.cardm {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto 70px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.cardm .card {
    width: 100%;

    border: none;

    background: transparent;

    overflow: hidden;
}

.card__body {
    position: relative;

    width: 100%;
    height: 330px;

    overflow: hidden;

    border-radius: 18px;

    background: #fff;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card__image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.card__body::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.05));

    z-index: 1;
}

.card__title {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 20px;

    margin: 0;

    color: #fff;

    font-size: 22px;
    font-weight: 600;

    line-height: 1.3;

    z-index: 2;

    transition: transform 0.3s ease;
}

.cardm .card:hover .card__image {
    transform: scale(1.08);
}

.cardm .card:hover .card__title {
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .cardm {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .card__body {
        height: 300px;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .cardm {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 50px;
    }

    .card__body {
        height: 280px;
        border-radius: 14px;
    }

    .card__title {
        font-size: 19px;
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}


/* =========================================================
   TEAM SECTION
========================================================= */

.team-section {
    position: relative;

    padding: 90px 0 !important;

    overflow: hidden;
}

.section-heading {
    text-align: center;
}

.section-heading .small-title {
    display: inline-block;

    color: #0068ad;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 3px;

    margin-bottom: 10px;
}

.section-heading h2 {
    color: #222;

    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;

    margin-bottom: 15px;
}

.section-heading h2 span {
    color: #0068ad;
}

.section-heading p {
    max-width: 600px;

    margin: 0 auto;

    color: #777;

    font-size: 15px;

    line-height: 1.8;
}

.team-card {
    position: relative;

    width: 100%;
    max-width: 100%;

    margin: 10px 0 40px;

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    text-align: center;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;

    width: 100%;
    height: 330px;

    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.social-links {
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translate(-50%, 30px);

    display: flex;

    gap: 8px;

    opacity: 0;
    visibility: hidden;

    transition: all 0.4s ease;
}

.team-card:hover .social-links {
    transform: translate(-50%, 0);

    opacity: 1;
    visibility: visible;
}

.social-links a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    color: #0d6efd;

    border-radius: 50%;

    text-decoration: none;

    font-size: 15px;

    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0d6efd;

    color: #fff;

    transform: translateY(-4px);
}

.team-content {
    padding: 22px 15px 25px;
}

.team-content h4 {
    margin: 0 0 7px;

    color: #222;

    font-size: 20px;
    font-weight: 600;
}

.team-content span {
    color: #777;

    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 991px) {
    .team-section {
        padding: 70px 0 !important;
    }

    .team-image {
        height: 300px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .team-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .team-section {
        padding: 60px 0 !important;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .team-image {
        height: 320px;
    }

    .team-section .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .team-section {
        padding: 50px 15px !important;
    }

    .section-heading {
        margin-bottom: 35px !important;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .team-image {
        height: 350px;
    }

    .team-content h4 {
        font-size: 19px;
    }

    .team-content span {
        font-size: 13px;
    }
}


/* =========================================================
   BUTTONS / LINK ARROW
========================================================= */

.navbar-nav button {
    padding: 18px 14px;

    font-size: 16px;

    border-radius: 9999px;

    font-weight: 600;
}

.btn a {
    text-underline-offset: 1px;
}

.btn a:active,
.btn a:hover {
    outline: 0;
}

.link-arrow {
    border: 1px solid #000;

    border-radius: 100px;

    color: #fff;

    display: inline-block;

    flex: 0 auto;

    font-family: "Poppins", sans-serif;

    font-size: 18px;
    font-weight: 300;

    line-height: 1em;

    min-width: 175px;

    padding: 16px 32px;

    position: relative;

    text-align: left;

    text-decoration: none;
}

.link-arrow::before,
.link-arrow::after {
    content: "→";

    display: block;

    font-family: "Poppins", sans-serif;

    font-size: inherit;

    position: absolute;

    top: 50%;
    right: 32px;

    transform: translate(0%, -50%);

    transition: all 0.5s cubic-bezier(0.25, 0.25, 0.08, 1.08);
}

.link-arrow.font-reg::before,
.link-arrow.font-reg::after {
    font-weight: 300;
}

.link-arrow::before {
    opacity: 0;

    transform: translate(-100%, -50%);
}

.link-arrow:hover::before {
    opacity: 1;

    transform: translate(0, -50%);
}

.link-arrow:hover::after {
    opacity: 0;

    transform: translate(100%, -50%);
}


/* =========================================================
   TABLET / MOBILE NAVBAR (<= 991px)
========================================================= */

@media (max-width: 991px) {

    #mainHeader {
        position: fixed !important;
        background: linear-gradient(135deg, rgba(0, 48, 73, 0.97), rgba(0, 119, 182, 0.95)) !important;
    }

    #mainHeader:hover .nav-link {
        color: #fff !important;
    }

    #mainNavbar {
        padding: 10px 25px;
        background: transparent !important;
    }

    .navbar-logo {
        width: 58px;
        height: 58px;
    }

    .brand-name {
        font-size: 20px;
        color: white;
    }

    .navbar-brand {
        font-size: 2rem;
    }

    .navbar-brand img {
        width: 60px;
        height: 60px;
    }

    /* Mobile navigation panel */

    .navbar-collapse {
        position: fixed;

        top: 0;
        right: 0;

        width: 100%;
        height: 100vh;

        padding: 110px 35px 40px;

        background: linear-gradient(135deg, #003049 0%, #0077b6 100%) !important;

        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.35);

        z-index: 10000;

        overflow-y: auto;

        transform: translateX(100%);

        visibility: hidden;
        opacity: 0;

        transition:
            transform 0.4s ease,
            opacity 0.3s ease,
            visibility 0.4s ease;
    }

    .navbar-collapse.show {
        transform: translateX(0);

        visibility: visible;

        opacity: 1;
    }

    .navbar-collapse::before {
        content: "";

        position: fixed;

        top: 0;
        left: -100vw;

        width: 100vw;
        height: 100vh;

        background: rgba(0, 0, 0, 0.45);

        z-index: -1;
    }

    .navbar-nav {
        width: 100%;
        text-align: left;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 5px;
    }

    .navbar-nav .nav-link,
    #mainNavbar .nav-link {
        display: block;

        width: 100%;

        padding: 14px 5px !important;

        margin: 2px 0;

        color: #fff !important;
        font-size: 18px;
        font-weight: 500;

        border-bottom: 1px solid white;
    }

    #mainNavbar .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link:hover {
        color: #00d4ff !important;

        border-top: none !important;
    }

    .navbar-expand-lg .navbar-nav .nav-link.active {
        border-top: none;
    }

    /* Hide Bootstrap default arrow, use custom one */
    .nav-link.dropdown-toggle::after {
        display: none !important;
    }

    .dropdown-arrow {
        display: inline-block;
        width: 7px;
        height: 7px;
        margin-left: 7px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        position: relative;
        top: -2px;
        transition: transform 0.3s ease;
    }

    .nav-item.dropdown.show .dropdown-arrow {
        transform: rotate(225deg);
        top: 2px;
    }

    .navbar-nav .dropdown-menu {
        position: static !important;

        width: 100%;

        margin: 0;
        padding: 5px 0;

        background: rgba(0, 0, 0, 0.2);

        border: none;
        border-radius: 8px;

        box-shadow: none;
    }

    .navbar-nav .dropdown-item {
        padding: 10px 20px;

        color: #fff;

        background: transparent;
    }

    .navbar-nav .dropdown-item:hover {
        color: #00d4ff;

        background: rgba(255, 255, 255, 0.08);
    }

    /* Hero */

    .hero-content {
        left: 6%;
        right: 6%;

        max-width: none;
    }

    /* Mission */

    .mission-section {
        height: 80vh;

        min-height: 600px;
    }

    .mission-image {
        width: 60%;
    }

    .mission-content {
        width: 60%;

        padding: 25px;
    }

    .mission-bottom {
        max-width: 100%;
    }
}


/* =========================================================
   1600px+
========================================================= */

@media (min-width: 1600px) {
    .garden-stats {
        min-height: 270px;
    }
}


/* =========================================================
   1400px
========================================================= */

@media (max-width: 1400px) {

    .chairman-section,
    .chairman-main,
    .chairman-left,
    .chairman-content {
        height: 540px;
    }

    .chairman-left-image {
        height: 540px;

        background-size: 1525px 540px;
    }

    .right-decoration {
        height: 540px;

        background-size: 1525px 540px;
    }

    .chairman-content {
        padding-left: 20px;
        padding-right: 25px;
    }
}


/* =========================================================
   1200px
========================================================= */

@media (max-width: 1200px) {

    .chairman-section,
    .chairman-main,
    .chairman-left,
    .chairman-content {
        height: 100%;
    }

    .chairman-left {
        width: 100%;
    }

    .chairman-content {
        width: 100%;
    }

    .chairman-left-image {
        width: 550px;
        height: 500px;

        background-size: 1412px 500px;
    }

    .right-decoration {
        height: 500px;

        background-size: 1412px 500px;
    }
}


/* =========================================================
   MOBILE 767px
   (note: chairman/.quote/.right-decoration responsive rules
   live in the CHAIRMAN SECTION block above — not repeated here
   to avoid the duplicate-rule conflicts that were breaking layout)
========================================================= */

@media (max-width: 767px) {

    .navbar {
        position: absolute;

        top: 0;
        left: 0;

        width: 100%;

        padding: 20px 25px;

        z-index: 10000;
    }

    /* Mission */

    .mission-section {
        height: auto;
        min-height: auto;

        display: flex;
        flex-direction: column;

        background: #203a43;
    }

    .mission-content {
        position: relative;

        width: 100%;
        height: auto;

        min-height: 320px;

        padding: 25px 25px 30px;

        background: #203a43;
    }

    .mission-image {
        position: relative;

        width: 100%;
        height: 55vh;

        min-height: 320px;
    }

    .mission-curve {
        display: none;
    }

    /* Hero banner (used on other pages) */

    .hero-banner {
        height: 500px;

        background-position: center top;
    }

    .hero-contentCon {
        padding-top: 65px;
    }

    /* Scroll arrow */

    .scroll-down {
        bottom: 30px;

        transform: translateX(-50%) scale(0.8);
    }

    /* Services */

    .services-section {
        padding: 40px 20px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 27px;
    }
}


/* =========================================================
   SMALL MOBILE 575px
========================================================= */

@media (max-width: 575px) {

    #mainNavbar {
        padding: 8px 15px;
    }

    .navbar {
        padding: 15px 18px;
    }

    .navbar-logo {
        width: 52px;
        height: 52px;
    }

    .brand-name {
        font-size: 18px;
    }

    .navbar-brand {
        font-size: 1.6rem;
    }

    .navbar-brand img {
        width: 50px;
        height: 50px;
    }

    .navbar-toggler {
        width: 52px;
        height: 44px;
    }

    /* Services */

    .services-section {
        padding: 40px 20px;
    }

    /* Hero banner */

    .hero-banner {
        height: 430px;

        background-position: center top;
    }

    .hero-contentCon {
        padding-top: 55px;
    }

    /* Slider */

    .slider-arrows {
        padding: 0 12px;
    }

    .slider-arrows button {
        width: 45px;
        height: 45px;

        font-size: 18px;
    }

    .slider-navigation {
        bottom: 20px;
    }

    /* Mobile hero */

    .hero-content {
        left: 5%;
        right: 5%;
    }

    .animate-title {
        white-space: normal;

        width: auto;

        border-right: none;

        animation: fadeUp 1s ease forwards;
    }

    .animate-title span {
        margin-top: 5px;
    }

    .hero-btn {
        padding: 12px 25px;

        margin-top: 25px;

        font-size: 15px;
    }
}


/* =========================================================
   VERY SMALL MOBILE 480px
========================================================= */

@media (max-width: 480px) {

    /* Mission */

    .mission-content {
        min-height: 280px;

        padding: 22px 20px 28px;
    }

    .mission-image {
        height: 45vh;

        min-height: 260px;
    }
}


/* =========================================================
   CLIENTS & PROJECTS SHOWCASE
========================================================= */

.projects-showcase {
    position: relative;

    padding: 110px 0;

    background: #f7faf9;

    overflow: hidden;
}

.projects-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 75px;

    padding-bottom: 30px;

    border-bottom: 1px solid #dce6e4;
}

.projects-heading span {
    display: block;

    color: #45a96d;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 10px;
}

.projects-heading h2 {
    margin: 0;

    color: #203a43;

    font-size: clamp(36px, 5vw, 58px);

    font-weight: 700;

    line-height: 1.1;
}

.projects-heading p {
    max-width: 450px;

    margin: 0;

    color: #718084;

    font-size: 15px;

    line-height: 1.8;
}

.project-row {
    position: relative;

    display: grid;

    grid-template-columns: 90px 1fr 430px;

    gap: 45px;

    align-items: center;

    padding: 45px 0;

    border-bottom: 1px solid #dce6e4;

    transition: all 0.4s ease;
}

.project-row-reverse {
    grid-template-columns: 90px 430px 1fr;
}

.project-number {
    height: 100%;

    display: flex;

    align-items: flex-start;
    justify-content: center;
}

.project-number span {
    color: #b5c4c1;

    font-size: 42px;

    font-weight: 300;

    line-height: 1;

    transition: all 0.4s ease;
}

.project-row:hover .project-number span {
    color: #45a96d;

    transform: translateY(-5px);
}

.project-info {
    padding: 10px 0;
}

.project-category {
    display: inline-block;

    color: #0879bd;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 13px;
}

.project-info h3 {
    margin: 0 0 15px;

    color: #203a43;

    font-size: clamp(24px, 3vw, 34px);

    font-weight: 700;

    line-height: 1.25;

    transition: color 0.3s ease;
}

.project-row:hover .project-info h3 {
    color: #0879bd;
}

.project-info > p {
    max-width: 600px;

    margin: 0 0 28px;

    color: #718084;

    font-size: 14px;

    line-height: 1.8;
}

.project-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 30px;
}

.project-meta div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.project-meta small {
    color: #9aa9a7;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.project-meta strong {
    color: #203a43;

    font-size: 12px;

    font-weight: 600;
}

.project-image {
    width: 100%;
    height: 280px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #e3ecea;
    border-radius: 8px;

    padding: 20px;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.project-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    transition: transform 0.5s ease;
}

.project-row:hover .project-image {
    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(32, 58, 67, 0.12);
}

.project-row:hover .project-image img {
    transform: scale(1.05);
}

.project-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(135deg, rgba(8, 121, 189, 0.03), rgba(69, 169, 109, 0.04));

    pointer-events: none;
}

@media (max-width: 991px) {

    .projects-showcase {
        padding: 80px 0;
    }

    .projects-heading {
        margin-bottom: 50px;
    }

    .project-row,
    .project-row-reverse {
        grid-template-columns: 70px 1fr 300px;
        gap: 25px;
    }

    .project-image {
        height: 230px;
        padding: 15px;
    }

    .project-number span {
        font-size: 34px;
    }
}

@media (max-width: 767px) {

    .projects-showcase {
        padding: 65px 15px;
    }

    .projects-heading {
        display: block;
        margin-bottom: 35px;
        padding-bottom: 25px;
    }

    .projects-heading h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .projects-heading p {
        font-size: 14px;
    }

    .project-row,
    .project-row-reverse {
        display: grid;

        grid-template-columns: 55px 1fr;

        gap: 15px;

        padding: 35px 0;
    }

    .project-number {
        grid-column: 1;
        grid-row: 1 / span 2;

        justify-content: flex-start;
    }

    .project-number span {
        font-size: 28px;
    }

    .project-info {
        grid-column: 2;
    }

    .project-image {
        grid-column: 2;

        width: 100%;
        height: 220px;

        margin-top: 10px;

        padding: 15px;
    }

    .project-info h3 {
        font-size: 23px;
    }

    .project-meta {
        gap: 18px;
    }
}

@media (max-width: 420px) {

    .project-row,
    .project-row-reverse {
        grid-template-columns: 40px 1fr;
        gap: 12px;
    }

    .project-number span {
        font-size: 23px;
    }

    .project-category {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .project-info h3 {
        font-size: 20px;
    }

    .project-info > p {
        font-size: 13px;
    }

    .project-image {
        height: 190px;
        padding: 12px;
    }
}


/* =========================================================
   SEMINAR POPUP
========================================================= */

.seminar-popup {
    position: absolute;

    top: 50%;
    right: 7%;

    width: 430px;
    max-width: calc(100% - 40px);

    padding: 32px 35px;

    background: rgba(255, 255, 255, 0.97);

    border-radius: 22px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);

    z-index: 50;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-50%) translateX(80px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        visibility 0.6s ease;
}

.seminar-popup.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(-50%) translateX(0);
}

.seminar-close {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 34px;
    height: 34px;

    border: none;
    border-radius: 50%;

    background: #eeeeee;

    color: #333;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: 0.3s ease;
}

.seminar-close:hover {
    background: #0077b6;
    color: #fff;

    transform: rotate(90deg);
}

.seminar-label {
    display: inline-block;

    padding: 6px 14px;

    margin-bottom: 12px;

    border-radius: 30px;

    background: #0077b6;

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.seminar-popup h2 {
    margin: 0;

    color: #003049;

    font-size: 29px;
    font-weight: 700;

    line-height: 1.2;
}

.seminar-topic {
    margin: 8px 0 22px;

    color: #666;

    font-size: 14px;
    font-weight: 500;
}

.seminar-details {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-bottom: 24px;
}

.seminar-detail {
    display: flex;
    align-items: center;

    gap: 13px;
}

.seminar-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #e8f7fc;

    color: #0077b6;

    font-size: 18px;
}

.seminar-detail div:last-child {
    display: flex;
    flex-direction: column;
}

.seminar-detail span {
    color: #888;

    font-size: 11px;

    margin-bottom: 2px;
}

.seminar-detail strong {
    color: #222;

    font-size: 14px;
    font-weight: 600;
}

.seminar-register-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 12px 23px;

    background: #0077b6;

    color: #fff;

    border: 2px solid #0077b6;

    border-radius: 50px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.seminar-register-btn:hover {
    background: #003049;

    border-color: #003049;

    color: #fff;

    transform: translateX(4px);
}

@media (max-width: 991px) {
    .seminar-popup {
        top: auto;
        bottom: 100px;

        right: 50%;

        width: 420px;

        transform: translateX(50%) translateY(60px);
    }

    .seminar-popup.active {
        transform: translateX(50%) translateY(0);
    }
}

@media (max-width: 576px) {
    .seminar-popup {
        width: calc(100% - 30px);

        bottom: 70px;

        padding: 25px 22px;

        border-radius: 18px;
    }

    .seminar-popup h2 {
        font-size: 23px;
    }

    .seminar-topic {
        font-size: 13px;

        margin-bottom: 18px;
    }

    .seminar-detail strong {
        font-size: 12px;
    }

    .seminar-register-btn {
        width: 100%;
    }
}


/* =====================================================
   TEAM BANNER CONTENT (other pages)
===================================================== */

.banner-contentteam {
    text-align: center;
}

.banner-label {
    display: block;

    margin-bottom: 15px;

    color: #55dff5;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.banner-contentteam h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 5vw, 68px);

    line-height: 1.15;

    font-weight: 400;

    letter-spacing: -1px;
}

.banner-contentteam h1 span {
    color: #55dff5;

    font-weight: 700;
}

.banner-contentteam p {
    margin-top: 18px;
    margin-bottom: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;

    letter-spacing: 0.5px;

    font-weight: 300;
}

.arrow-style-3 {
    position: absolute;

    left: 50%;
    bottom: 25px;

    transform: translateX(-50%);

    text-decoration: none;

    z-index: 10;
}

.ripple-arrow {
    position: relative;

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #55dff5;
}

.ripple-arrow span {
    position: absolute;

    width: 42px;
    height: 42px;

    border: 1px solid #55dff5;

    border-radius: 50%;

    animation: rippleEffect 2s infinite;
}

.ripple-arrow::before {
    content: "";

    position: absolute;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(85, 223, 245, 0.5);

    border-radius: 50%;

    animation: rippleEffect 2s infinite;

    animation-delay: 0.7s;
}

.ripple-arrow i {
    position: relative;

    font-size: 22px;

    animation: arrowBounce 1.5s infinite;
}

@keyframes rippleEffect {
    0% {
        transform: scale(0.7);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(6px);
    }
}