
:root {
    --font-manrope: 'Manrope', sans-serif;
    --font-outfit: 'Outfit', sans-serif;
    --font-orbitron: 'Orbitron', sans-serif;

    --color-teal: #00B3A4;
}

/* Universal Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth Fonts */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Body Defaults */
body {
    font-family: var(--font-manrope);
    font-size: 16px;
    line-height: 1.5;
    color: #222;
    background: #fff;
}

/* Headings Reset */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: normal;
}

/* Remove List Style */
ul,
ol {
    list-style: none;
}

/* Anchor Reset */
a {
    text-decoration: none;
    color: inherit;
}

/* Image Reset */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Button Reset */
button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
}

/* Form Elements */
input,
textarea,
select,
button {
    font: inherit;
    box-sizing: border-box;
}

/* SVG Reset */
svg {
    display: block;
    max-width: 100%;
}



/* ==========================
    Header Section
========================== */

/* The Main Header */

/* HEADER WRAPPER */
.header-section {
    position: absolute;
    /* stay on top of hero/page-header */
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /* header height */
    padding: 0 30px;
    display: flex;
    align-items: center;
    z-index: 9999;
    background: transparent;
    /* your requirement */
    border-bottom: 1px solid #FFFFFF26;
}

/* INNER CONTAINER */
.header-container {
    width: 100%;
    max-width: 1500px;
    /* your layout width */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    background: transparent;

}

/* Header Logo Block */

.se-company-box {
    display: flex;
    align-items: center;
    gap: 12px;
    /* space between image & text */
    text-decoration: none;
    color: inherit;
    /* keeps H2 color same */
}

.se-company-box img {
    width: 48px;
    /* adjust as needed */
    height: auto;
    display: block;
}

.se-company-box h2 {
    font-family: var(--font-outfit);
    font-size: 33px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.9px;
    color: #ffffff;
}

/* Header Menu Block */

/* Base Navigation */
.header-navigation {
    background: transparent;
    /* as your header is transparent */
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu>li>a {
    font-family: var(--font-manrope);
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Down Arrow */
.down-icon {
    font-size: 10px;
    transition: 0.3s;
}

/* Submenu */
.submenu {
    list-style: none;
    position: absolute;
    top: 45px;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    padding: 0;
    border-radius: 0;
    /* box-shadow: 0px 10px 20px rgba(0,0,0,0.12); */
    display: none;
    z-index: 999;
}

.submenu li a {
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    display: block;
    white-space: nowrap;
    border-bottom: 1px solid #f2f2f2;
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background: #f1f1f1;
}

/* Hover to open dropdown */
.has-submenu:hover .submenu {
    display: block;
}

/* Rotate down arrow when hovering */
.has-submenu:hover .down-icon {
    transform: rotate(180deg);
}

/* Responsive (Optional: convert to block on mobile) */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
}


/* Header Phone Number */

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-phone .phone-icon svg {
    width: 35px;
    /* icon width */
    height: 35px;
    /* icon height */
    display: block;
    stroke: rgba(255, 255, 255, 0.7);
    /* or your header text color */
}

.header-phone .phone-number {
    font-family: var(--font-manrope);
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    /* adjust as needed */
}

.responsive-menu-block {
    display: none;
}


/* -------------------------
HAMBURGER BUTTON
-------------------------- */
.se-mob-hamburger-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 2000;
}

.se-mob-hamburger-btn svg {
    width: 32px;
    /* SIZE */
    height: 32px;
    stroke: #ffffff;
    /* COLOR */
    stroke-width: 1.8;
    /* LINE THICKNESS */
    display: block;
}

/* -------------------------
OVERLAY
-------------------------- */
.se-mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1500;
}

.se-mob-overlay.se-mob-active {
    display: block;
}

/* -------------------------
SLIDE MENU PANEL
-------------------------- */
.se-mob-menu {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100dvh;
    min-height: 100dvh;
    background: #f6f6f6;
    overflow-y: auto;
    padding: 10px 0 100px 0;
    box-sizing: border-box;
    transition: left 0.3s ease;
    z-index: 2001;

}

/* For screens below 450px → Menu full width */
@media (max-width: 450px) {
    .se-mob-menu {
        width: 320px;
        /* keep constant */
        left: -320px;
        /* hide fully */
        height: 100vh;
        /* force full height */
    }
}

.se-mob-menu.se-mob-active {
    left: 0;
}

/* -------------------------
CLOSE BUTTON
-------------------------- */
.se-mob-menu-top {
    display: flex;
    justify-content: flex-end;
    padding-right: 25px;
}

.se-mob-close-btn {
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: 555;
}

/* -------------------------
NAVIGATION LIST
-------------------------- */
.se-mob-nav-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 20px 0;
}

.se-mob-nav-list li {
    margin-bottom: 20px;
}

.se-mob-nav-list a {
    text-decoration: none;
    font-family: var(--font-outfit);
    font-weight: 300;
    line-height: 1.5;
    color: #666;
    font-size: 20px;
    padding: 0 25px;
    display: block;

}

/* -------------------------
SUBMENU
-------------------------- */
.se-mob-submenu {
    display: none;
    padding: 5px 0;
    margin-top: 8px;
    background-color: #f9f9f9;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.se-mob-down-icon {
    font-size: 14px;
    margin-left: 5px;
}


.se-mob-submenu li {
    /* list-style: none;
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px; */
    padding: 15px 0;
    margin: 0;
    border-bottom: 1px solid #e5e5e5;
}

.se-mob-submenu li:last-child {
    border-bottom: none;
}

/*
.se-mob-submenu li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;               
    width: 5px;
    height: 5px;
    background: #15b04a;   
    border-radius: 2px;     
} */

.se-mob-submenu li a {
    font-size: 18px;
    /* your desired font size */
    font-family: var(--font-outfit);
    font-weight: 300;
    color: #666;
    padding: 0 25px;
    /* spacing between items */
    display: block;
}

/* SVG ICON SIZE */

.se-mob-down-svg {
    width: 16px;
    /* change size here */
    height: 16px;
    stroke: #777;
    /* icon color */
    display: inline-block;
    transition: 0.3s;
    margin-left: 6px;
    /* spacing between text & icon */
    transform: translateY(1px);
    /* vertical alignment fine-tune */
}


/* -------------------------
CONTACT SECTION
-------------------------- */
.se-mob-contact {
    margin-top: 40px;
    border-top: 1px solid #e3e3e3;
    padding: 20px 25px;
    font-size: 16px;
}

.se-mob-contact p {
    font-family: var(--font-outfit);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
    margin-top: 15px;
}

.se-mob-contact p span {
    /* text-transform: uppercase; */
    font-size: 16px;
    color: #00B3A4;
}








/* --------------------------
    Home Page Hero Section
--------------------------- */

.homepage-hero-section {
    position: relative;
    width: 100%;
    padding-top: 100px;
    overflow: hidden;
}

/* Background layers */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    animation: heroFadeZoom 20s infinite;
    z-index: 0;
}

/* Individual images */
.bg1 {
    background-image: url('../images/hero-1-web.webp');
    animation-delay: 0s;
}

.bg2 {
    background-image: url('../images/banner-new-2.jpg');
    animation-delay: 5s;
}

.bg3 {
    background-image: url('../images/banner-new-3.avif');
    animation-delay: 10s;
}

.bg4 {
    background-image: url('../images/about-2.jpg');
    animation-delay: 15s;
}

/* Fade + Zoom animation */
@keyframes heroFadeZoom {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
        transform: scale(1.08); /* slow zoom-in */
    }

    30% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.homepage-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
    rgba(0, 91, 154, 0.45),
    rgba(0, 124, 122, 0.55)
);

    z-index: 1;
}

.homepage-hero-writeup-section,
.homepage-hero-points-section {
    width: 100%;
}

.homepage-hero-writeup-section {
    padding: 0 50px;
}

.homepage-hero-container {
    width: 100%;
    max-width: 1450px;
    height: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.homepage-hero-container h5 {
    font-family: var(--font-manrope);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 2.8px;
    word-spacing: 2px;
    color: #ffffff;
}

.homepage-hero-container h5 i {
    font-size: 16px;
    color: #ffffff;
    margin-right: 0;
}

.homepage-hero-container h3 {
    font-family: var(--font-manrope);
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.12px;
    color: #ffffff;
    margin: 30px 0;
    width: 800px;
}

.homepage-hero-container h3 span {
    font-weight: 700;
}

.homepage-hero-container h4 {
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.12px;
    word-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 40px 0;
    width: 750px;
}

.homepage-hero-points-section {
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid #FFFFFF26;
    width: 100%;
    height: 100px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 45px;
}

.homepage-hero-points-section h5 {
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.12px;
    word-spacing: 1px;
    color: #ffffff;
}

.homepage-hero-points-section h5 i {
    font-size: 17px;
    color: #fff;
    margin-right: 5px;
}



/* ----------------------------
    Homepage Marquee Section
---------------------------- */

.homepage-marquee {
    display: none;
}

/* Wrapper */
.pm-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 30px 0;
    background: transparent;
    /* change if needed */
}

/* Scrolling Track */
.pm-marquee-track {
    display: inline-flex;
    gap: 45px;
    /* space between items */
    animation: pm-scroll 20s linear infinite;
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.15px;
    color: #bebebe;
}

/* Animation */
@keyframes pm-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}




/* --------------------------
    Inquiry Button
--------------------------- */

.product-inquiry-button {
    width: 180px;
    height: 50px;
    background: #00B3A4;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prod-button-left {
    width: 140px;
    height: 44px;
    background: #ffffff;
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prod-button-left p {
    text-align: center;
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1px;
    word-spacing: 2px;
    color: #333333;
}

.prod-button-arrow {
    width: 35px;
    height: 40px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prod-button-arrow svg {
    color: #ffffff;
    width: 25px;
    height: 25px;
}





/* ----------------------------
    Homepage About us Section
---------------------------- */

.homepage-about-section {
    width: 100%;
    background: #ffffff;
    padding: 100px 50px;
}

.home-about-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 70px;
}

.home-about-left,
.home-about-right {
    width: calc((100% + 70px)/2);
}

/* Home about section - left side image */

.home-about-image-one {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    z-index: 3;
    position: relative;
}

.home-about-image-one-img {
    display: block;
    width: 55%;
    height: 200px;
    background-image: url('../images/why-us-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
}

.home-about-image-one-text {
    width: 45%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.home-about-image-one-text h3 {
    font-family: var(--font-manrope);
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12px;
    color: #00B3A4;
}

.home-about-image-one-text p {
    font-family: var(--font-manrope);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.12px;
    color: #222222;
}

.home-about-image-two {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 4;
    margin-top: -50px;
}

.home-about-image-two-img {
    display: block;
    width: 85%;
    height: 400px;
    background-image: url('../images/about-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
    border: 8px solid #ffffff;
}


/* Home about section - right side writeup */

.home-about-right h5 {
    font-family: var(--font-manrope);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 2.8px;
    word-spacing: 2px;
    color: #222222;
}

.home-about-right h5 i {
    font-size: 16px;
    color: #00B3A4;
    margin-right: 0;
}

.home-about-right h3 {
    margin: 25px 0 30px 0;
    font-family: var(--font-manrope);
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.12px;
    color: #222222;
}

.home-about-right h3 span {
    font-weight: 700;
}

.home-about-right h4 {
    margin: 0 0 30px 0;
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.12px;
    word-spacing: 1px;
    color: #555555;
}

.home-about-right ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.home-about-right ul li {
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.12px;
    word-spacing: 1px;
    color: #222222;
}

.home-about-right ul li i {
    font-size: 16px;
    color: var(--color-teal);
    margin-right: 7px;
}




/* Footer Section */


.footer-section {
    width: 100%;
    background: #222222;
    padding: 0 30px;
}

/* INNER CONTAINER */
.footer-section-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    box-sizing: border-box;
}

.footer-cta {
    width: 100%;
    padding: 70px 0 65px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #FFFFFF1A;
}

.footer-cta-text {
    width: 750px;
}

.footer-cta-text h3 {
    font-family: var(--font-manrope);
    font-size: 43px;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.2px;
    word-spacing: 1px;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-cta-text p {
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.2px;
    color: #FFFFFFCC;
}

.footer-cta-button {
    width: 130px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-links-container {
    width: 100%;
    padding: 65px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #FFFFFF1A;
}

.footer-links-container-about {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links-container-links {
    width: 760px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-links-container p {
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.2px;
    color: #FFFFFFCC;
}

.social-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 23px;
}

.social-links-single {
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links-single i {
    display: block;
    /* Important! */
    font-size: 14px;
    /* Controls icon size */
    color: var(--color-teal);
}

.footer-links-container ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links-container ul li {
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.2px;
    color: #FFFFFFCC;
}

.footer-links-col-1,
.footer-links-col-2 {
    width: 220px;
}

.footer-links-col-3 {
    width: 290px;
}

.footer-links-container h2 {
    font-family: var(--font-manrope);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.2px;
    word-spacing: 1px;
    margin-bottom: 22px;
    color: #ffffff;
}

.footer-links-container h3 {
    font-family: var(--font-manrope);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.2px;
    word-spacing: 1px;
    margin-bottom: 25px;
    color: #ffffff;
}

.mt-25 {
    margin-top: 25px;
}

.footer-credits {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-credits p {
    font-family: var(--font-manrope);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2px;
    color: #FFFFFF99;
}

.footer-credits-links {
    display: none;
}




/* Why Us Section */

.homepage-why-us {
    width: 100%;
    background: #222222;
    padding: 100px 0 100px 40px;
}

.homepage-why-us-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 75px;
}

.home-whyus-left,
.home-whyus-right {
    width: calc((100% - 75px) / 2);
}

.home-whyus-left {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.home-whyus-header {
    width: 100%;
}

.home-whyus-header h5 {
    font-family: var(--font-manrope);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 2.8px;
    word-spacing: 2px;
    color: #ffffff;
}

.home-whyus-header h5 i {
    font-size: 16px;
    color: #00B3A4;
    margin-right: 0;
}

.home-whyus-header h3 {
    font-family: var(--font-manrope);
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.4px;
    color: #ffffff;
    margin-top: 24px;
}

.home-whyus-header h3 span {
    font-weight: 700;
}

.home-whyus-points {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 35px;
}

.home-whyus-single-point {
    width: 45%;
    padding: 25px;
    border: 1px solid #FFFFFF26;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-whyus-single-point svg {
    width: 60px;
    height: 60px;
    stroke: #00B3A4;
    stroke-width: 1;
}

.home-whyus-single-point h3 {
    margin: 25px 0 18px 0;
    font-family: var(--font-manrope);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: #ffffff;
    width: 150px;
}

.home-whyus-single-point p {
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.2px;
    word-spacing: 1px;
    color: #FFFFFFB3;
}

.bg-black,
.bg-black-alt {
    background: #222222;
}

.bg-grey,
.bg-grey-alt {
    background: #363636;
}

.home-whyus-right {
    background-image: url('../images/about-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}





/* Testimonial Section */

.testimonial-section {
    width: 100%;
    padding: 100px 40px;
    background-image: url('../images/testimonial-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

.testimonial-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 75px;
}

.testimonial-container-left,
.testimonial-container-right {
    width: calc((100% - 75px) / 2);
}

.testimonial-container-left {
    background-image: url('../images/medical-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
}


.testimonial-container-right h5 {
    font-family: var(--font-manrope);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 2.8px;
    word-spacing: 2px;
    color: #222222;
}

.testimonial-container-right h5 i {
    font-size: 14px;
    color: #00B3A4;
    margin-right: 0;
}

.testimonial-container-right h3 {
    margin: 25px 0 30px 0;
    font-family: var(--font-manrope);
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.12px;
    color: #222222;
}


.testimonial-container-right h3 span {
    font-weight: 700;
}

.testimonial-container-right ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.testimonial-container-right ul li i {
    font-size: 16px;
    color: #fcb900;
}

.testimonial-container-right p {
    margin: 30px 0 30px 0;
    font-family: var(--font-manrope);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.12px;
    color: #555555;
}

.testimonial-container-right h6 {
    font-family: var(--font-manrope);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.12px;
    word-spacing: 1px;
    color: #333;
}




/* Pages header */

/* PAGE HEADER (for all inner pages) */
.page-header {
    position: relative;
    width: 100%;
    height: 500px;
    padding: 0 50px;

    background-image: url('../images/hero-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    padding-top: 100px;
    /* compensate 100px transparent header */
    box-sizing: border-box;
}

/* Gradient Overlay */
.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;


    background: linear-gradient(
    rgba(0, 91, 154, 0.45),
    rgba(0, 124, 122, 0.55)
);

    z-index: 1;
}

.page-header .page-header-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    box-sizing: border-box;

    position: relative;
    z-index: 2;
    /* ensures text stays above overlay */
}

/* Container alignment */
.page-header-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* align start */
    gap: 15px;
}

/* Page Title */
.page-header-container h1 {
    color: #ffffff;
    font-family: var(--font-outfit);
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* Breadcrumb list */
.breadcrumb {
    display: flex;
    align-items: center;
    /* vertical middle align */
    gap: 0;
}

/* Remove ul default styling */
.breadcrumb li {
    list-style: none;
    display: flex;
    align-items: center;
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.2px;
    color: #fff;
}

/* Separator Dot */
.breadcrumb li+li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: inline-block;
    margin: 0 15px;
    /* equal spacing on left + right */
}




/* ----------------------
    Contact Page
----------------------- */

.contact-page-wrapper {
    width: 100%;
    background: ffffff;
    padding: 90px 30px;
}

.contact-page-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 75px;
}

.contact-details-info {
    width: calc((100% - 75px) / 2);
}

.contact-details-map {
    width: calc((100% - 75px) / 2);
}

.contact-details-intro {
    width: 100%;
}

.contact-details-intro h5 {
    font-family: var(--font-manrope);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 2.8px;
    word-spacing: 2px;
    color: #00B3A4;
}

.contact-details-intro h5 i {
    font-size: 16px;
    color: #00B3A4;
    margin-right: 0;
}

.contact-details-intro h3 {
    margin: 24px 0;
    font-size: 45px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: #222222;
}

.contact-details-intro p {
    margin-bottom: 3px;
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.16px;
    color: #555555;
}

.contact-details-box {
    width: 100%;
    padding-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 17px;
}

.pb-30 {
    padding-bottom: 30px;
}

.border-bottom-contact {
    border-bottom: 1px solid #cccccc;
}

.contact-details-icon {
    width: 65px;
}

.contact-details-data {
    width: 75%;
}

.contact-icon-box {
    background-color: #00B3A4;
    width: 60px;
    height: 60px;
    border-radius: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon-box svg {
    width: 31px;
    height: 31px;
    color: #ffffff;
}

.contact-details-data h3 {
    font-family: var(--font-manrope);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.2px;
    color: #222222;
    margin-bottom: 8px;
}

.contact-details-data h3 i {
    display: none;
}

.contact-details-data p {
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.1px;
    color: #555555;
}

.contact-details-data p span {
    color: #333333;
    font-weight: 600;
}

.contact-page-map-container {
    width: 100%;
    height: 650px;
    border: 1px solid #e5e5e5;
}

.contact-page-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}



/* -------------------------
    About us Page
---------------------------- */

.about-us-section-one {
    width: 100%;
    padding: 90px 50px 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}


.aboutus-container-one {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 75px;
}

.aboutus-one-left,
.aboutus-one-right {
    width: calc((100% - 75px) / 2);
}

.aboutus-one-left h2 {
    font-family: var(--font-manrope);
    font-size: 27px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1px;
    margin-bottom: 25px;
    color: #333333;
}

.aboutus-one-left p {
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.12px;
    color: #555555;
}

.aboutus-one-right {
    display: block;
    background-image: url('../images/banner-new-3.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
}

.aboutus-container-two,
.aboutus-container-four {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.aboutus-container-two p,
.aboutus-container-four p,
.aboutus-three-right p {
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.12px;
    color: #555555;
}





/* ----------------------
    Category Listing
----------------------- */

.category-listing-wrapper {
    width: 100%;
    background: ffffff;
    padding: 90px 30px;
}

.category-listing-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
}

.category-listing-container a {
    display: block;
    width: 27%;
    /* inherit same width as listing-box */
}

.listing-box {
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.listing-box-img {
    width: 100%;
    border-radius: 30px 30px 0 0;
    border-bottom: 1px solid #dddddd;
    overflow: hidden;
}

.listing-box-img img {
    width: 100%;
    border-radius: 30px 30px 0 0;
}

.listing-box-title {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.listing-box-title p {
    font-family: var(--font-manrope);
    font-size: 19px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.12px;
    color: #555;
}

.button-block {
    width: 60px;
    height: 36px;
    display: flex;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    /* background: #15b04a; */
}

.button-block svg {
    color: #00B3A4;
    width: 20px;
    height: 20px;
    stroke-width: 2 !important;
    /* or any value */
}

.button-block,
.button-block svg {
    transition: 0.5s ease;
}

/* When hovering the whole product card link */
.category-listing-container a:hover .button-block {
    background: #00B3A4;
}

.category-listing-container a:hover .button-block svg {
    color: #ffffff;
    stroke: #ffffff;
}




/* ----------------------
    Product Single Page
----------------------- */

.product-page-wrapper {
    width: 100%;
    background: ffffff;
    padding: 90px 30px;
}

.product-page-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
}

.product-intro {
    width: calc(50% - 40px);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-intro-text h2 {
    font-family: var(--font-manrope);
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.12px;
    margin-bottom: 25px;
    color: #222222;
}

.product-intro-text p {
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.12px;
    word-spacing: 0.2px;
    color: #555555;
}

.product-intro-text ul {
    margin: 18px 0 0;
    padding: 0;
}

.product-intro-text ul li {
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.12px;
    word-spacing: 0.2px;
    color: #555555;

    list-style: none;
    /* override global */
    position: relative;
    padding-left: 22px;
    /* space for the square */
    margin-bottom: 6px;
}

.product-intro-text ul li span {
    font-weight: 500;
    color: #333333;
}

.product-intro-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    /* aligns perfectly with the text */
    width: 8px;
    height: 8px;
    background: #00B3A4;
    /* green square */
    border-radius: 2px;
    /* slightly rounded corners, or set 0 for sharp square */
}

.product-inquiry-button {
    width: 180px;
    height: 50px;
    background: #00B3A4;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-inquiry-button-red {
    width: 180px;
    height: 50px;
    background: #E41E25;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prod-button-left {
    width: 140px;
    height: 44px;
    background: #ffffff;
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prod-button-left p {
    text-align: center;
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1px;
    word-spacing: 2px;
    color: #333333;
}

.prod-button-arrow {
    width: 35px;
    height: 40px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prod-button-arrow svg {
    color: #ffffff;
    width: 25px;
    height: 25px;
}

.spacer-100px {
    display: block;
    width: 100%;
    height: 100px;
    background: #ffffff;
}


/* IMAGE GALLERY */

.product-image {
    width: 450px;
}

.pm-gallery-wrapper {
    width: 100%;
    /* Set ONLY width */
    height: auto;
    /* Height auto adjusts */
}

/* Slider */
.pm-gallery-slider {
    width: 100%;
    height: auto;
    /* Auto height */
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #f2f2f2;
    border: 1px solid #dddddd;
}

/* Each slide */
.pm-slide {
    width: 100%;
    height: auto;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.7s ease;
}

/* Active visible slide */
.pm-slide.active {
    opacity: 1;
    position: relative;
    /* ENSURES auto height works! */
}

/* Images control height */
.pm-slide img {
    width: 100%;
    height: auto;
    /* AUTO height from image */
    object-fit: contain;
    display: block;
}

/* BUTTONS */
.pm-prev,
.pm-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 34px;
    height: 34px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    color: #333;

    border: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);

    display: none;
    /* only when >1 image */
}

/* Hover */
.pm-prev:hover,
.pm-next:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.25);
}

/* 5px inside */
.pm-prev {
    left: 5px;
}

.pm-next {
    right: 5px;
}





/* ---------------------------

CSS for custom floating buttons

---------------------------- */

.fixed-icon-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-button:hover {
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.icon-button:active {
  color: white;
}

.call-button {
  background-color: #00B3A4; /* Green */
}

.whatsapp-button {
  background-color: #25d366; /* WhatsApp Green */
}

.whatsapp-button i {
  font-size: 26px; /* Adjust the size of the WhatsApp icon */
}

.facebook-button {
  background-color: #4267B2; /* Facebook Blue */
}

.youtube-button {
  background-color: #FF0000; /* YouTube Red */
}

.instagram-button {
  background-color: #E1306C; /* Instagram Pinkish Red */
}

.icon-button i {
  font-family: FontAwesome;
}


@media screen and (max-width: 768px) {
  .fixed-icon-buttons {
    right: 12px;
    bottom: 15px;
  }
}



.management {
    width: 100%;
    padding: 90px 50px;
    background: #f7f7f7;
}

.management-container {
    width: 100%;
    max-width: 1250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}


.management-container h5 {
    font-family: var(--font-manrope);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 2.8px;
    word-spacing: 2px;
    color: #00B3A4;
}

.management-container h5 i {
    font-size: 16px;
    color: #00B3A4;
    margin-right: 0;
}

.management-container h3 {
    text-align: center;
    margin: 24px 0 50px 0;
    font-size: 45px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: #222222;
}

.management-container img {
    width: 270px;
    border: 1px solid #ddd;
    margin-bottom: 25px;
}

.management-container h4 {
    font-family: var(--font-manrope);
    text-align: center;
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    color: #222222;
}

.management-container p {
    font-family: var(--font-manrope);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    color: #039689;
}