@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    --ink: #0e2a36;
    --teal: #0b7d79;
    --mint: #dff3ee;
    --cream: #f6f5ef;
    --line: #dce6e3;
    --white: #fff;
    --muted: #63757d;
    --orange: #e36b3d
}

.gml-site {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: #fff
}

.gml-site h1,
.gml-site h2,
.gml-site h3 {
    font-family: 'Manrope', sans-serif;
    color: var(--ink)
}

.gml-topline {
    background: #0b252f;
    color: #dce8e8;
    font-size: 13px
}

.gml-topline .container>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0
}

.gml-top-contact {
    display: flex;
    gap: 24px
}

.gml-top-contact a {
    color: #fff
}

.gml-nav-shell {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100
}

.gml-nav-row {
    height: 88px;
    display: flex;
    align-items: center;
    gap: 36px
}

.gml-brand img {
    max-height: 58px;
    width: auto
}

.gml-main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto
}

.gml-main-nav>a,
.gml-menu>button {
    border: 0;
    background: none;
    font: 600 14px 'DM Sans';
    color: var(--ink);
    padding: 32px 0
}

.gml-menu {
    position: relative
}

.gml-mega {
    position: absolute;
    top: 76px;
    left: 0;
    width: 220px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 12px;
    box-shadow: 0 20px 50px rgba(13, 40, 51, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .25s
}

.gml-menu:hover .gml-mega {
    opacity: 1;
    visibility: visible;
    transform: none
}

.gml-mega a {
    display: block;
    padding: 11px 12px;
    border-radius: 6px
}

.gml-mega a:hover {
    background: var(--mint);
    color: var(--teal)
}

.gml-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.gml-search-link {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    border-radius: 50%
}

.gml-enquire,
.gml-primary-btn {
    background: var(--teal);
    color: #fff !important;
    padding: 13px 20px;
    border-radius: 4px;
    font-weight: 700
}

.gml-mobile-menu {
    display: none;
    border: 0;
    background: none;
    font-size: 22px
}

.gml-mobile-drawer nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee
}

.gml-drawer-brand img {
    max-width: 180px
}

.gml-hero {
    background: linear-gradient(130deg, #f1f7f4 0%, #eaf3ee 60%, #f8f6ef 100%);
    padding: 86px 0 74px;
    overflow: hidden
}

.gml-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 60px
}

.gml-kicker,
.gml-section-head>span,
.gml-section-head div>span,
.gml-page-hero span {
    display: block;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 18px
}

.gml-hero h1 {
    font-size: clamp(45px, 5.4vw, 78px);
    line-height: 1.04;
    letter-spacing: -.045em;
    max-width: 860px
}

.gml-hero p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 720px
}

.gml-hero-cta {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px
}

.gml-text-btn {
    font-weight: 700;
    color: var(--ink)
}

.gml-hero-art {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center
}

.gml-hero-art:before {
    content: '';
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0, #d9eee6 65%, transparent 66%)
}

.gml-hero-art img {
    position: relative;
    max-width: 330px;
    filter: drop-shadow(0 25px 35px rgba(14, 42, 54, .18))
}

.gml-orbit {
    position: absolute;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(11, 125, 121, .25);
    border-radius: 50%
}

.gml-floating-card {
    position: absolute;
    bottom: 25px;
    left: 10px;
    background: #fff;
    padding: 18px 22px;
    box-shadow: 0 20px 50px rgba(14, 42, 54, .15);
    display: flex;
    flex-direction: column
}

.gml-floating-card span {
    font-size: 13px;
    color: var(--muted)
}

.gml-statement {
    padding: 95px 0
}

.gml-statement-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 50px
}

.gml-statement-grid>span {
    color: var(--teal);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em
}

.gml-statement h2 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.2;
    max-width: 950px
}

.gml-pillars {
    padding: 100px 0;
    background: #0e2a36;
    color: #fff
}

.gml-pillars .gml-section-head h2,
.gml-pillars h3 {
    color: #fff
}

.gml-section-head h2 {
    font-size: clamp(32px, 4vw, 52px)
}

.gml-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .15);
    margin-top: 45px
}

.gml-pillar-grid article {
    background: #0e2a36;
    padding: 48px 40px
}

.gml-pillar-grid i {
    font-size: 42px;
    color: #75d0c3
}

.gml-pillar-grid p {
    color: #b9c8cd;
    line-height: 1.7
}

.gml-pillar-grid a {
    color: #fff;
    font-weight: 700
}

.gml-numbers {
    background: var(--mint);
    padding: 55px 0
}

.gml-number-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.gml-number-grid div {
    border-right: 1px solid rgba(11, 125, 121, .25)
}

.gml-number-grid strong {
    font: 800 43px 'Manrope';
    display: block;
    color: var(--teal)
}

.gml-number-grid span {
    color: var(--muted)
}

.gml-products-home,
.gml-insights {
    padding: 100px 0
}

.row-head {
    display: flex;
    justify-content: space-between;
    align-items: end
}

.row-head>a {
    font-weight: 800;
    color: var(--teal)
}

.gml-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px
}

.gml-home-product {
    border: 1px solid var(--line);
    background: #fff;
    transition: .3s
}

.gml-home-product:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(14, 42, 54, .1)
}

.gml-home-product div {
    height: 260px;
    background: #f5f8f6;
    display: grid;
    place-items: center;
    padding: 24px
}

.gml-home-product img {
    max-height: 100%;
    object-fit: contain
}

.gml-home-product span,
.gml-home-product h3,
.gml-home-product b {
    display: block;
    margin-left: 22px;
    margin-right: 22px
}

.gml-home-product span {
    margin-top: 20px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--teal)
}

.gml-home-product h3 {
    font-size: 19px;
    min-height: 52px
}

.gml-home-product b {
    margin-bottom: 22px;
    color: var(--teal)
}

.gml-insights {
    background: var(--cream)
}

.gml-insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px
}

.gml-insight-grid article {
    background: #fff;
    padding: 34px;
    border-top: 4px solid var(--teal)
}

.gml-insight-grid article>span {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 800
}

.gml-insight-grid h3 {
    font-size: 24px;
    line-height: 1.35
}

.gml-insight-grid p {
    color: var(--muted);
    line-height: 1.65
}

.gml-insight-grid a {
    font-weight: 800;
    color: var(--teal)
}

.gml-partner-cta {
    padding: 95px 0;
    background: linear-gradient(120deg, var(--teal), #075a59);
    color: #fff;
    text-align: center
}

.gml-partner-cta h2 {
    color: #fff;
    font-size: clamp(34px, 4.5vw, 58px);
    max-width: 880px;
    margin: 15px auto 30px
}

.gml-partner-cta a {
    display: inline-block;
    background: #fff;
    color: var(--teal);
    padding: 15px 24px;
    font-weight: 800
}

.gml-page-hero {
    padding: 110px 0;
    background: linear-gradient(130deg, #eaf3ee, #f8f6ef)
}

.gml-page-hero h1 {
    font-size: clamp(48px, 6vw, 82px);
    max-width: 850px
}

.gml-page-hero p {
    font-size: 20px;
    max-width: 790px;
    color: var(--muted)
}

.gml-page-content {
    padding: 90px 0
}

.gml-page-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px
}

.gml-page-grid h2 {
    font-size: clamp(34px, 4vw, 54px)
}

.gml-page-grid p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted)
}

.gml-page-grid aside {
    background: #0e2a36;
    color: #fff;
    padding: 45px
}

.gml-page-grid aside h3 {
    color: #fff;
    font-size: 30px
}

.gml-page-grid aside p {
    color: #b9c8cd;
    font-size: 16px
}

.gml-page-grid aside a {
    color: #75d0c3;
    font-weight: 800
}

.gml-value-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    margin-top: 80px
}

.gml-value-strip div {
    padding: 30px;
    border-right: 1px solid var(--line)
}

.gml-value-strip b,
.gml-value-strip span {
    display: block
}

.gml-value-strip b {
    font-size: 22px
}

.gml-value-strip span {
    color: var(--muted)
}

.gml-corporate-footer {
    background: #0a222c;
    color: #c6d2d6;
    padding: 75px 0 25px
}

.gml-footer-top {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 55px
}

.gml-footer-brand img {
    max-width: 220px;
    background: #fff;
    padding: 10px
}

.gml-footer-brand p {
    max-width: 320px;
    line-height: 1.7
}

.gml-footer-top h3 {
    color: #fff;
    font-size: 17px
}

.gml-footer-top a {
    display: block;
    color: #c6d2d6;
    margin: 11px 0
}

.gml-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 55px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between
}

.gml-footer-bottom div {
    display: flex;
    gap: 25px
}

.gml-footer-bottom a {
    color: #c6d2d6
}

@media(max-width:1100px) {
    .gml-main-nav {
        display: none
    }

    .gml-mobile-menu {
        display: block
    }

    .gml-nav-row {
        height: 74px
    }

    .gml-hero-grid,
    .gml-page-grid {
        grid-template-columns: 1fr
    }

    .gml-hero-art {
        min-height: 330px
    }

    .gml-product-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:767px) {
    .gml-top-contact {
        display: none
    }

    .gml-enquire {
        display: none
    }

    .gml-hero {
        padding: 55px 0
    }

    .gml-hero h1 {
        font-size: 44px
    }

    .gml-hero-art {
        display: none
    }

    .gml-statement-grid {
        grid-template-columns: 1fr
    }

    .gml-pillar-grid,
    .gml-number-grid,
    .gml-insight-grid,
    .gml-value-strip,
    .gml-footer-top {
        grid-template-columns: 1fr
    }

    .gml-product-grid {
        grid-template-columns: 1fr
    }

    .gml-number-grid div {
        border-right: 0;
        border-bottom: 1px solid rgba(11, 125, 121, .2);
        padding-bottom: 20px
    }

    .row-head {
        display: block
    }

    .gml-page-content,
    .gml-products-home,
    .gml-insights,
    .gml-pillars {
        padding: 65px 0
    }

    .gml-footer-bottom {
        display: block
    }

    .gml-footer-bottom div {
        margin-top: 14px
    }
}

/* =========================================================
   Dynamic homepage slider + category catalogue
========================================================= */
.gml-commerce-intro {
    padding: 26px 0 56px;
    background: linear-gradient(180deg, #f3f8fa 0%, #ffffff 100%);
}
.gml-main-slider {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #dfe9ed;
    box-shadow: 0 24px 65px rgba(11, 42, 61, .14);
}
.gml-main-slide {
    position: relative;
    height: clamp(280px, 36vw, 560px);
    overflow: hidden;
}
.gml-main-slide img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 6s ease;
}
.gml-main-slider .swiper-slide-active .gml-main-slide img { transform: scale(1.035); }
.gml-main-slide-shade {
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(90deg, rgba(4,30,47,.12), transparent 45%, rgba(4,30,47,.05));
}
.gml-slider-control {
    position: absolute; top: 50%; z-index: 5; width: 52px; height: 52px;
    display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.65);
    border-radius: 50%; background: rgba(255,255,255,.92); color: #12394d;
    box-shadow: 0 12px 28px rgba(5,31,48,.2); transform: translateY(-50%);
    backdrop-filter: blur(10px); transition: .3s ease;
}
.gml-slider-control:hover { background: #0f8888; color: #fff; transform: translateY(-50%) scale(1.06); }
.gml-main-slider-prev { left: 22px; }
.gml-main-slider-next { right: 22px; }
.gml-main-slider-pagination {
    left: 50% !important; bottom: 18px !important; width: auto !important;
    padding: 7px 10px; border-radius: 20px; background: rgba(255,255,255,.86);
    transform: translateX(-50%); backdrop-filter: blur(8px);
}
.gml-main-slider-pagination .swiper-pagination-bullet { width: 7px; height: 7px; opacity: .35; }
.gml-main-slider-pagination .swiper-pagination-bullet-active { width: 24px; border-radius: 10px; background: #0f8888; opacity: 1; }
.gml-category-panel {
    position: relative; margin-top: 28px; padding: 34px;
    border: 1px solid #deeaee; border-radius: 24px; background: #fff;
    box-shadow: 0 18px 50px rgba(11,42,61,.08); overflow: hidden;
}
.gml-category-panel:after {
    content: ""; position: absolute; width: 260px; height: 260px; right: -100px; top: -130px;
    border-radius: 50%; background: radial-gradient(circle, rgba(15,136,136,.12), transparent 68%); pointer-events: none;
}
.gml-category-panel-head {
    position: relative; z-index: 2; display: flex; align-items: end; justify-content: space-between;
    gap: 28px; margin-bottom: 25px;
}
.gml-category-panel-head span { color: #0f8888; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.gml-category-panel-head h2 { margin: 7px 0 6px; color: #102f42; font-size: clamp(28px,3vw,42px); line-height: 1.1; }
.gml-category-panel-head p { margin: 0; color: #607481; font-size: 15px; }
.gml-category-controls { display: flex; gap: 9px; }
.gml-category-controls button {
    width: 44px; height: 44px; display: grid; place-items: center; padding: 0;
    border: 1px solid #dbe7eb; border-radius: 13px; background: #fff; color: #15394b;
    transition: .25s ease;
}
.gml-category-controls button:hover { border-color: #0f8888; background: #0f8888; color: #fff; transform: translateY(-2px); }
.gml-category-swiper { position: relative; z-index: 2; overflow: visible; }
.gml-category-swiper .swiper-slide { height: auto; }
.gml-category-card {
    height: 100%; display: flex; flex-direction: column; padding: 10px 10px 16px;
    border: 1px solid #e1ebee; border-radius: 18px; background: #fff; color: #143748;
    text-align: center; transition: .32s ease;
}
.gml-category-card:hover { color: #143748; border-color: rgba(15,136,136,.38); box-shadow: 0 18px 35px rgba(16,56,73,.13); transform: translateY(-7px); }
.gml-category-card-image {
    height: 145px; display: grid; place-items: center; margin-bottom: 13px;
    border-radius: 13px; overflow: hidden; background: linear-gradient(145deg,#f4f9f9,#e9f4f3);
}
.gml-category-card-image img { width: 100%; height: 100%; object-fit: contain; padding: 15px; transition: .35s ease; }
.gml-category-card:hover img { transform: scale(1.07); }
.gml-category-card strong { min-height: 42px; display: grid; place-items: center; font-size: 15px; line-height: 1.35; }
.gml-category-card small { margin-top: 5px; color: #0f8888; font-weight: 700; }
.gml-category-card small i { margin-left: 4px; }
@media (max-width: 767px) {
    .gml-commerce-intro { padding: 15px 0 38px; }
    .gml-main-slider { border-radius: 16px; }
    .gml-main-slide { height: 230px; }
    .gml-slider-control { width: 42px; height: 42px; }
    .gml-main-slider-prev { left: 10px; } .gml-main-slider-next { right: 10px; }
    .gml-category-panel { margin-top: 18px; padding: 22px 16px; border-radius: 17px; }
    .gml-category-panel-head { align-items: flex-start; }
    .gml-category-card-image { height: 130px; }
}
@media (max-width: 575px) {
    .gml-slider-control { display: none; }
    .gml-category-panel-head { display: block; }
    .gml-category-controls { margin-top: 17px; }
}
@media (prefers-reduced-motion: reduce) {
    .gml-main-slide img, .gml-slider-control, .gml-category-card, .gml-category-card-image img { transition: none !important; }
}

/* =========================================================
   2026 homepage refinement: full-width slider + premium about
========================================================= */
.gml-commerce-intro{padding:0 0 68px;background:linear-gradient(180deg,#eef6f7 0%,#f8fbfb 55%,#fff 100%)}
.gml-fullwidth-slider-wrap{width:100%;overflow:hidden;background:#dce8eb}
.gml-fullwidth-slider-wrap .gml-main-slider{width:100%;max-width:none;border-radius:0;box-shadow:none}
.gml-fullwidth-slider-wrap .gml-main-slide{height:clamp(380px,46vw,720px)}
.gml-fullwidth-slider-wrap .gml-main-slide img{object-fit:cover;object-position:center}
.gml-fullwidth-slider-wrap .gml-main-slide-shade{background:linear-gradient(90deg,rgba(5,27,40,.2),rgba(5,27,40,.02) 48%,rgba(5,27,40,.12))}
.gml-fullwidth-slider-wrap .gml-slider-control{width:58px;height:58px;background:rgba(255,255,255,.9)}
.gml-fullwidth-slider-wrap .gml-main-slider-prev{left:max(22px,calc((100vw - 1440px)/2 + 22px))}
.gml-fullwidth-slider-wrap .gml-main-slider-next{right:max(22px,calc((100vw - 1440px)/2 + 22px))}
.gml-category-panel{margin-top:-54px;z-index:8;padding:36px 38px;border-radius:24px;box-shadow:0 28px 70px rgba(11,42,61,.14)}
.gml-category-card{border-radius:16px;background:linear-gradient(180deg,#fff,#fbfdfd)}
.gml-category-card-image{height:150px;background:linear-gradient(145deg,#f0f8f7,#e7f2f1)}

.gml-about-home{padding:112px 0;background:#fff;overflow:hidden}
.gml-about-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:88px;align-items:center}
.gml-about-visual{position:relative;min-height:610px}
.gml-about-image-main{position:absolute;inset:0 54px 40px 0;border-radius:8px 80px 8px 8px;overflow:hidden;background:#e7f1f0;box-shadow:0 28px 70px rgba(12,44,57,.14)}
.gml-about-image-main:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 55%,rgba(7,36,49,.28))}
.gml-about-image-main img{width:100%;height:100%;object-fit:cover;display:block}
.gml-about-brand-card{position:absolute;right:0;top:58px;width:235px;padding:22px;background:#fff;border:1px solid var(--line);box-shadow:0 20px 50px rgba(12,44,57,.14)}
.gml-about-brand-card img{width:100%;height:64px;object-fit:contain;margin-bottom:10px}
.gml-about-brand-card span{display:block;text-align:center;color:var(--teal);font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.gml-about-experience{position:absolute;right:18px;bottom:0;width:265px;padding:24px 26px;background:var(--teal);color:#fff;box-shadow:0 20px 45px rgba(11,125,121,.25)}
.gml-about-experience strong,.gml-about-experience span{display:block}.gml-about-experience strong{font:800 28px 'Manrope'}.gml-about-experience span{margin-top:5px;font-size:13px;line-height:1.5;color:#d9f2ef}
.gml-about-copy h1{font-size:clamp(38px,4.4vw,62px);line-height:1.12;letter-spacing:-.035em;margin-bottom:25px}
.gml-about-copy>p{font-size:17px;line-height:1.8;color:var(--muted);margin-bottom:20px}
.gml-about-copy .gml-about-lead{font-size:20px;color:#334f5b}
.gml-about-points{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin:34px 0}
.gml-about-points>div{display:flex;gap:14px;padding:18px;border:1px solid var(--line);background:#fbfdfc;transition:.25s ease}
.gml-about-points>div:hover{border-color:rgba(11,125,121,.35);transform:translateY(-3px);box-shadow:0 14px 30px rgba(14,42,54,.08)}
.gml-about-points i{flex:0 0 42px;width:42px;height:42px;display:grid;place-items:center;border-radius:50%;background:var(--mint);color:var(--teal);font-size:19px}
.gml-about-points b,.gml-about-points small{display:block}.gml-about-points b{font:700 15px 'Manrope';color:var(--ink)}.gml-about-points small{margin-top:5px;color:var(--muted);line-height:1.45}
.gml-about-actions{display:flex;align-items:center;gap:28px;margin-top:35px}
.gml-about-actions .gml-primary-btn{padding:15px 24px}

.gml-statement{background:linear-gradient(135deg,#f1f7f5,#fbfaf5)}
.gml-products-home .gml-home-product{border-radius:10px;overflow:hidden}
.gml-insight-grid article{border-radius:8px;box-shadow:0 12px 34px rgba(14,42,54,.06)}

@media(max-width:1100px){
 .gml-fullwidth-slider-wrap .gml-main-slide{height:520px}
 .gml-about-grid{grid-template-columns:1fr;gap:58px}.gml-about-visual{min-height:560px;max-width:760px;width:100%;margin:auto}
}
@media(max-width:767px){
 .gml-commerce-intro{padding-bottom:48px}.gml-fullwidth-slider-wrap .gml-main-slide{height:320px}.gml-category-panel{margin-top:-26px;padding:25px 17px;border-radius:17px}
 .gml-about-home{padding:72px 0}.gml-about-visual{min-height:430px}.gml-about-image-main{inset:0 24px 35px 0;border-radius:6px 42px 6px 6px}.gml-about-brand-card{right:0;top:30px;width:170px;padding:14px}.gml-about-brand-card img{height:45px}.gml-about-experience{right:8px;width:220px;padding:18px 20px}.gml-about-grid{gap:44px}.gml-about-copy h1{font-size:38px}.gml-about-copy .gml-about-lead{font-size:18px}.gml-about-points{grid-template-columns:1fr}.gml-about-actions{align-items:flex-start;flex-direction:column;gap:18px}
}
@media(max-width:575px){
 .gml-fullwidth-slider-wrap .gml-main-slide{height:250px}.gml-category-panel{margin-top:-12px}.gml-about-visual{min-height:350px}.gml-about-brand-card{display:none}.gml-about-image-main{inset:0 0 45px}.gml-about-experience{left:18px;right:auto;bottom:0;width:calc(100% - 36px)}
}

/* ==================================================
   THERAPEUTIC CATEGORY SECTION
================================================== */

.gml-therapeutic-section {
    --gml-category-primary: #103f5b;
    --gml-category-primary-dark: #082d42;
    --gml-category-accent: #0f9c93;
    --gml-category-accent-dark: #087a74;
    --gml-category-heading: #102f43;
    --gml-category-text: #607480;
    --gml-category-border: #dfebef;
    --gml-category-light: #f3f8f8;
    --gml-category-white: #ffffff;

    position: relative;
    z-index: 5;
    padding: 20px 0 75px;
    background:
        linear-gradient(
            180deg,
            #f5f9fa 0%,
            #ffffff 100%
        );
}

.gml-category-panel {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border: 1px solid var(--gml-category-border);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(247, 252, 252, 1) 100%
        );
    box-shadow:
        0 24px 70px rgba(17, 62, 82, 0.1);
}

.gml-category-panel::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -110px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(15, 156, 147, 0.11) 0%,
            rgba(15, 156, 147, 0) 72%
        );
    pointer-events: none;
}

.gml-category-panel::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(16, 63, 91, 0.07) 0%,
            transparent 72%
        );
    pointer-events: none;
}


/* Header */

.gml-category-panel-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 30px;
}

.gml-category-heading {
    max-width: 720px;
}

.gml-category-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 11px;
    color: var(--gml-category-accent-dark);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.4;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.gml-category-eyebrow i {
    font-size: 15px;
}

.gml-category-heading h2 {
    margin: 0;
    color: var(--gml-category-heading);
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: -1px;
}

.gml-category-heading p {
    max-width: 650px;
    margin: 14px 0 0;
    color: var(--gml-category-text);
    font-size: 16px;
    line-height: 1.75;
}


/* Controls */

.gml-category-controls {
    display: flex;
    flex-shrink: 0;
    gap: 11px;
}

.gml-category-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--gml-category-border);
    border-radius: 14px;
    background: var(--gml-category-white);
    color: var(--gml-category-heading);
    box-shadow:
        0 8px 24px rgba(15, 55, 75, 0.08);
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.gml-category-control:hover {
    border-color: var(--gml-category-accent);
    background: var(--gml-category-accent);
    color: var(--gml-category-white);
    box-shadow:
        0 13px 28px rgba(15, 156, 147, 0.25);
    transform: translateY(-3px);
}

.gml-category-control i {
    font-size: 15px;
}

.gml-category-control.swiper-button-disabled {
    cursor: not-allowed;
    opacity: 0.45;
}


/* Swiper */

.gml-category-swiper {
    position: relative;
    z-index: 2;
    overflow: visible;
}

.gml-category-swiper .swiper-wrapper {
    align-items: stretch;
}

.gml-category-swiper .swiper-slide {
    height: auto;
}


/* Card */

.gml-category-card {
    height: 100%;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--gml-category-border);
    border-radius: 20px;
    background: var(--gml-category-white);
    box-shadow:
        0 7px 22px rgba(18, 57, 73, 0.055);
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.gml-category-card:hover {
    border-color: rgba(15, 156, 147, 0.42);
    box-shadow:
        0 22px 45px rgba(15, 65, 83, 0.14);
    transform: translateY(-8px);
}

.gml-category-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.gml-category-card-link:hover {
    color: inherit;
}


/* Image */

.gml-category-card-image {
    position: relative;
    height: 158px;
    margin: 11px;
    overflow: hidden;
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            #f4f9f9 0%,
            #e8f3f2 100%
        );
}

.gml-category-card-image::after {
    content: "";
    position: absolute;
    inset: auto -25px -45px auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(15, 156, 147, 0.08);
}

.gml-category-card-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 18px;
    display: block;
    object-fit: contain;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.gml-category-card:hover .gml-category-card-image img {
    filter:
        drop-shadow(0 12px 13px rgba(18, 66, 83, 0.15));
    transform: scale(1.08);
}

.gml-category-card-arrow {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gml-category-accent-dark);
    box-shadow:
        0 8px 22px rgba(14, 52, 67, 0.13);
    opacity: 0;
    transform: translate(8px, -8px);
    transition:
        opacity 0.3s ease,
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.gml-category-card:hover .gml-category-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.gml-category-card-arrow i {
    font-size: 13px;
}


/* Content */

.gml-category-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 8px 15px 20px;
    text-align: center;
}

.gml-category-card-content h3 {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--gml-category-heading);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gml-category-view-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--gml-category-accent-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.gml-category-view-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.gml-category-card:hover .gml-category-view-link i {
    transform: translateX(4px);
}


/* Bottom Bar */

.gml-category-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 30px;
    padding-top: 23px;
    border-top: 1px solid var(--gml-category-border);
}

.gml-category-bottom > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gml-category-text);
    font-size: 14px;
    font-weight: 550;
}

.gml-category-bottom > span i {
    color: var(--gml-category-accent);
    font-size: 16px;
}

.gml-category-bottom > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gml-category-primary);
    font-size: 14px;
    font-weight: 750;
    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.gml-category-bottom > a:hover {
    gap: 13px;
    color: var(--gml-category-accent-dark);
}


/* Empty State */

.gml-category-empty {
    padding: 45px 25px;
    border: 1px dashed var(--gml-category-border);
    border-radius: 16px;
    color: var(--gml-category-text);
    text-align: center;
}


/* Responsive */

@media only screen and (max-width: 1199px) {

    .gml-category-panel {
        padding: 35px;
    }

    .gml-category-card-image {
        height: 150px;
    }

}

@media only screen and (max-width: 991px) {

    .gml-therapeutic-section {
        padding-bottom: 60px;
    }

    .gml-category-panel {
        padding: 30px;
        border-radius: 22px;
    }

    .gml-category-panel-head {
        align-items: center;
    }

    .gml-category-heading p {
        font-size: 15px;
    }

}

@media only screen and (max-width: 767px) {

    .gml-therapeutic-section {
        padding: 12px 0 50px;
    }

    .gml-category-panel {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .gml-category-panel-head {
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 24px;
    }

    .gml-category-heading h2 {
        font-size: 29px;
    }

    .gml-category-heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .gml-category-controls {
        margin-top: 3px;
    }

    .gml-category-control {
        width: 41px;
        height: 41px;
        border-radius: 11px;
    }

    .gml-category-card-image {
        height: 142px;
    }

    .gml-category-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

}

@media only screen and (max-width: 575px) {

    .gml-category-panel-head {
        display: block;
    }

    .gml-category-controls {
        margin-top: 19px;
    }

    .gml-category-card:hover {
        transform: translateY(-4px);
    }

    .gml-category-card-arrow {
        opacity: 1;
        transform: none;
    }

    .gml-category-bottom > span {
        font-size: 13px;
    }

}


/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {

    .gml-category-card,
    .gml-category-card-image img,
    .gml-category-card-arrow,
    .gml-category-control,
    .gml-category-view-link i {
        transition: none !important;
    }

}

/* ==================================================
   GAUTAM MEDILIFE ABOUT HOME
================================================== */

.gml-about-home {
    --gml-about-primary: #103f5b;
    --gml-about-primary-dark: #082d42;
    --gml-about-accent: #119b92;
    --gml-about-accent-dark: #087a74;
    --gml-about-heading: #102f43;
    --gml-about-text: #5d707d;
    --gml-about-border: #deeaee;
    --gml-about-soft: #f2f8f8;
    --gml-about-white: #ffffff;

    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(17, 155, 146, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(16, 63, 91, 0.07),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbfc 100%
        );
}

.gml-about-home::before {
    content: "";
    position: absolute;
    top: 80px;
    left: -140px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(17, 155, 146, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

.gml-about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(55px, 7vw, 100px);
}


/* ==================================================
   VISUAL AREA
================================================== */

.gml-about-visual {
    position: relative;
    min-height: 610px;
    padding: 0 42px 45px 0;
}

.gml-about-image-main {
    position: relative;
    width: 100%;
    height: 570px;
    overflow: hidden;
    border-radius: 30px;
    background: #dfeaed;
    box-shadow:
        0 30px 80px rgba(13, 54, 73, 0.17);
}

.gml-about-image-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.gml-about-visual:hover .gml-about-image-main img {
    transform: scale(1.035);
}

.gml-about-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(7, 38, 55, 0.02) 30%,
            rgba(7, 38, 55, 0.5) 100%
        );
    pointer-events: none;
}

.gml-about-image-label {
    position: absolute;
    left: 26px;
    bottom: 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 17px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 13px;
    font-weight: 650;
    backdrop-filter: blur(12px);
}

.gml-about-image-label i {
    font-size: 16px;
}


/* Brand Card */

.gml-about-brand-card {
    position: absolute;
    top: 42px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 240px;
    padding: 18px;
    border: 1px solid rgba(222, 234, 238, 0.9);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 18px 45px rgba(11, 54, 72, 0.14);
    backdrop-filter: blur(12px);
}

.gml-about-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    padding: 7px;
    border-radius: 14px;
    background: #f4f9f9;
}

.gml-about-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gml-about-brand-copy {
    min-width: 0;
}

.gml-about-brand-copy strong {
    display: block;
    margin-bottom: 5px;
    color: var(--gml-about-heading);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.3;
}

.gml-about-brand-copy span {
    display: block;
    color: var(--gml-about-accent-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
}


/* Experience Card */

.gml-about-experience {
    position: absolute;
    left: 28px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 310px;
    padding: 20px 23px;
    border-radius: 19px;
    background:
        linear-gradient(
            135deg,
            var(--gml-about-primary-dark),
            var(--gml-about-primary)
        );
    color: #ffffff;
    box-shadow:
        0 20px 45px rgba(8, 45, 66, 0.25);
}

.gml-about-experience-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    height: 49px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
}

.gml-about-experience-icon i {
    color: #75ddd5;
    font-size: 21px;
}

.gml-about-experience strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 750;
}

.gml-about-experience span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.5;
}


/* Statistics Card */

.gml-about-stat-card {
    position: absolute;
    right: 16px;
    bottom: 70px;
    width: 150px;
    padding: 20px;
    border: 1px solid rgba(17, 155, 146, 0.22);
    border-radius: 18px;
    background: var(--gml-about-white);
    box-shadow:
        0 18px 45px rgba(15, 58, 75, 0.13);
    text-align: center;
}

.gml-about-stat-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--gml-about-accent-dark);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.gml-about-stat-card span {
    display: block;
    color: var(--gml-about-text);
    font-size: 11px;
    line-height: 1.5;
}


/* ==================================================
   CONTENT AREA
================================================== */

.gml-about-copy {
    position: relative;
}

.gml-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    color: var(--gml-about-accent-dark);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 1.35px;
    line-height: 1.4;
    text-transform: uppercase;
}

.gml-kicker::after {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 5px;
    background: var(--gml-about-accent);
}

.gml-kicker i {
    font-size: 15px;
}

.gml-about-copy h2 {
    max-width: 790px;
    margin: 0;
    color: var(--gml-about-heading);
    font-size: clamp(36px, 4.25vw, 58px);
    font-weight: 760;
    line-height: 1.1;
    letter-spacing: -1.8px;
}

.gml-about-copy h2 span {
    color: var(--gml-about-accent-dark);
}

.gml-about-lead {
    max-width: 760px;
    margin: 24px 0 14px;
    color: #304b5b;
    font-size: 18px;
    font-weight: 520;
    line-height: 1.75;
}

.gml-about-description {
    max-width: 760px;
    margin: 0;
    color: var(--gml-about-text);
    font-size: 15px;
    line-height: 1.82;
}


/* Feature Grid */

.gml-about-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.gml-about-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 112px;
    padding: 18px;
    border: 1px solid var(--gml-about-border);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.92);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.gml-about-point:hover {
    border-color: rgba(17, 155, 146, 0.38);
    box-shadow:
        0 15px 34px rgba(14, 60, 77, 0.1);
    transform: translateY(-4px);
}

.gml-about-point-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 14px;
    background:
        linear-gradient(
            145deg,
            #eaf7f5,
            #f5fbfa
        );
    color: var(--gml-about-accent-dark);
}

.gml-about-point-icon i {
    font-size: 20px;
}

.gml-about-point-copy {
    display: block;
}

.gml-about-point-copy b {
    display: block;
    margin-bottom: 6px;
    color: var(--gml-about-heading);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.35;
}

.gml-about-point-copy small {
    display: block;
    color: var(--gml-about-text);
    font-size: 12px;
    line-height: 1.55;
}


/* Trust Bar */

.gml-about-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    margin-top: 26px;
    padding: 19px 0;
    border-top: 1px solid var(--gml-about-border);
    border-bottom: 1px solid var(--gml-about-border);
}

.gml-about-trust > div {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gml-about-heading);
    font-size: 13px;
    font-weight: 650;
}

.gml-about-trust i {
    color: var(--gml-about-accent);
    font-size: 16px;
}


/* Actions */

.gml-about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
}

.gml-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 54px;
    padding: 0 25px;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            var(--gml-about-primary),
            var(--gml-about-primary-dark)
        );
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    box-shadow:
        0 14px 30px rgba(8, 45, 66, 0.2);
    transition:
        gap 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.gml-primary-btn:hover {
    gap: 15px;
    color: #ffffff;
    box-shadow:
        0 18px 38px rgba(8, 45, 66, 0.28);
    transform: translateY(-3px);
}

.gml-primary-btn i {
    font-size: 13px;
}

.gml-text-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gml-about-primary);
    font-size: 14px;
    font-weight: 750;
    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.gml-text-btn:hover {
    gap: 13px;
    color: var(--gml-about-accent-dark);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media only screen and (max-width: 1199px) {

    .gml-about-grid {
        gap: 55px;
    }

    .gml-about-visual {
        min-height: 560px;
    }

    .gml-about-image-main {
        height: 525px;
    }

    .gml-about-copy h2 {
        font-size: 43px;
    }

    .gml-about-stat-card {
        display: none;
    }

}

@media only screen and (max-width: 991px) {

    .gml-about-home {
        padding: 80px 0;
    }

    .gml-about-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .gml-about-visual {
        width: min(100%, 700px);
        margin: 0 auto;
    }

    .gml-about-image-main {
        height: 560px;
    }

    .gml-about-copy {
        max-width: 760px;
    }

}

@media only screen and (max-width: 767px) {

    .gml-about-home {
        padding: 65px 0;
    }

    .gml-about-visual {
        min-height: auto;
        padding: 0 0 105px;
    }

    .gml-about-image-main {
        height: 450px;
        border-radius: 22px;
    }

    .gml-about-brand-card {
        top: 18px;
        right: 15px;
        width: 205px;
        padding: 13px;
    }

    .gml-about-brand-logo {
        width: 53px;
        height: 53px;
    }

    .gml-about-experience {
        left: 16px;
        right: 16px;
        bottom: 22px;
        max-width: none;
    }

    .gml-about-copy h2 {
        font-size: 35px;
        letter-spacing: -1px;
    }

    .gml-about-lead {
        font-size: 16px;
    }

    .gml-about-points {
        grid-template-columns: 1fr;
    }

}

@media only screen and (max-width: 575px) {

    .gml-about-home {
        padding: 55px 0;
    }

    .gml-about-image-main {
        height: 360px;
        border-radius: 18px;
    }

    .gml-about-image-label {
        left: 15px;
        bottom: 15px;
        font-size: 11px;
    }

    .gml-about-brand-card {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% - 30px);
        margin: -30px auto 0;
        z-index: 4;
    }

    .gml-about-experience {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 14px 15px 0;
    }

    .gml-about-visual {
        padding-bottom: 0;
    }

    .gml-about-copy h2 {
        font-size: 30px;
    }

    .gml-about-lead {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.65;
    }

    .gml-about-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .gml-about-point {
        min-height: auto;
        padding: 16px;
    }

    .gml-about-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 17px;
    }

    .gml-primary-btn {
        width: 100%;
    }

    .gml-text-btn {
        justify-content: center;
    }

}


/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {

    .gml-about-image-main img,
    .gml-about-point,
    .gml-primary-btn,
    .gml-text-btn {
        transition: none !important;
    }

}

/* ==================================================
   MISSION SECTION
================================================== */

.gml-mission-section {
    --gml-mission-navy: #0b334b;
    --gml-mission-navy-dark: #062538;
    --gml-mission-teal: #109b92;
    --gml-mission-teal-light: #6ed4cd;
    --gml-mission-white: #ffffff;

    position: relative;
    z-index: 3;
    padding: 95px 0 70px;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #f7fafb 0%,
            #ffffff 100%
        );
}

.gml-mission-card {
    position: relative;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    align-items: center;
    gap: 45px;
    min-height: 335px;
    padding: 55px 60px;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(
            130deg,
            var(--gml-mission-navy-dark) 0%,
            var(--gml-mission-navy) 58%,
            #0b5363 100%
        );
    box-shadow:
        0 30px 80px rgba(6, 37, 56, 0.22);
}

.gml-mission-card::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -80px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(110, 212, 205, 0.18) 0%,
            rgba(110, 212, 205, 0) 70%
        );
}

.gml-mission-card::after {
    content: "";
    position: absolute;
    left: 28%;
    bottom: -170px;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.gml-mission-label,
.gml-mission-content,
.gml-mission-action {
    position: relative;
    z-index: 2;
}


/* Mission Label */

.gml-mission-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.gml-mission-label-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
}

.gml-mission-label-icon i {
    color: var(--gml-mission-teal-light);
    font-size: 25px;
}

.gml-mission-label small {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gml-mission-label strong {
    display: block;
    color: var(--gml-mission-white);
    font-size: 20px;
    font-weight: 750;
}


/* Mission Content */

.gml-mission-content {
    max-width: 900px;
}

.gml-mission-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--gml-mission-teal-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.gml-mission-kicker::before {
    content: "";
    width: 27px;
    height: 2px;
    border-radius: 4px;
    background: var(--gml-mission-teal-light);
}

.gml-mission-content h2 {
    max-width: 900px;
    margin: 0;
    color: var(--gml-mission-white);
    font-size: clamp(29px, 3.5vw, 48px);
    font-weight: 720;
    line-height: 1.16;
    letter-spacing: -1.2px;
}

.gml-mission-content h2 span {
    color: #8ee2dc;
}

.gml-mission-content p {
    max-width: 800px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.75;
}


/* Mission Action */

.gml-mission-action {
    align-self: end;
}

.gml-mission-action a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: var(--gml-mission-white);
    font-size: 13px;
    font-weight: 700;
    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.gml-mission-action a:hover {
    gap: 14px;
    color: var(--gml-mission-teal-light);
}


/* ==================================================
   STRATEGIC PILLARS
================================================== */

.gml-pillars-section {
    --gml-pillar-primary: #103f5b;
    --gml-pillar-primary-dark: #082d42;
    --gml-pillar-accent: #109b92;
    --gml-pillar-accent-dark: #087a74;
    --gml-pillar-heading: #fff;
    --gml-pillar-text: #60737f;
    --gml-pillar-border: #deeaee;
    --gml-pillar-soft: #f3f8f8;
    --gml-pillar-white: #ffffff;

    position: relative;
    overflow: hidden;
    padding: 80px 0 110px;
    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(16, 155, 146, 0.07),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f9fa 100%
        );
}


/* Pillar Heading */

.gml-pillars-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 45px;
}

.gml-pillars-head-copy {
    max-width: 780px;
}

.gml-pillars-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    color: var(--gml-pillar-accent-dark);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.gml-pillars-eyebrow i {
    font-size: 16px;
}

.gml-pillars-head h2 {
    max-width: 760px;
    margin: 0;
    color: var(--gml-pillar-heading);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 760;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.gml-pillars-head p {
    max-width: 690px;
    margin: 20px 0 0;
    color: var(--gml-pillar-text);
    font-size: 16px;
    line-height: 1.75;
}

.gml-pillars-head-note {
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: 290px;
    padding: 18px 20px;
    border: 1px solid var(--gml-pillar-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--gml-pillar-text);
    font-size: 13px;
    line-height: 1.55;
    box-shadow:
        0 12px 30px rgba(14, 55, 73, 0.07);
}

.gml-pillars-head-note i {
    color: var(--gml-pillar-accent);
    font-size: 24px;
}


/* Pillar Grid */

.gml-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* Pillar Card */

.gml-pillar-card {
    position: relative;
    display: flex;
    min-height: 540px;
    flex-direction: column;
    overflow: hidden;
    padding: 36px 32px 32px;
    border: 1px solid var(--gml-pillar-border);
    border-radius: 23px;
    background:
        linear-gradient(
            180deg,
            var(--gml-pillar-white) 0%,
            #fbfdfd 100%
        );
    box-shadow:
        0 15px 45px rgba(14, 55, 73, 0.075);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.gml-pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            var(--gml-pillar-primary),
            var(--gml-pillar-accent)
        );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.gml-pillar-card::after {
    content: "";
    position: absolute;
    top: -95px;
    right: -80px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(16, 155, 146, 0.09),
            transparent 70%
        );
}

.gml-pillar-card:hover {
    border-color: rgba(16, 155, 146, 0.38);
    box-shadow:
        0 28px 60px rgba(13, 57, 75, 0.14);
    transform: translateY(-10px);
}

.gml-pillar-card:hover::before {
    transform: scaleX(1);
}


/* Number */

.gml-pillar-number {
    position: absolute;
    top: 25px;
    right: 27px;
    color: rgba(16, 63, 91, 0.08);
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
}


/* Icon */

.gml-pillar-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 28px;
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            #e7f6f4,
            #f5fbfa
        );
    color: var(--gml-pillar-accent-dark);
    box-shadow:
        inset 0 0 0 1px rgba(16, 155, 146, 0.1);
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.gml-pillar-icon i {
    font-size: 28px;
}

.gml-pillar-card:hover .gml-pillar-icon {
    background:
        linear-gradient(
            135deg,
            var(--gml-pillar-primary),
            var(--gml-pillar-accent-dark)
        );
    color: var(--gml-pillar-white);
    transform: rotate(-5deg) scale(1.05);
}


/* Category */

.gml-pillar-category {
    display: block;
    margin-bottom: 9px;
    color: var(--gml-pillar-accent-dark);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}


/* Typography */

.gml-pillar-card h3 {
    margin: 0;
    color: var(--gml-pillar-heading);
    font-size: 27px;
    font-weight: 750;
    line-height: 1.25;
}

.gml-pillar-card > p {
    margin: 16px 0 22px;
    color: var(--gml-pillar-text);
    font-size: 14px;
    line-height: 1.75;
}


/* List */

.gml-pillar-card ul {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.gml-pillar-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0;
    color: #415966;
    font-size: 13px;
    line-height: 1.5;
}

.gml-pillar-card li i {
    margin-top: 3px;
    color: var(--gml-pillar-accent);
    font-size: 11px;
}


/* Card Link */

.gml-pillar-card > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--gml-pillar-border);
    color: var(--gml-pillar-primary);
    font-size: 13px;
    font-weight: 750;
    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.gml-pillar-card > a:hover {
    gap: 14px;
    color: var(--gml-pillar-accent-dark);
}


/* Different Card Accents */

.gml-pillar-quality .gml-pillar-icon {
    background:
        linear-gradient(
            145deg,
            #eef4fb,
            #f8fbfe
        );
    color: #315f8b;
}

.gml-pillar-reach .gml-pillar-icon {
    background:
        linear-gradient(
            145deg,
            #eef8ef,
            #f8fcf8
        );
    color: #3c8060;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media only screen and (max-width: 1199px) {

    .gml-mission-card {
        grid-template-columns: 160px minmax(0, 1fr);
    }

    .gml-mission-action {
        display: none;
    }

    .gml-pillar-card {
        min-height: 560px;
        padding: 32px 27px;
    }

}

@media only screen and (max-width: 991px) {

    .gml-mission-section {
        padding-top: 75px;
    }

    .gml-mission-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 45px;
    }

    .gml-mission-label {
        padding: 0 0 25px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .gml-pillars-section {
        padding: 70px 0 85px;
    }

    .gml-pillars-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .gml-pillars-head-note {
        max-width: 420px;
    }

    .gml-pillar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media only screen and (max-width: 767px) {

    .gml-mission-section {
        padding: 60px 0 50px;
    }

    .gml-mission-card {
        min-height: auto;
        padding: 35px 25px;
        border-radius: 21px;
    }

    .gml-mission-content h2 {
        font-size: 30px;
    }

    .gml-mission-content p {
        font-size: 14px;
    }

    .gml-pillars-section {
        padding: 60px 0 70px;
    }

    .gml-pillars-head {
        margin-bottom: 32px;
    }

    .gml-pillars-head h2 {
        font-size: 35px;
    }

    .gml-pillars-head p {
        font-size: 15px;
    }

    .gml-pillar-grid {
        grid-template-columns: 1fr;
    }

    .gml-pillar-card {
        min-height: auto;
    }

}

@media only screen and (max-width: 575px) {

    .gml-mission-card {
        padding: 30px 20px;
    }

    .gml-mission-label-icon {
        width: 53px;
        height: 53px;
    }

    .gml-mission-content h2 {
        font-size: 27px;
        letter-spacing: -0.7px;
    }

    .gml-pillars-head h2 {
        font-size: 30px;
    }

    .gml-pillars-head-note {
        width: 100%;
    }

    .gml-pillar-card {
        padding: 29px 23px;
        border-radius: 19px;
    }

    .gml-pillar-number {
        font-size: 48px;
    }

}


/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {

    .gml-pillar-card,
    .gml-pillar-card::before,
    .gml-pillar-icon,
    .gml-pillar-card > a,
    .gml-mission-action a {
        transition: none !important;
    }

}

/* ==================================================
   FEATURED PRODUCTS SECTION
================================================== */

.gml-products-home {
    --gml-product-primary: #103f5b;
    --gml-product-primary-dark: #082d42;
    --gml-product-accent: #109b92;
    --gml-product-accent-dark: #087a74;
    --gml-product-heading: #102f43;
    --gml-product-text: #60737f;
    --gml-product-border: #deeaee;
    --gml-product-soft: #f2f8f8;
    --gml-product-white: #ffffff;

    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 92% 15%,
            rgba(16, 155, 146, 0.08),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f5f9fa 0%,
            #ffffff 100%
        );
}

.gml-products-home::before {
    content: "";
    position: absolute;
    left: -160px;
    bottom: -190px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(16, 63, 91, 0.07);
    border-radius: 50%;
    pointer-events: none;
}


/* Section Heading */

.gml-products-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 42px;
}

.gml-products-head-copy {
    max-width: 760px;
}

.gml-products-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: var(--gml-product-accent-dark);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 1.3px;
    line-height: 1.4;
    text-transform: uppercase;
}

.gml-products-eyebrow::after {
    content: "";
    width: 30px;
    height: 2px;
    border-radius: 5px;
    background: var(--gml-product-accent);
}

.gml-products-eyebrow i {
    font-size: 15px;
}

.gml-products-head h2 {
    margin: 0;
    color: var(--gml-product-heading);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 760;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.gml-products-head p {
    max-width: 650px;
    margin: 17px 0 0;
    color: var(--gml-product-text);
    font-size: 16px;
    line-height: 1.75;
}


/* View All Button */

.gml-products-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 21px;
    flex-shrink: 0;
    border: 1px solid var(--gml-product-border);
    border-radius: 12px;
    background: var(--gml-product-white);
    color: var(--gml-product-primary);
    font-size: 13px;
    font-weight: 750;
    box-shadow:
        0 10px 26px rgba(12, 54, 72, 0.07);
    transition:
        gap 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.gml-products-view-all:hover {
    gap: 14px;
    border-color: var(--gml-product-accent);
    color: var(--gml-product-accent-dark);
    box-shadow:
        0 15px 32px rgba(13, 65, 80, 0.12);
    transform: translateY(-3px);
}


/* Product Grid */

.gml-product-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 23px;
}


/* Product Card */

.gml-home-product {
    position: relative;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--gml-product-border);
    border-radius: 22px;
    background: var(--gml-product-white);
    box-shadow:
        0 12px 38px rgba(15, 55, 72, 0.07);
    transition:
        border-color 0.38s ease,
        box-shadow 0.38s ease,
        transform 0.38s ease;
}

.gml-home-product::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    z-index: 3;
    width: 100%;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            var(--gml-product-primary),
            var(--gml-product-accent)
        );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.38s ease;
}

.gml-home-product:hover {
    border-color: rgba(16, 155, 146, 0.4);
    box-shadow:
        0 28px 60px rgba(14, 59, 77, 0.14);
    transform: translateY(-10px);
}

.gml-home-product:hover::before {
    transform: scaleX(1);
}

.gml-home-product-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.gml-home-product-link:hover {
    color: inherit;
}


/* Product Image */

.gml-home-product-image {
    position: relative;
    height: 295px;
    margin: 12px 12px 0;
    overflow: hidden;
    border-radius: 16px;
    background:
        radial-gradient(
            circle at 50% 44%,
            #ffffff 0%,
            #f3f8f8 58%,
            #eaf3f3 100%
        );
}

.gml-home-product-image::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -65px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(16, 155, 146, 0.07);
}

.gml-home-product-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: block;
    object-fit: contain;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.gml-home-product:hover .gml-home-product-image img {
    filter:
        drop-shadow(0 18px 18px rgba(15, 63, 79, 0.16));
    transform: scale(1.075);
}


/* Featured Badge */

.gml-home-product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 0 10px;
    border: 1px solid rgba(16, 155, 146, 0.17);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--gml-product-accent-dark);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    box-shadow:
        0 7px 18px rgba(13, 54, 69, 0.08);
}


/* Arrow */

.gml-home-product-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    border-radius: 12px;
    background: var(--gml-product-white);
    color: var(--gml-product-primary);
    box-shadow:
        0 9px 24px rgba(15, 57, 73, 0.12);
    opacity: 0;
    transform: translate(8px, -8px);
    transition:
        opacity 0.3s ease,
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.gml-home-product:hover .gml-home-product-arrow {
    background: var(--gml-product-accent);
    color: var(--gml-product-white);
    opacity: 1;
    transform: translate(0, 0);
}

.gml-home-product-arrow i {
    font-size: 13px;
}


/* Content */

.gml-home-product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 22px 23px;
}

.gml-home-product-pack {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 7px;
    margin-bottom: 11px;
    color: var(--gml-product-accent-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25px;
}

.gml-home-product-pack i {
    font-size: 12px;
}

.gml-home-product-content h3 {
    display: -webkit-box;
    min-height: 54px;
    margin: 0;
    overflow: hidden;
    color: var(--gml-product-heading);
    font-size: 19px;
    font-weight: 750;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gml-home-product-content p {
    display: -webkit-box;
    margin: 12px 0 20px;
    overflow: hidden;
    color: var(--gml-product-text);
    font-size: 13px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.gml-home-product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--gml-product-border);
    color: var(--gml-product-primary);
    font-size: 12px;
    font-weight: 750;
    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.gml-home-product:hover .gml-home-product-cta {
    gap: 13px;
    color: var(--gml-product-accent-dark);
}


/* Bottom Trust Bar */

.gml-products-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 36px;
    padding: 23px 27px;
    border: 1px solid var(--gml-product-border);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 12px 32px rgba(14, 54, 70, 0.06);
}

.gml-products-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 28px;
}

.gml-products-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gml-product-text);
    font-size: 13px;
    font-weight: 600;
}

.gml-products-trust i {
    color: var(--gml-product-accent);
    font-size: 15px;
}

.gml-products-enquiry {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 9px;
    color: var(--gml-product-primary);
    font-size: 13px;
    font-weight: 750;
    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.gml-products-enquiry:hover {
    gap: 13px;
    color: var(--gml-product-accent-dark);
}


/* Empty State */

.gml-products-empty {
    grid-column: 1 / -1;
    padding: 65px 30px;
    border: 1px dashed var(--gml-product-border);
    border-radius: 22px;
    background: var(--gml-product-white);
    text-align: center;
}

.gml-products-empty > i {
    margin-bottom: 18px;
    color: var(--gml-product-accent);
    font-size: 42px;
}

.gml-products-empty h3 {
    margin: 0;
    color: var(--gml-product-heading);
    font-size: 23px;
}

.gml-products-empty p {
    max-width: 520px;
    margin: 12px auto 22px;
    color: var(--gml-product-text);
    font-size: 14px;
    line-height: 1.65;
}

.gml-products-empty a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 11px;
    background: var(--gml-product-primary);
    color: var(--gml-product-white);
    font-size: 13px;
    font-weight: 700;
}


/* Responsive */

@media only screen and (max-width: 1199px) {

    .gml-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gml-home-product-image {
        height: 275px;
    }

}

@media only screen and (max-width: 991px) {

    .gml-products-home {
        padding: 80px 0;
    }

    .gml-products-head {
        align-items: flex-start;
    }

    .gml-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gml-products-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media only screen and (max-width: 767px) {

    .gml-products-home {
        padding: 65px 0;
    }

    .gml-products-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
        margin-bottom: 30px;
    }

    .gml-products-head h2 {
        font-size: 35px;
    }

    .gml-products-head p {
        font-size: 15px;
    }

    .gml-products-view-all {
        min-height: 45px;
    }

    .gml-home-product-image {
        height: 250px;
    }

}

@media only screen and (max-width: 575px) {

    .gml-products-home {
        padding: 55px 0;
    }

    .gml-products-head h2 {
        font-size: 30px;
    }

    .gml-product-grid {
        grid-template-columns: 1fr;
    }

    .gml-home-product {
        border-radius: 18px;
    }

    .gml-home-product-image {
        height: 300px;
    }

    .gml-home-product:hover {
        transform: translateY(-5px);
    }

    .gml-home-product-arrow {
        opacity: 1;
        transform: none;
    }

    .gml-products-bottom {
        padding: 20px;
    }

    .gml-products-trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

}


/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {

    .gml-home-product,
    .gml-home-product::before,
    .gml-home-product-image img,
    .gml-home-product-arrow,
    .gml-home-product-cta,
    .gml-products-view-all,
    .gml-products-enquiry {
        transition: none !important;
    }

}

/* ==================================================
   GAUTAM MEDILIFE CORPORATE FOOTER
================================================== */

.gml-corporate-footer {
    --gml-footer-navy: #0b334b;
    --gml-footer-navy-dark: #062536;
    --gml-footer-teal: #109b92;
    --gml-footer-teal-light: #75d9d2;
    --gml-footer-white: #ffffff;
    --gml-footer-text: rgba(255, 255, 255, 0.68);
    --gml-footer-border: rgba(255, 255, 255, 0.12);

    position: relative;
    background: var(--gml-footer-navy-dark);
}


/* ==================================================
   TOP CTA
================================================== */

.gml-footer-cta {
    position: relative;
    z-index: 3;
    padding: 0 0 30px;
    background: #ffffff;
}

.gml-footer-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    min-height: 240px;
    padding: 45px 52px;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            #0b334b 0%,
            #0d475c 58%,
            #0f716f 100%
        );
    box-shadow:
        0 30px 75px rgba(7, 40, 56, 0.22);
}

.gml-footer-cta-inner::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(117, 217, 210, 0.22),
            transparent 68%
        );
}

.gml-footer-cta-inner::after {
    content: "";
    position: absolute;
    left: 42%;
    bottom: -160px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.gml-footer-cta-copy,
.gml-footer-cta-actions {
    position: relative;
    z-index: 2;
}

.gml-footer-cta-copy {
    max-width: 750px;
}

.gml-footer-cta-copy > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    color: var(--gml-footer-teal-light);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}

.gml-footer-cta-copy > span i {
    font-size: 16px;
}

.gml-footer-cta-copy h2 {
    max-width: 720px;
    margin: 0;
    color: var(--gml-footer-white);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: -1.3px;
}

.gml-footer-cta-copy p {
    max-width: 680px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.75;
}

.gml-footer-cta-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 14px;
}

.gml-footer-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 23px;
    border-radius: 13px;
    background: var(--gml-footer-white);
    color: var(--gml-footer-navy);
    font-size: 13px;
    font-weight: 750;
    box-shadow:
        0 14px 32px rgba(4, 29, 42, 0.22);
    transition:
        gap 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.gml-footer-primary-btn:hover {
    gap: 14px;
    color: var(--gml-footer-teal);
    box-shadow:
        0 18px 40px rgba(4, 29, 42, 0.3);
    transform: translateY(-3px);
}

.gml-footer-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gml-footer-white);
    backdrop-filter: blur(10px);
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.gml-footer-phone-btn:hover {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.14);
    color: var(--gml-footer-white);
    transform: translateY(-3px);
}

.gml-footer-phone-btn > i {
    color: var(--gml-footer-teal-light);
    font-size: 19px;
}

.gml-footer-phone-btn small,
.gml-footer-phone-btn strong {
    display: block;
}

.gml-footer-phone-btn small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 600;
}

.gml-footer-phone-btn strong {
    color: var(--gml-footer-white);
    font-size: 13px;
    font-weight: 700;
}


/* ==================================================
   MAIN FOOTER
================================================== */

.gml-footer-main {
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(16, 155, 146, 0.13),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #062536 0%,
            #082c3f 55%,
            #073343 100%
        );
}

.gml-footer-main::before {
    content: "";
    position: absolute;
    left: -170px;
    bottom: -210px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.gml-footer-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(280px, 1.5fr)
        minmax(140px, 0.7fr)
        minmax(160px, 0.8fr)
        minmax(250px, 1fr);
    gap: 50px;
    padding-bottom: 55px;
}


/* Brand */

.gml-footer-logo {
    display: inline-flex;
    align-items: center;
    max-width: 235px;
    margin-bottom: 23px;
}

.gml-footer-logo img {
    width: auto;
    max-width: 100%;
    /*height: 68px;*/
    display: block;
    object-fit: contain;
    
}

.gml-footer-brand > p {
    max-width: 420px;
    margin: 0;
    color: var(--gml-footer-text);
    font-size: 14px;
    line-height: 1.8;
}

.gml-footer-brand-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 22px;
}

.gml-footer-brand-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 650;
}

.gml-footer-brand-points i {
    color: var(--gml-footer-teal-light);
    font-size: 13px;
}


/* Social Icons */

.gml-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 27px;
}

.gml-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--gml-footer-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.gml-footer-social a:hover {
    border-color: var(--gml-footer-teal);
    background: var(--gml-footer-teal);
    color: var(--gml-footer-white);
    transform: translateY(-4px);
}


/* Footer Columns */

.gml-footer-column h3,
.gml-footer-contact h3 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 14px;
    color: var(--gml-footer-white);
    font-size: 16px;
    font-weight: 700;
}

.gml-footer-column h3::after,
.gml-footer-contact h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    border-radius: 5px;
    background: var(--gml-footer-teal);
}

.gml-footer-column nav {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.gml-footer-column nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding-left: 0;
    color: var(--gml-footer-text);
    font-size: 13px;
    line-height: 1.5;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.gml-footer-column nav a::before {
    content: "";
    width: 0;
    height: 1px;
    margin-right: 0;
    background: var(--gml-footer-teal-light);
    transition:
        width 0.3s ease,
        margin-right 0.3s ease;
}

.gml-footer-column nav a:hover {
    padding-left: 0;
    color: var(--gml-footer-white);
}

.gml-footer-column nav a:hover::before {
    width: 16px;
    margin-right: 8px;
}


/* Contact */

.gml-footer-contact {
    min-width: 0;
}

.gml-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 17px;
    color: inherit;
}

a.gml-footer-contact-item:hover strong {
    color: var(--gml-footer-teal-light);
}

.gml-footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid var(--gml-footer-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gml-footer-teal-light);
}

.gml-footer-contact-icon i {
    font-size: 16px;
}

.gml-footer-contact-item small,
.gml-footer-contact-item strong {
    display: block;
}

.gml-footer-contact-item small {
    margin: 2px 0 4px;
    color: rgba(255, 255, 255, 0.47);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.gml-footer-contact-item strong {
    overflow-wrap: anywhere;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
    transition: color 0.3s ease;
}


/* ==================================================
   NEWSLETTER
================================================== */

.gml-footer-newsletter {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 27px 30px;
    border-top: 1px solid var(--gml-footer-border);
    border-bottom: 1px solid var(--gml-footer-border);
}

.gml-footer-newsletter-copy {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 520px;
}

.gml-footer-newsletter-copy > i {
    color: var(--gml-footer-teal-light);
    font-size: 28px;
}

.gml-footer-newsletter-copy strong {
    display: block;
    margin-bottom: 5px;
    color: var(--gml-footer-white);
    font-size: 15px;
    font-weight: 700;
}

.gml-footer-newsletter-copy span {
    display: block;
    color: var(--gml-footer-text);
    font-size: 12px;
    line-height: 1.55;
}

.gml-footer-newsletter-form {
    display: flex;
    width: min(100%, 480px);
    padding: 5px;
    border: 1px solid var(--gml-footer-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.gml-footer-newsletter-form input {
    flex: 1;
    min-width: 0;
    height: 46px;
    padding: 0 15px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--gml-footer-white);
    font-size: 13px;
}

.gml-footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.43);
}

.gml-footer-newsletter-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 125px;
    height: 46px;
    padding: 0 17px;
    border: 0;
    border-radius: 10px;
    background: var(--gml-footer-teal);
    color: var(--gml-footer-white);
    font-size: 12px;
    font-weight: 700;
    transition:
        gap 0.3s ease,
        background 0.3s ease;
}

.gml-footer-newsletter-form button:hover {
    gap: 12px;
    background: #0b807a;
}


/* ==================================================
   FOOTER BOTTOM
================================================== */

.gml-footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 27px 0;
}

.gml-footer-copyright span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
}

.gml-footer-copyright small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
}

.gml-footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.gml-footer-legal a {
    position: relative;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.gml-footer-legal a:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -13px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%);
}

.gml-footer-legal a:hover {
    color: var(--gml-footer-teal-light);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media only screen and (max-width: 1199px) {

    .gml-footer-cta-inner {
        padding: 42px;
    }

    .gml-footer-cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .gml-footer-top {
        grid-template-columns:
            minmax(280px, 1.4fr)
            repeat(2, minmax(150px, 0.7fr));
    }

    .gml-footer-contact {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .gml-footer-contact h3 {
        grid-column: 1 / -1;
    }

}

@media only screen and (max-width: 991px) {

    .gml-footer-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .gml-footer-cta-actions {
        flex-direction: row;
    }

    .gml-footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gml-footer-brand {
        grid-column: 1 / -1;
    }

    .gml-footer-contact {
        grid-template-columns: 1fr;
    }

    .gml-footer-newsletter {
        align-items: flex-start;
        flex-direction: column;
    }

    .gml-footer-newsletter-form {
        width: 100%;
        max-width: none;
    }

}

@media only screen and (max-width: 767px) {

    .gml-footer-cta-inner {
        padding: 34px 25px;
        border-radius: 21px;
    }

    .gml-footer-cta-copy h2 {
        font-size: 32px;
    }

    .gml-footer-cta-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .gml-footer-primary-btn,
    .gml-footer-phone-btn {
        width: 100%;
    }

    .gml-footer-main {
        padding-top: 65px;
    }

    .gml-footer-top {
        gap: 40px 25px;
    }

    .gml-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media only screen and (max-width: 575px) {

    .gml-footer-cta {
        padding-bottom: 20px;
    }

    .gml-footer-cta-inner {
        padding: 30px 20px;
    }

    .gml-footer-cta-copy h2 {
        font-size: 28px;
    }

    .gml-footer-cta-copy p {
        font-size: 14px;
    }

    .gml-footer-top {
        grid-template-columns: 1fr;
    }

    .gml-footer-brand,
    .gml-footer-contact {
        grid-column: auto;
    }

    .gml-footer-logo img {
        height: 56px;
    }

    .gml-footer-newsletter {
        padding: 24px 0;
    }

    .gml-footer-newsletter-form {
        display: block;
        padding: 6px;
    }

    .gml-footer-newsletter-form input,
    .gml-footer-newsletter-form button {
        width: 100%;
    }

    .gml-footer-newsletter-form button {
        margin-top: 6px;
    }

    .gml-footer-legal {
        gap: 10px 18px;
    }

}


/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {

    .gml-footer-primary-btn,
    .gml-footer-phone-btn,
    .gml-footer-social a,
    .gml-footer-column nav a,
    .gml-footer-column nav a::before,
    .gml-footer-newsletter-form button {
        transition: none !important;
    }

}
