/* Import Bootstrap CSS */
@import "bootstrap/dist/css/bootstrap.min.css";

/* Import About Us Page Styles */
@import "./about.css";

/* Import Google Fonts (Montserrat, Inter, Playfair Display) */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap");

:root {
    /* Brand Colors */
    --gh-navy: #0b103a;
    --gh-blue: #0a6eff;
    --gh-green: #2e7032;
    --gh-orange: #ff8a00;
    --gh-light: #f5f7fa;
    --gh-dark: #1d2430;
    --gh-white: #ffffff;
    --gh-border: #e2e8f0;
    --gh-muted: #64748b;

    /* Font Families */
    --gh-font-heading: "Montserrat", sans-serif;
    --gh-font-body: "Inter", sans-serif;

    /* Border Radius */
    --gh-radius-card: 16px;
    --gh-radius-btn: 8px;
    --gh-radius-sm: 6px;

    /* Elevation / Shadows */
    --gh-shadow-card: 0 8px 24px rgba(10, 25, 60, 0.08);
    --gh-shadow-hover: 0 16px 40px rgba(10, 25, 60, 0.12);
    --gh-shadow-header: 0 2px 12px rgba(11, 16, 58, 0.06);

    /* Transition */
    --gh-transition: all 0.2s ease-in-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--gh-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gh-dark);
    background-color: var(--gh-light);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--gh-font-heading);
    font-weight: 700;
    color: var(--gh-navy);
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--gh-dark);
}

a {
    color: var(--gh-blue);
    text-decoration: none;
    transition: var(--gh-transition);
}

a:hover {
    color: var(--gh-navy);
}

.btn-gh {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--gh-font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    padding: 0.75rem 1.6rem;
    border-radius: var(--gh-radius-btn);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: var(--gh-transition);
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-gh-primary {
    background-color: var(--gh-navy);
    color: var(--gh-white);
    border-color: var(--gh-navy);
}

.btn-gh-primary:hover {
    background-color: #2e7d32;
    border-color: #2e7d32;
    color: var(--gh-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.35);
}

.btn-gh-blue {
    background-color: var(--gh-blue);
    color: var(--gh-white);
    border-color: var(--gh-blue);
}

.btn-gh-blue:hover {
    background-color: var(--gh-navy);
    border-color: var(--gh-navy);
    color: var(--gh-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(11, 16, 58, 0.25);
}

.btn-gh-green {
    background-color: var(--gh-green);
    color: var(--gh-white);
    border-color: var(--gh-green);
}

.btn-gh-green:hover {
    background-color: #235927;
    border-color: #235927;
    color: var(--gh-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(46, 112, 50, 0.25);
}

.btn-gh-orange {
    background-color: var(--gh-orange);
    color: var(--gh-white);
    border-color: var(--gh-orange);
}

.btn-gh-orange:hover {
    background-color: #e67c00;
    border-color: #e67c00;
    color: var(--gh-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255, 138, 0, 0.25);
}

.btn-gh-secondary,
.btn-gh-outline {
    background-color: var(--gh-white);
    color: var(--gh-navy);
    border-color: var(--gh-border);
}

.btn-gh-secondary:hover,
.btn-gh-outline:hover {
    background-color: var(--gh-light);
    border-color: var(--gh-navy);
    color: var(--gh-navy);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 16, 58, 0.08);
}

.btn-gh-sm {
    padding: 15px;
    font-size: 14px;
    border-radius: var(--gh-radius-sm);
}

.gh-card {
    background-color: var(--gh-white);
    border-radius: var(--gh-radius-card);
    border: 1px solid var(--gh-border);
    box-shadow: var(--gh-shadow-card);
    padding: 1.5rem;
    transition: var(--gh-transition);
}

.gh-card:hover {
    box-shadow: var(--gh-shadow-hover);
    transform: translateY(-3px);
}

.gh-container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

@media (min-width: 1400px) {
    .gh-container {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 767.98px) {
    .gh-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.bg-gh-navy {
    background-color: var(--gh-navy) !important;
    color: var(--gh-white) !important;
}

.bg-gh-blue {
    background-color: var(--gh-blue) !important;
    color: var(--gh-white) !important;
}

.bg-gh-green {
    background-color: var(--gh-green) !important;
    color: var(--gh-white) !important;
}

.bg-gh-orange {
    background-color: var(--gh-orange) !important;
    color: var(--gh-white) !important;
}

.bg-gh-light {
    background-color: var(--gh-light) !important;
}

.bg-gh-white {
    background-color: var(--gh-white) !important;
}

.text-gh-navy {
    color: var(--gh-navy) !important;
}

.text-gh-blue {
    color: var(--gh-blue) !important;
}

.text-gh-green {
    color: var(--gh-green) !important;
}

.text-gh-orange {
    color: var(--gh-orange) !important;
}

.text-gh-muted {
    color: var(--gh-muted) !important;
}

.gh-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: var(--gh-white);
}

.gh-top-bar {
    padding: 0.45rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gh-top-features {
    gap: 0.75rem;
}

.gh-top-item {
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.gh-top-icon {
    width: 13px;
    height: 13px;
    color: var(--gh-green);
}

.gh-top-divider {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.65rem;
}

.gh-top-social .gh-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--gh-transition);
}

.gh-top-social .gh-social-link:hover {
    color: var(--gh-white);
    transform: scale(1.15);
}

.gh-navbar {
    border-bottom: 1px solid var(--gh-border);
    box-shadow: var(--gh-shadow-header);
    background-color: var(--gh-white);
    height: 94px;
}

.gh-navbar-logo {
    height: 42px;
    width: auto;
    max-height: 52px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}

.navbar-brand:hover .gh-navbar-logo {
    transform: scale(1.02);
}

.gh-nav-link {
    font-family: var(--gh-font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--gh-navy) !important;
    padding: 0.5rem 0.75rem !important;
    position: relative;
    transition: var(--gh-transition);
}

.gh-nav-link:hover {
    color: #2e7032 !important;
}

.gh-nav-link.active {
    color: var(--gh-blue) !important;
}

.gh-nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0.75rem;
    right: 0.75rem;
    height: 2.5px;
    background-color: var(--gh-blue);
    border-radius: 2px;
}

.gh-dropdown .dropdown-toggle::after {
    display: none !important;
}

.gh-dropdown-arrow {
    transition: transform 0.2s ease;
    color: #64748b;
}

.gh-dropdown:hover .gh-dropdown-arrow,
.gh-dropdown.show .gh-dropdown-arrow {
    transform: rotate(180deg);
    color: var(--gh-navy);
}

.gh-dropdown-menu {
    border-radius: 12px;
    padding: 0.65rem;
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    box-shadow: 0 12px 36px rgba(11, 16, 58, 0.12) !important;
    margin-top: 0.5rem;
}

@media (min-width: 992px) {
    .gh-dropdown:hover > .gh-dropdown-menu {
        display: block;
        margin-top: 0.25rem;
        animation: ghDropdownFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    }
}

@keyframes ghDropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gh-dropdown-item {
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.gh-dropdown-item:hover {
    background-color: #f0fdf4;
}

.gh-dropdown-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.gh-dropdown-title {
    font-family: var(--gh-font-heading);
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--gh-navy);
    line-height: 1.25;
    transition: color 0.2s ease;
}

.gh-dropdown-item:hover .gh-dropdown-title {
    color: #2e7d32;
}

.gh-dropdown-subtitle {
    font-family: var(--gh-font-body);
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.3;
}

.gh-dropdown-viewall {
    font-family: var(--gh-font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    color: #2e7d32 !important;
    padding: 0.5rem 0.85rem;
    letter-spacing: 0.3px;
}

.gh-dropdown-viewall:hover {
    background-color: #ebf6ec !important;
    color: #235927 !important;
}

.gh-hero {
    min-height: 560px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4.5rem 0;
}

.gh-hero-bg-carousel {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.6) 12%,
        black 25%,
        black 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.6) 12%,
        black 25%,
        black 100%
    );
}

.gh-hero-bg-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.gh-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.gh-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0) 25%,
        transparent 100%
    );
    pointer-events: none;
}

.gh-hero-foreground-container {
    max-width: 1240px !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    z-index: 5;
}

.gh-hero-content-row {
    min-height: 420px;
}

/* Hero Content */
.gh-hero-col-text {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Hero Typography */
.gh-hero-title {
    font-family: var(--gh-font-heading);
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.gh-hero-description {
    font-family: var(--gh-font-body);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    color: #334155;
    max-width: 520px;
    margin-bottom: 2rem;
}

/* Hero Feature Pills */
.gh-hero-features {
    gap: 0.85rem;
    margin-bottom: 2.25rem;
}

.gh-feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.55rem 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 4px 12px rgba(11, 16, 58, 0.04);
    transition: var(--gh-transition);
}

.gh-feature-item:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 16, 58, 0.08);
}

.gh-feature-icon {
    width: 22px;
    height: 22px;
    color: var(--gh-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gh-feature-icon svg {
    width: 100%;
    height: 100%;
}

.gh-feature-label {
    display: flex;
    flex-direction: column;
    font-family: var(--gh-font-heading);
    font-weight: 700;
    font-size: 0.65rem;
    line-height: 1.15;
    letter-spacing: 0.5px;
    color: var(--gh-navy);
}

/* Hero Buttons */
.gh-hero-actions {
    gap: 1rem;
}

/* Hero Carousel Controls & Indicators */
.gh-carousel-btn {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    z-index: 10;
    transition: var(--gh-transition);
}

.gh-carousel-btn.carousel-control-prev {
    left: 15px;
}

.gh-carousel-btn.carousel-control-next {
    right: 15px;
}

.gh-carousel-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border: 1px solid var(--gh-border);
    border-radius: 50%;
    color: var(--gh-navy);
    box-shadow: 0 4px 14px rgba(11, 16, 58, 0.12);
    transition: var(--gh-transition);
}

.gh-carousel-btn:hover .gh-carousel-btn-icon {
    background-color: var(--gh-navy);
    color: var(--gh-white);
    transform: scale(1.08);
}

.gh-carousel-indicators {
    bottom: 18px;
    gap: 0.5rem;
    z-index: 10;
}

.gh-carousel-indicators button {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background-color: var(--gh-navy);
    opacity: 0.25;
    border: 0;
    transition: all 0.3s ease;
}

.gh-carousel-indicators button.active {
    width: 44px;
    background-color: var(--gh-blue);
    opacity: 1;
}

.gh-about-section {
    background-color: var(--gh-white);
    padding: 3.5rem 0;
    position: relative;
    z-index: 2;
}

.gh-about-row {
    align-items: center;
}

.gh-about-img-col {
    display: flex;
    justify-content: center;
}

.gh-about-img-wrap {
    width: 100%;
    max-width: 440px;
    height: 510px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(11, 16, 58, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    background-color: #f8fafc;
}

.gh-about-img-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(11, 16, 58, 0.12);
}

.gh-about-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

.gh-about-content {
    padding-left: 0;
}

@media (min-width: 992px) {
    .gh-about-content {
        padding-left: 1.25rem;
    }
}

@media (min-width: 1200px) {
    .gh-about-content {
        padding-left: 2rem;
    }
}

/* Eyebrow Label with Green Accent Bar */
.gh-about-eyebrow-wrap {
    margin-bottom: 0.75rem;
}

.gh-about-eyebrow {
    display: block;
    font-family: var(--gh-font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--gh-green);
    text-transform: uppercase;
}

.gh-about-eyebrow-bar {
    width: 34px;
    height: 3px;
    background-color: var(--gh-green);
    border-radius: 2px;
    margin-top: 5px;
}

/* Main Serif Heading */
.gh-about-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--gh-navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
}

/* Intro Paragraph */
.gh-about-intro {
    font-family: var(--gh-font-body);
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.55;
    color: #475569;
    max-width: 600px;
    margin-bottom: 1.15rem;
}

/* 5 Value Points */
.gh-about-points {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.35rem;
}

.gh-about-point-item {
    display: flex;
    align-items: center;
    padding: 0.48rem 0;
    border-top: 1px solid #e2e8f0;
}

.gh-about-point-item:last-child {
    border-bottom: 1px solid #e2e8f0;
}

.gh-about-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gh-green);
    margin-right: 0.75rem;
    flex-shrink: 0;
    display: inline-block;
}

.gh-about-point-text {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    font-family: var(--gh-font-body);
    font-size: 0.84rem;
    line-height: 1.4;
}

.gh-about-point-title {
    font-family: var(--gh-font-body);
    font-weight: 700;
    color: var(--gh-navy);
    white-space: nowrap;
}

.gh-about-point-sep {
    color: #cbd5e1;
    margin: 0 0.5rem;
    font-weight: 300;
}

.gh-about-point-desc {
    color: #475569;
    font-weight: 400;
}

/* Learn More Button */
.btn-gh-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--gh-navy);
    color: var(--gh-white);
    font-family: var(--gh-font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.62rem 1.45rem;
    border-radius: 6px;
    border: 2px solid var(--gh-navy);
    cursor: pointer;
    text-transform: none;
    transition: var(--gh-transition);
}

.btn-gh-about:hover {
    background-color: #2e7d32;
    border-color: #2e7d32;
    color: var(--gh-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.35);
}

.btn-gh-about .btn-gh-arrow {
    font-size: 0.95rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.btn-gh-about:hover .btn-gh-arrow {
    transform: translateX(3px);
}

@media (max-width: 991.98px) {
    .gh-about-section {
        padding: 3rem 0;
    }

    .gh-about-img-wrap {
        max-width: 100%;
        height: 380px;
    }

    .gh-about-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .gh-about-section {
        padding: 2.25rem 0;
    }

    .gh-about-img-wrap {
        height: 320px;
    }

    .gh-about-title {
        font-size: 1.65rem;
    }

    .gh-about-point-text {
        font-size: 0.82rem;
    }
}

.gh-trust-strip {
    background-color: #021947;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    position: relative;
    z-index: 10;
    width: 100%;
}

.gh-trust-row {
    align-items: center;
}

.gh-trust-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
}

.gh-trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.2rem 0;
    transition: transform 0.25s ease;
}

.gh-trust-item:hover {
    transform: translateY(-2px);
}

.gh-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gh-trust-icon {
    display: block;
    width: 32px;
    height: 32px;
    font-size: 34px;
    color: #fff;
}

.gh-trust-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gh-trust-content {
    display: flex;
    flex-direction: column;
}

.gh-trust-title {
    font-family: var(--gh-font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gh-trust-desc {
    font-family: var(--gh-font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.25;
    margin-top: 3px;
}

.gh-trust-divider {
    width: 1px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.gh-product-portfolio {
    background-color: var(--gh-white);
    border-bottom: 1px solid var(--gh-border);
    padding: 4.5rem 0;
}

.gh-portfolio-header {
    margin-bottom: 2.75rem;
}

.gh-portfolio-eyebrow {
    display: block;
    font-family: var(--gh-font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--gh-green);
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.gh-portfolio-title {
    font-family:
        Georgia, "Playfair Display", "Times New Roman", var(--gh-font-heading),
        serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gh-navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.gh-portfolio-underline {
    position: relative;
    display: inline-block;
}

.gh-portfolio-underline::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -6px;
    height: 4px;
    background-color: #2e7d32;
    border-radius: 4px;
}

.gh-portfolio-row {
    margin-left: -0.45rem;
    margin-right: -0.45rem;
}

.gh-portfolio-col {
    padding-left: 0.45rem;
    padding-right: 0.45rem;
}

@media (min-width: 992px) {
    .gh-portfolio-row {
        flex-wrap: nowrap !important;
    }

    .gh-portfolio-col {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        width: 20% !important;
    }
}

/* Portfolio Card */
.gh-portfolio-card {
    background-color: var(--gh-white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(10, 29, 58, 0.05);
    padding: 0.85rem 0.85rem 1.15rem 0.85rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.gh-portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(10, 29, 58, 0.12);
    border-color: rgba(10, 110, 255, 0.25);
}

/* Image Container */
.gh-portfolio-card-image {
    width: 100%;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.65rem;
    background-color: transparent;
    padding: 0;
    overflow: hidden;
}

.gh-portfolio-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.gh-portfolio-card:hover .gh-portfolio-img {
    transform: scale(1.05);
}

/* Card Content */
.gh-portfolio-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.gh-portfolio-card-title {
    font-family: var(--gh-font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--gh-navy);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    min-height: 2.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0.35rem;
}

.gh-portfolio-card-desc {
    font-family: var(--gh-font-body);
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    line-height: 1.4;
    text-align: center;
    min-height: 2.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

/* Button */
.btn-gh-portfolio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    background-color: var(--gh-navy);
    color: var(--gh-white);
    font-family: var(--gh-font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 0.55rem 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--gh-navy);
    cursor: pointer;
    text-transform: none;
    transition: var(--gh-transition);
    margin-top: auto;
}

.btn-gh-portfolio:hover {
    background-color: #2e7d32;
    border-color: #2e7d32;
    color: var(--gh-white);
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.35);
}

.btn-gh-portfolio .btn-gh-arrow {
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.btn-gh-portfolio:hover .btn-gh-arrow {
    transform: translateX(3px);
}

.gh-packaging-section {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 3.5rem 0 4rem 0;
    position: relative;
}

.gh-packaging-header {
    margin-bottom: 2rem;
}

.gh-packaging-title {
    font-family:
        Georgia, "Playfair Display", "Times New Roman", var(--gh-font-heading),
        serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--gh-navy);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 0.35rem;
}

.gh-packaging-subtitle {
    font-family: var(--gh-font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gh-text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.45;
}

.gh-packaging-row {
    margin-left: -0.45rem;
    margin-right: -0.45rem;
}

.gh-packaging-col {
    padding-left: 0.45rem;
    padding-right: 0.45rem;
}

@media (min-width: 992px) {
    .gh-packaging-row {
        flex-wrap: nowrap !important;
    }
    .gh-packaging-col {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        width: 20% !important;
    }
}

/* Packaging Card */
.gh-packaging-card {
    background-color: var(--gh-white);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(10, 29, 58, 0.04);
    padding: 0.85rem 0.65rem 1.15rem 0.65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gh-packaging-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(10, 29, 58, 0.09);
    border-color: rgba(10, 110, 255, 0.25);
}

.gh-packaging-card-image {
    width: 100%;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.65rem;
    background-color: transparent;
    padding: 0;
}

.gh-packaging-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.gh-packaging-card:hover .gh-packaging-img {
    transform: scale(1.04);
}

.gh-packaging-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 0.65rem;
    min-height: 2.85rem;
    justify-content: flex-start;
}

.gh-packaging-card-title {
    font-family: var(--gh-font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gh-navy);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 0.2rem;
}

.gh-packaging-card-desc {
    font-family: var(--gh-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gh-navy);
    line-height: 1.25;
    margin-bottom: 0;
}

/* Centered CTA Section */
.gh-packaging-cta-wrap {
    margin-top: 2.25rem;
    text-align: center;
}
.btn-gh a {
    color: #fff;
}
.btn-gh-green-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background-color: #2e7032;
    color: #ffffff;
    font-family: var(--gh-font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    border: 1px solid #2e7032;
    box-shadow: 0 3px 10px rgba(46, 112, 50, 0.25);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-gh-green-cta:hover {
    background-color: #2e7d32;
    border-color: #2e7d32;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(46, 125, 50, 0.35);
    transform: translateY(-2px);
}

.btn-gh-green-cta .btn-gh-arrow {
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.btn-gh-green-cta:hover .btn-gh-arrow {
    transform: translateX(4px);
}
.fa-circle-check {
    color: #2e7032;
    font-size: 18px;
}

.gh-promo-section {
    background-color: var(--gh-light);
    border-top: 1px solid #e2e8f0;
}

.gh-promo-card {
    position: relative;
    background-color: var(--gh-white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(11, 16, 58, 0.05);
    height: 320px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem 1.15rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gh-promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(11, 16, 58, 0.1);
    border-color: rgba(10, 110, 255, 0.3);
}

.gh-promo-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    pointer-events: none;
}

.gh-promo-text-wrap {
    max-width: 65%;
}

.gh-promo-title {
    font-family: var(--gh-font-heading);
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--gh-navy);
    line-height: 1.15;
    margin-bottom: 0.15rem;
    letter-spacing: 0.2px;
}

.gh-promo-title sup {
    font-size: 0.65em;
    font-weight: 700;
    top: -0.4em;
}

.gh-promo-subtitle {
    font-family: var(--gh-font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--gh-navy);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.55rem;
}

.gh-promo-desc {
    font-family: var(--gh-font-body);
    font-size: 0.74rem;
    font-weight: 600;
    color: #475569;
    line-height: 1.35;
    margin-bottom: 0;
}

.gh-promo-btn-wrap {
    margin-top: auto;
    pointer-events: auto;
}

.btn-gh-promo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background-color: var(--gh-white);
    color: var(--gh-navy);
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: var(--gh-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.3px;
    padding: 0.45rem 0.85rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-gh-promo:hover {
    background-color: #2e7d32;
    color: var(--gh-white);
    border-color: #2e7d32;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    transform: translateY(-1px);
}

.btn-gh-promo .gh-promo-arrow {
    font-size: 0.85rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.btn-gh-promo:hover .gh-promo-arrow {
    transform: translateX(3px);
}
.btn-gh-promo span {
    color: #000;
}
.btn-gh-portfolio span {
    color: #fff;
}
.gh-promo-img-wrap {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 68%;
    height: 82%;
    pointer-events: none;
    z-index: 1;
}

.gh-promo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    transition: transform 0.35s ease;
}

.gh-promo-card:hover .gh-promo-img {
    transform: scale(1.04);
}

.gh-promo-card-ignite {
    background-color: var(--gh-white);
}

.gh-promo-card-ignite .gh-promo-img-wrap {
    top: 0;
    bottom: 0;
    right: -10px;
    width: 87%;
    height: 112%;
}

.gh-promo-card-ignite .gh-promo-img {
    object-fit: contain;
    object-position: right center;
}

.gh-promo-card-royal {
    background-color: var(--gh-white);
}

.gh-promo-card-royal .gh-promo-img-wrap {
    top: 0;
    bottom: 0;
    right: -8px;
    width: 82%;
    /* height: 100%; */
}

.gh-promo-card-royal .gh-promo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
}

.gh-promo-card-painex {
    background-color: var(--gh-white);
}

.gh-promo-card-painex .gh-promo-img-wrap {
    top: 0;
    bottom: 0;
    right: -8px;
    width: 84%;
    /* height: 100%; */
}

.gh-promo-card-painex .gh-promo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
}

.gh-promo-card-mfg {
    background-color: var(--gh-white);
}

.gh-promo-card-mfg .gh-promo-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    /* height: 100%; */
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
}

.gh-promo-card-mfg .gh-promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.gh-industries-section {
    background-color: var(--gh-white);
    padding: 4.75rem 0;
    position: relative;
    z-index: 2;
}

.gh-industries-header {
    margin-bottom: 2.75rem;
}

.gh-industries-title {
    font-family: var(--gh-font-heading);
    font-size: 2.45rem;
    font-weight: 800;
    color: var(--gh-green);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.gh-industries-divider {
    width: 38px;
    height: 3.5px;
    background-color: var(--gh-green);
    border-radius: 2px;
    margin: 0.75rem auto 1.25rem;
}

.gh-industries-intro {
    font-family: var(--gh-font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #475569;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

/* 5-Card Row on Desktop */
.gh-industries-row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.gh-industries-col {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

@media (min-width: 992px) {
    .gh-industries-row {
        flex-wrap: nowrap !important;
    }

    .gh-industries-col {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        width: 20% !important;
    }
}

/* Industry Card */
.gh-industry-card {
    background-color: var(--gh-white);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 2.25rem 1.15rem 1.85rem 1.15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(11, 16, 58, 0.03);
}

.gh-industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(11, 16, 58, 0.08);
    border-color: rgba(46, 112, 50, 0.35);
}

.gh-industry-img-wrap {
    width: 100%;
    height: 165px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background-color: #ffffff;
    margin-bottom: 1.15rem;
}

.gh-industry-img {
    max-height: 155px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    filter: none;
    transition: transform 0.3s ease;
}

.gh-industry-card:hover .gh-industry-img {
    transform: scale(1.05);
}

.gh-industry-card-title {
    font-family: var(--gh-font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--gh-navy);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 1.25;
}

.gh-industry-card-divider {
    width: 28px;
    height: 2px;
    background-color: var(--gh-green);
    border-radius: 2px;
    margin: 0.8rem auto 0.85rem;
}

.gh-industry-card-desc {
    font-family: var(--gh-font-body);
    font-size: 0.84rem;
    font-weight: 400;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Centered CTA Button */
.gh-industries-cta-wrap {
    margin-top: 2.5rem;
}

.btn-gh-industry-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background-color: var(--gh-navy);
    color: var(--gh-white);
    font-family: var(--gh-font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    border: 2px solid var(--gh-navy);
    cursor: pointer;
    text-transform: none;
    text-decoration: none;
    transition: var(--gh-transition);
}

.btn-gh-industry-cta:hover {
    background-color: #2e7d32;
    border-color: #2e7d32;
    color: var(--gh-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(46, 125, 50, 0.35);
}

.btn-gh-industry-cta .btn-gh-arrow {
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.btn-gh-industry-cta:hover .btn-gh-arrow {
    transform: translateX(3px);
}

@media (max-width: 991.98px) {
    .unique_breadcrumb_banner {
        padding: 20px !important;
    }
    .gh-industries-section {
        padding: 3.5rem 0;
    }

    .gh-industries-title {
        font-size: 2.1rem;
    }

    .gh-industry-card {
        padding: 1.75rem 1rem 1.5rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .gh-industries-section {
        padding: 2.75rem 0;
    }

    .gh-industries-title {
        font-size: 1.75rem;
    }

    .gh-industries-intro {
        font-size: 0.92rem;
    }

    .gh-industry-card-title {
        font-size: 0.9rem;
    }

    .gh-industry-card-desc {
        font-size: 0.82rem;
    }
}

.gh-quality-trust-section {
    background-color: var(--gh-white);
    border-top: 1px solid #e2e8f0;
    padding: 3.5rem 0;
}

.gh-quality-col {
    border-right: 1px solid #e2e8f0;
}

.gh-quality-title {
    font-family: var(--gh-font-heading);
    font-size: calc(1.15rem + 8px);
    font-weight: 800;
    color: var(--gh-green);
    letter-spacing: -0.01em;
    margin-bottom: 0.35rem;
}

.gh-quality-desc {
    font-family: var(--gh-font-body);
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    line-height: 1.45;
    margin-bottom: 1.25rem;
}

.gh-quality-badges-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.35rem;
}

.gh-quality-badge-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gh-quality-badge-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.45rem;
    color: #0066cc;
}

.gh-google-icon {
    font-size: 32px !important;
    font-variation-settings:
        "FILL" 0,
        "wght" 300,
        "GRAD" 0,
        "opsz" 32;
    color: #0066cc;
    user-select: none;
}

.gh-quality-badge-label {
    font-family: var(--gh-font-heading);
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--gh-navy);
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.gh-quality-footnote {
    font-family: var(--gh-font-body);
    font-size: 0.68rem;
    color: #94a3b8;
    font-style: italic;
    margin-top: 1.25rem;
}

.gh-partnership-title {
    font-family: var(--gh-font-heading);
    font-size: calc(1.15rem + 8px);
    font-weight: 800;
    color: var(--gh-navy);
    letter-spacing: -0.01em;
    margin-bottom: 0.35rem;
}

.gh-partnership-desc {
    font-family: var(--gh-font-body);
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    line-height: 1.45;
    margin-bottom: 0.85rem;
}

.gh-partnership-list {
    margin-bottom: 1.15rem;
}

.gh-partnership-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--gh-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--gh-navy);
    margin-bottom: 0.4rem;
}

.gh-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gh-green);
    flex-shrink: 0;
}

.btn-gh-partnership {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background-color: var(--gh-white);
    color: var(--gh-navy);
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: var(--gh-font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 0.42rem 0.85rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-gh-partnership:hover {
    background-color: #2e7d32;
    color: var(--gh-white);
    border-color: #2e7d32;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    transform: translateY(-1px);
}

.btn-gh-partnership .btn-gh-arrow {
    font-size: 0.85rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.btn-gh-partnership:hover .btn-gh-arrow {
    transform: translateX(3px);
}

.gh-handshake-img-wrap {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(11, 16, 58, 0.08);
    display: flex;
}

.gh-handshake-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .gh-quality-col {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 2rem;
    }
    .gh-partnership-col {
        padding-top: 1rem;
    }
    .gh-quality-badges-row {
        flex-wrap: wrap;
        gap: 1rem 0.5rem;
    }
    .gh-quality-badge-item {
        flex: 0 0 30%;
    }
}

.gh-modal-content {
    border-radius: 16px !important;
    overflow: hidden;
    background-color: #ffffff;
}

.gh-modal-header {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0 !important;
}

.gh-modal-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #ebf6ec;
    color: #2e7d32;
    flex-shrink: 0;
}

.gh-modal-badge {
    display: inline-block;
    font-family: var(--gh-font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #2e7d32;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.gh-modal-title {
    font-family: var(--gh-font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gh-navy);
    line-height: 1.2;
    margin-bottom: 0;
}

.gh-modal-subtitle {
    font-family: var(--gh-font-body);
    font-size: 0.85rem;
    line-height: 1.5;
}

.gh-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background-size: 0.8rem;
}

.gh-form-label {
    font-family: var(--gh-font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gh-navy);
    margin-bottom: 0.35rem;
    letter-spacing: 0.2px;
}

.gh-input-group {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    transition: all 0.2s ease;
}

.gh-input-group:focus-within {
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

.gh-input-icon {
    background-color: #f8fafc;
    border: none;
    color: #64748b;
    padding-left: 0.85rem;
    padding-right: 0.75rem;
}

.gh-input-group:focus-within .gh-input-icon {
    color: #2e7d32;
    background-color: #f0fdf4;
}

.gh-form-control {
    border: none;
    font-family: var(--gh-font-body);
    font-size: 0.88rem;
    padding: 0.65rem 0.85rem;
    color: #1e293b;
}

.gh-form-control:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

.gh-form-control::placeholder {
    color: #94a3b8;
    font-size: 0.82rem;
}

.gh-modal-footer {
    border-top: 1px solid #e2e8f0 !important;
}

.gh-footer {
    background-color: var(--gh-navy);
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--gh-font-body);
}

.gh-footer-logo {
    height: 48px;
    width: auto;
    max-height: 56px;
    object-fit: contain;
    display: block;
}

.gh-footer-tagline {
    font-family: var(--gh-font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.gh-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    text-decoration: none;
}

.gh-footer-social-link:hover {
    background-color: var(--gh-green);
    color: var(--gh-white);
    transform: translateY(-2px);
}

.gh-footer-col-title {
    font-family: var(--gh-font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gh-white);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.gh-footer-links li {
    margin-bottom: 0.5rem;
}

.gh-footer-link {
    font-family: var(--gh-font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.gh-footer-link:hover {
    color: var(--gh-white);
    padding-left: 2px;
}

.gh-footer-link-highlight {
    color: #60a5fa;
    font-weight: 600;
}

.gh-footer-link-highlight:hover {
    color: #93c5fd;
}

.gh-footer-contact li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.55rem;
}

.gh-contact-icon {
    color: var(--gh-green);
}

.gh-footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
}

.gh-footer-copyright {
    color: #fff;
    font-size: 15px;
}
.gh-footer-copyright a {
    color: #2e7032;
}

.gh-footer-copyright a:hover {
    color: #fff;
}
.gh-footer-legal-link {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.gh-footer-legal-link:hover {
    color: var(--gh-white);
}

.gh-footer-legal-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
}

@media (min-width: 992px) {
    .gh-footer-col {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        padding-right: 1.5rem;
    }

    .gh-footer-col-last {
        border-right: none !important;
        padding-right: 0;
    }
}

@media (max-width: 991.98px) {
    .gh-navbar .gh-container {
        align-items: flex-start !important;
        flex-wrap: wrap !important;
    }

    .gh-navbar .navbar-brand {
        height: 42px !important;
        display: inline-flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .gh-navbar .navbar-toggler {
        height: 42px !important;
        display: inline-flex !important;
        align-items: center !important;
        margin: 0 !important;
    }

    .gh-top-bar {
        font-size: 0.7rem;
    }

    .gh-top-features {
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }

    .gh-top-divider {
        display: none;
    }

    .gh-navbar .navbar-collapse {
        background-color: var(--gh-white);
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-top: 1px solid var(--gh-border);
        margin-top: 0.5rem;
        width: 100% !important;
        flex-basis: 100% !important;
        order: 3 !important;
    }

    .gh-nav-link {
        padding: 0.65rem 0 !important;
        border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    }

    .gh-nav-link.active::after {
        display: none;
    }

    .gh-nav-link.active {
        color: var(--gh-blue) !important;
        font-weight: 800;
    }

    .gh-hero {
        padding: 3.5rem 0;
        min-height: 500px;
    }

    .gh-hero-bg-carousel {
        width: 100%;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .gh-hero-bg-overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.88) 60%,
            rgba(255, 255, 255, 0.6) 100%
        );
    }

    .gh-hero-title {
        font-size: 2.35rem;
    }

    .gh-carousel-btn {
        display: none;
    }

    .gh-trust-strip {
        padding: 1rem 0;
    }

    .gh-trust-item {
        gap: 0.65rem;
    }

    .gh-trust-icon {
        width: 34px;
        height: 34px;
    }

    .gh-trust-icon svg {
        width: 17px;
        height: 17px;
    }

    .gh-trust-title {
        font-size: 0.75rem;
    }

    .gh-trust-desc {
        font-size: 0.65rem;
    }

    .gh-portfolio-title {
        font-size: 2.15rem;
    }

    .gh-portfolio-card {
        padding: 0.85rem 0.85rem 1rem 0.85rem;
    }

    .gh-portfolio-card-image {
        height: 165px;
    }
}

@media (max-width: 575.98px) {
    .gh-top-features {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 2px;
    }

    .gh-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .gh-brand-logo {
        height: 32px;
    }

    .gh-hero {
        padding: 2.5rem 0 3rem 0;
        min-height: auto;
    }

    .gh-hero-bg-overlay {
        background: rgba(255, 255, 255, 0.92);
    }

    .gh-hero-title {
        font-size: 2rem;
    }

    .gh-hero-features {
        gap: 0.6rem;
    }

    .gh-feature-item {
        width: calc(50% - 0.3rem);
        padding: 0.45rem 0.6rem;
    }

    .gh-hero-actions .btn-gh {
        width: 100%;
    }

    .gh-trust-strip {
        padding: 0.85rem 0;
    }

    .gh-trust-title {
        font-size: 0.72rem;
    }

    .gh-trust-desc {
        font-size: 0.62rem;
    }

    .gh-portfolio-title {
        font-size: 1.75rem;
    }

    .gh-portfolio-card-image {
        height: 200px;
    }
}

@media (min-width: 1200px) {
    .gh-container {
        max-width: 1320px;
        margin-left: auto;
        margin-right: auto;
    }

    .gh-hero-title {
        font-size: 3.4rem;
        line-height: 1.15;
    }

    .gh-about-img-wrap {
        height: 520px;
    }

    .gh-portfolio-card-image {
        height: 220px;
    }

    .gh-packaging-card-image {
        height: 200px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .gh-container {
        max-width: 960px;
    }

    .gh-hero-title {
        font-size: 2.8rem;
    }

    .gh-hero-description {
        font-size: 1.05rem;
    }

    .gh-about-img-wrap {
        height: 440px;
    }

    .gh-portfolio-card-image {
        height: 180px;
    }

    .gh-packaging-card-image {
        height: 170px;
    }

    .gh-promo-title {
        font-size: 1.35rem;
    }

    .gh-trust-title {
        font-size: 0.72rem;
    }

    .gh-trust-desc {
        font-size: 0.65rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .gh-container {
        max-width: 720px;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    /* Top Bar & Header */
    .gh-top-bar {
        padding: 0.5rem 0;
    }

    .gh-top-features {
        gap: 0.75rem;
        justify-content: center;
    }

    .gh-top-divider {
        display: inline-block;
        opacity: 0.5;
    }

    .gh-hero {
        padding: 4rem 0 3.5rem 0;
        min-height: auto;
    }

    .gh-hero-bg-carousel {
        width: 100%;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .gh-hero-bg-overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.9) 65%,
            rgba(255, 255, 255, 0.75) 100%
        );
    }

    .gh-hero-title {
        font-size: 2.6rem;
    }

    .gh-hero-features {
        gap: 0.75rem;
    }

    .gh-feature-item {
        padding: 0.6rem 0.85rem;
    }

    /* Trust Strip */
    .gh-trust-strip {
        padding: 1.25rem 0;
    }

    .gh-trust-row {
        gap: 1rem 0;
    }

    .gh-trust-col {
        margin-bottom: 0.5rem;
    }

    /* About Us */
    .gh-about-img-wrap {
        height: 380px;
        width: 100%;
    }

    .gh-about-title {
        font-size: 2.1rem;
    }

    /* Portfolio Cards */
    .gh-portfolio-card-image {
        height: 210px;
    }

    .gh-portfolio-title {
        font-size: 2.2rem;
    }

    /* Packaging Cards */
    .gh-packaging-card-image {
        height: 190px;
    }

    /* Promo Section */
    .gh-promo-card {
        padding: 1.25rem;
        min-height: 360px;
    }

    .gh-promo-img {
        max-height: 170px;
    }

    /* Industries We Serve */
    .gh-industry-card {
        padding: 1.5rem 1.25rem;
    }

    /* Footer */
    .gh-footer-col {
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .gh-container {
        max-width: 540px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .gh-top-bar {
        font-size: 0.7rem;
    }

    .gh-top-features {
        gap: 0.5rem;
        justify-content: center;
        width: 100%;
    }

    .gh-top-divider {
        display: none;
    }

    .gh-hero {
        padding: 3rem 0;
    }

    .gh-hero-bg-overlay {
        background: rgba(255, 255, 255, 0.94);
    }

    .gh-hero-title {
        font-size: 2.2rem;
    }

    .gh-hero-description {
        font-size: 0.95rem;
    }

    .gh-hero-features {
        gap: 0.5rem;
    }

    .gh-feature-item {
        width: calc(50% - 0.25rem);
        padding: 0.5rem 0.65rem;
    }

    .gh-hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .gh-hero-actions .btn-gh {
        width: 100%;
    }

    /* Trust Strip */
    .gh-trust-strip {
        padding: 1rem 0;
    }

    .gh-trust-divider {
        display: none !important;
    }

    /* About Section */
    .gh-about-img-wrap {
        height: 320px;
    }

    .gh-about-title {
        font-size: 1.85rem;
    }

    /* Product Portfolio */
    .gh-portfolio-card-image {
        height: 200px;
    }

    .gh-portfolio-title {
        font-size: 1.9rem;
    }

    /* Packaging Options */
    .gh-packaging-card-image {
        height: 180px;
    }

    /* Promo Section */
    .gh-promo-card {
        min-height: auto;
        padding: 1.25rem;
    }

    .gh-promo-img {
        max-height: 160px;
    }

    /* Quality & Partnership */
    .gh-handshake-img-wrap {
        height: 240px;
    }
}

@media (max-width: 575.98px) {
    .gh-container {
        width: 100%;
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    /* Navbar Brand & Toggler */
    .gh-navbar-logo {
        height: 34px;
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem;
    }

    /* Top Bar */
    .gh-top-bar {
        padding: 0.4rem 0;
    }

    .gh-top-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem 0.8rem;
    }

    .gh-top-item {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }

    .gh-top-divider {
        display: none !important;
    }

    /* Hero Section */
    .gh-hero {
        padding: 2.25rem 0 2.75rem 0;
        min-height: auto;
    }

    .gh-hero-bg-carousel {
        opacity: 0.4 !important;
    }

    .gh-hero-bg-overlay {
        background: rgba(255, 255, 255, 0.6) !important;
    }

    .gh-hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .gh-hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .gh-hero-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .gh-feature-item {
        width: calc(50% - 0.25rem);
        padding: 0.45rem 0.5rem;
        gap: 0.4rem;
    }

    .gh-feature-icon {
        width: 24px;
        height: 24px;
    }

    .gh-feature-icon svg {
        width: 14px;
        height: 14px;
    }

    .gh-feature-label {
        font-size: 0.6rem;
    }

    .gh-hero-actions {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
    }

    .gh-hero-actions .btn-gh {
        width: 100%;
        justify-content: center;
    }

    /* Trust Strip */
    .gh-trust-strip {
        padding: 0.75rem 0;
    }

    .gh-trust-divider {
        display: none !important;
    }

    .gh-trust-col {
        padding: 0.35rem 0.5rem;
    }

    .gh-trust-item {
        gap: 0.5rem;
    }

    .gh-trust-icon {
        width: 30px;
        height: 30px;
    }

    .gh-trust-title {
        font-size: 0.68rem;
        line-height: 1.15;
    }

    .gh-trust-desc {
        font-size: 0.58rem;
        line-height: 1.15;
    }

    /* About Section */
    .gh-about-section {
        padding: 2.5rem 0;
    }

    .gh-about-img-wrap {
        height: 260px;
        width: 100%;
        border-radius: 12px;
    }

    .gh-about-title {
        font-size: 1.65rem;
        line-height: 1.25;
    }

    .gh-about-intro {
        font-size: 0.95rem;
    }

    .gh-about-point-item {
        margin-bottom: 0.75rem;
    }

    .gh-about-point-title {
        font-size: 0.88rem;
    }

    .gh-about-point-desc {
        font-size: 0.8rem;
    }

    .gh-about-action .btn-gh {
        width: 100%;
        justify-content: center;
    }

    /* Product Portfolio Section */
    .gh-product-portfolio {
        padding: 2.25rem 0;
    }

    .gh-portfolio-title {
        font-size: 1.65rem;
    }

    .gh-portfolio-card {
        padding: 0.6rem;
        border-radius: 10px;
    }

    .gh-portfolio-card-image {
        height: 125px;
        border-radius: 6px;
        margin-bottom: 0.5rem;
    }

    .gh-portfolio-card-title {
        font-size: 0.78rem;
        line-height: 1.2;
        margin-bottom: 0.35rem;
    }

    .gh-portfolio-card-desc {
        font-size: 0.7rem;
        line-height: 1.35;
        margin-bottom: 0.5rem;
    }

    .btn-gh-portfolio {
        padding: 0.42rem 0.5rem;
        font-size: 0.72rem;
        font-weight: 700;
        border-radius: 6px;
        width: 100%;
        justify-content: center;
        text-transform: none;
    }

    /* Packaging Options Section */
    .gh-packaging-section {
        padding: 2.25rem 0;
    }

    .gh-packaging-title {
        font-size: 1.45rem;
    }

    .gh-packaging-subtitle {
        font-size: 0.85rem;
    }

    .gh-packaging-card {
        padding: 0.6rem 0.5rem;
        border-radius: 10px;
    }

    .gh-packaging-card-header {
        margin-bottom: 0.4rem;
    }

    .gh-packaging-card-title {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 0.15rem;
    }

    .gh-packaging-card-desc {
        font-size: 0.68rem;
        line-height: 1.25;
    }

    .gh-packaging-card-image {
        height: 115px;
        border-radius: 6px;
    }

    .gh-packaging-cta-wrap .btn-gh {
        width: 100%;
        justify-content: center;
    }

    .gh-promo-section {
        padding: 2.25rem 0;
    }

    .gh-promo-card {
        position: relative;
        height: 100%;
        min-height: auto;
        border-radius: 10px;
        padding: 0.85rem 0.6rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        overflow: hidden;
        background-color: #ffffff;
        box-shadow: 0 4px 16px rgba(11, 16, 58, 0.05);
        border: 1px solid #e2e8f0;
    }

    .gh-promo-img-wrap {
        position: relative;
        inset: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 115px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 8px;
        background-color: #ffffff;
        margin-bottom: 0.5rem;
        pointer-events: none;
        z-index: 1;
        opacity: 1;
        order: 1;
    }

    .gh-promo-img {
        max-height: 105px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
    }

    .gh-promo-card-body {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: 100%;
        width: 100%;
        pointer-events: auto;
        order: 2;
    }

    .gh-promo-text-wrap {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0;
        margin-bottom: 0.5rem;
    }

    .gh-promo-title {
        font-size: 0.75rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 0.1rem;
        color: var(--gh-navy);
        text-align: center;
        letter-spacing: 0.2px;
    }

    .gh-promo-subtitle {
        font-size: 0.65rem;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 0.35rem;
        color: var(--gh-navy);
        text-align: center;
        letter-spacing: 0.3px;
    }

    .gh-promo-desc {
        font-size: 0.7rem;
        font-weight: 400;
        line-height: 1.35;
        color: #475569;
        text-align: center;
    }

    .gh-promo-desc br {
        display: none;
    }

    .gh-promo-btn-wrap {
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: auto;
        pointer-events: auto;
    }

    .btn-gh-promo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        font-size: 0.68rem;
        font-weight: 700;
        padding: 0.4rem 0.6rem;
        width: 100%;
        text-align: center;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
        background-color: #ffffff;
        border: 1px solid #cbd5e1;
        color: var(--gh-navy);
        text-transform: none;
    }

    .btn-gh-promo span {
        white-space: normal;
    }

    /* Industries We Serve Section */
    .gh-industries-section {
        padding: 2.25rem 0;
    }

    .gh-industries-title {
        font-size: 1.65rem;
    }

    .gh-industries-intro {
        font-size: 0.85rem;
    }

    .gh-industry-card {
        padding: 0.85rem 0.6rem;
        border-radius: 10px;
    }

    .gh-industry-img-wrap {
        height: 115px;
        margin-bottom: 0.5rem;
    }

    .gh-industry-img {
        max-height: 105px;
    }

    .gh-industry-card-title {
        font-size: 0.75rem;
        line-height: 1.2;
        letter-spacing: 0.2px;
    }

    .gh-industry-card-divider {
        width: 20px;
        height: 2px;
        margin: 0.4rem auto 0.45rem;
    }

    .gh-industry-card-desc {
        font-size: 0.7rem;
        line-height: 1.35;
    }

    .gh-industries-cta-wrap .btn-gh {
        width: 100%;
        justify-content: center;
    }

    /* Quality & Partnership Section */
    .gh-quality-trust-section {
        padding: 2.5rem 0;
    }

    .gh-partnership-title {
        font-size: calc(clamp(0.95rem, 4.4vw, 1.15rem) + 8px);
        text-transform: none;
    }

    .gh-quality-title {
        font-size: calc(clamp(0.95rem, 4.4vw, 1.15rem) + 8px);
        text-transform: none;
    }

    .gh-quality-desc,
    .gh-partnership-desc {
        font-size: 0.85rem;
    }

    .gh-quality-badge-item {
        padding: 0.75rem 0.5rem !important;
    }

    .gh-quality-badge-label {
        font-size: 0.65rem !important;
    }

    .gh-partnership-list li {
        font-size: 0.82rem;
    }

    .gh-handshake-img-wrap {
        height: 200px;
        width: 100%;
    }

    /* Footer Section */
    .gh-footer {
        padding-top: 2rem;
        padding-bottom: 1.5rem;
    }

    .gh-footer-brand-col {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .gh-footer-social {
        justify-content: center;
    }

    .gh-footer-col {
        margin-bottom: 1.25rem;
    }

    .gh-footer-col-title {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .gh-footer-contact li {
        font-size: 0.75rem;
    }

    .gh-footer-copyright {
        font-size: 0.7rem;
        text-align: center;
    }
}

.btn-gh,
.btn-gh-primary,
.btn-gh-outline,
.btn-gh-green,
.btn-gh-portfolio,
.btn-gh-promo,
.btn-gh-green-cta,
.btn-gh-industry-cta,
.btn-gh-partnership {
    font-family: var(--gh-font-heading);
    font-weight: 700;
    text-transform: none !important;
    letter-spacing: 0.4px;
    border-radius: 6px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

/* Button Sizing Across Breakpoints */
@media (max-width: 575.98px) {
    .btn-gh,
    .btn-gh-primary,
    .btn-gh-outline,
    .btn-gh-green,
    .btn-gh-portfolio,
    .btn-gh-promo,
    .btn-gh-industry-cta,
    .btn-gh-partnership {
        /* font-size: clamp(0.7rem, 3.2vw, 0.8rem) !important; */
        padding: 10px !important;
        width: 100% !important;
        text-align: center !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    /* Standard inline size & professional padding for View All Hydrate Elite Products button on mobile */
    .btn-gh-green-cta {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        width: auto !important;
        max-width: 100% !important;
        padding: 0.75rem 1.6rem !important;
        font-size: clamp(0.68rem, 3.2vw, 0.8rem) !important;
        font-weight: 800 !important;
        letter-spacing: 0.4px !important;
        white-space: nowrap !important;
        margin: 0 auto !important;
        text-align: center !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
    }

    .gh-hero-actions {
        width: 100% !important;
        flex-direction: column !important;
        gap: 0.65rem !important;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .btn-gh,
    .btn-gh-primary,
    .btn-gh-outline,
    .btn-gh-green,
    .btn-gh-portfolio,
    .btn-gh-promo,
    .btn-gh-green-cta,
    .btn-gh-industry-cta,
    .btn-gh-partnership {
        font-size: 0.78rem !important;
        padding: 0.6rem 1.1rem !important;
    }
}

.gh-nav-header-row {
    flex-shrink: 0;
    min-height: 44px;
}

.gh-navbar-logo {
    height: 42px;
    width: auto;
    max-height: 52px;
    object-fit: contain;
    transition: height 0.2s ease;
}

@media (max-width: 991.98px) {
    .gh-navbar-logo {
        height: 34px !important;
        max-height: 34px !important;
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .gh-navbar .navbar-collapse {
        flex-basis: 100% !important;
        width: 100% !important;
        background-color: #ffffff !important;
        margin-top: 0.75rem !important;
        padding: 1rem 1.15rem !important;
        border-top: 1px solid #e2e8f0 !important;
        border-radius: 0 0 12px 12px !important;
        box-shadow: 0 12px 28px rgba(11, 16, 58, 0.08) !important;
    }

    .gh-dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
        background-color: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: none !important;
        transform: none !important;
        border-radius: 8px !important;
        padding: 0.5rem !important;
    }
}

/* 3. Promotional Showcase Section Images Fix on Mobile */
@media (max-width: 767.98px) {
    .gh-promo-card {
        height: auto !important;
        min-height: auto !important;
        flex-direction: column !important;
        padding: 1.25rem 1rem !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .gh-promo-text-wrap {
        max-width: 100% !important;
    }

    .gh-promo-card-body {
        height: auto !important;
        pointer-events: auto !important;
    }

    .gh-promo-btn-wrap {
        margin-top: 1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .gh-promo-img-wrap,
    .gh-promo-card-ignite .gh-promo-img-wrap,
    .gh-promo-card-royal .gh-promo-img-wrap,
    .gh-promo-card-painex .gh-promo-img-wrap,
    .gh-promo-card-mfg .gh-promo-img-wrap {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        height: 190px !important;
        margin-top: 0.5rem !important;
        pointer-events: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .gh-promo-img,
    .gh-promo-card-ignite .gh-promo-img,
    .gh-promo-card-royal .gh-promo-img,
    .gh-promo-card-painex .gh-promo-img,
    .gh-promo-card-mfg .gh-promo-img {
        width: 100% !important;
        height: 100% !important;
        max-height: 190px !important;
        object-fit: contain !important;
        object-position: center !important;
    }
}

/* ========================================
   QUALITY YOU CAN TRUST & PARTNERSHIP FIXES
======================================== */
.gh-quality-trust-section {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    position: relative;
    z-index: 1;
}

.gh-quality-card,
.gh-partnership-card {
    transition: all 0.3s ease;
    min-height: 100%;
}

.gh-quality-badge-item {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.gh-quality-badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 16, 58, 0.06) !important;
}

.gh-handshake-img-wrap {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
}

.gh-handshake-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (min-width: 768px) {
    .gh-handshake-img-wrap {
        height: 240px;
    }
}

@media (min-width: 1200px) {
    .gh-handshake-img-wrap {
        height: 260px;
    }
}

@media (max-width: 767.98px) {
    .gh-partnership-title {
        font-size: clamp(0.92rem, 4.2vw, 1.25rem) !important;
        white-space: nowrap !important;
        letter-spacing: -0.02em !important;
        text-transform: none !important;
    }

    .gh-quality-title {
        font-size: clamp(0.92rem, 4.2vw, 1.25rem) !important;

        letter-spacing: -0.02em !important;
        text-transform: none !important;
    }

    .gh-handshake-img-wrap {
        height: 180px !important;
        margin-top: 0.5rem;
    }
}

.material-symbols-outlined {
    font-size: 16px !important;
}

/* about start */

/* Brand & Color Tokens */
.text-gh-green {
    color: #2e7032 !important;
}

.text-gh-navy {
    color: #0b103a !important;
}

.text-gh-blue {
    color: #0a6eff !important;
}

.bg-gh-green {
    background-color: #2e7032 !important;
}

.bg-gh-navy {
    background-color: #0b103a !important;
}

.bg-gh-blue {
    background-color: #0a6eff !important;
}

.bg-gh-green-subtle {
    background-color: rgba(46, 112, 50, 0.1) !important;
}

.bg-gh-blue-subtle {
    background-color: rgba(10, 110, 255, 0.1) !important;
}

.gh-text-gradient-green {
    color: #2e7032;
    font-weight: 800;
}

/* Button Variants */
.btn-gh-white {
    background-color: #ffffff;
    color: #0b103a !important;
    border: 1px solid #ffffff;
    font-weight: 600;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    cursor: pointer;
}

.btn-gh-white:hover {
    background-color: #f1f5f9;
    color: #0b103a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-gh-outline {
    background-color: transparent;
    color: #0b103a !important;
    border: 1.5px solid #cbd5e1;
    font-weight: 600;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
}

.btn-gh-outline:hover {
    background-color: #f8fafc;
    border-color: #0b103a;
    transform: translateY(-2px);
}

/* Eyebrows & Section Headings */
.gh-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #2e7032;
    margin-bottom: 0.5rem;
}

.gh-eyebrow-dash {
    color: #2e7032;
    font-weight: 800;
}

.gh-section-title {
    font-family: var(--gh-font-heading);
    font-size: 23px;
    font-weight: 800;
    color: #0b103a;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.gh-section-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.gh-about-hero {
    background-color: #ffffff;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.gh-about-hero-title {
    font-family: var(--gh-font-heading);
    font-size: 33px;
    font-weight: 800;
    color: #0b103a;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.gh-about-hero-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #475569;
}

.gh-about-hero-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(11, 16, 58, 0.15);
    background-color: #e2e8f0;
}

.gh-about-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gh-about-hero-img-wrap:hover .gh-about-hero-img {
    transform: scale(1.02);
}

.gh-who-we-are {
    background-color: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.gh-who-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 36px -12px rgba(11, 16, 58, 0.12);
}

.gh-who-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gh-who-img-wrap:hover .gh-who-img {
    transform: scale(1.02);
}

.gh-who-title {
    font-family: var(--gh-font-heading);
    font-size: 2.15rem;
    font-weight: 800;
    color: #0b103a;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.gh-pillar-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

.gh-pillar-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -6px rgba(11, 16, 58, 0.08);
}

.gh-pillar-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0b103a;
}

.gh-pillar-desc {
    font-size: 0.8rem;
    line-height: 1.45;
    color: #64748b;
}

.gh-mission-vision {
    background-color: #ffffff;
}

.gh-mission-card {
    transition: all 0.3s ease;
}

.gh-mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -10px rgba(11, 16, 58, 0.1) !important;
}

.gh-mission-icon-wrap,
.gh-vision-icon-wrap {
    width: 68px;
    height: 68px;
    box-shadow: 0 8px 16px -4px rgba(46, 112, 50, 0.3);
}

.gh-vision-icon-wrap {
    box-shadow: 0 8px 16px -4px rgba(11, 16, 58, 0.3);
}

.gh-mission-title,
.gh-vision-title {
    font-size: 1.15rem;
    letter-spacing: 0.04em;
}

.gh-mission-desc {
    font-size: 0.92rem;
    line-height: 1.6;
}

.gh-manufacturing-excellence {
    background-color: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.gh-process-flow-card {
    background-color: #ffffff;
}

.gh-step-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    transition: all 0.25s ease;
}

.gh-step-item:hover .gh-step-circle {
    border-color: #2e7032;
    background-color: rgba(46, 112, 50, 0.06);
    transform: translateY(-2px);
}

.gh-step-card-mobile {
    transition: all 0.25s ease;
}

.gh-step-card-mobile:hover {
    border-color: #2e7032 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -4px rgba(46, 112, 50, 0.12);
}

.gh-step-label {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: #0b103a;
}

.gh-excellence-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 36px -12px rgba(11, 16, 58, 0.12);
}

.gh-excellence-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gh-excellence-img-wrap:hover .gh-excellence-img {
    transform: scale(1.02);
}

.gh-why-guardian {
    background-color: #ffffff;
}

.gh-why-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gh-why-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1 !important;
    box-shadow: 0 14px 28px -10px rgba(11, 16, 58, 0.1) !important;
}

.gh-why-title {
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.gh-why-desc {
    font-size: 0.8rem;
    line-height: 1.45;
}

.gh-quality-innovation {
    background-color: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.gh-quality-box,
.gh-innovation-box {
    transition: all 0.3s ease;
}

.gh-quality-badge {
    background-color: #ffffff;
    transition: all 0.25s ease;
}

.gh-quality-badge:hover {
    border-color: #2e7032 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px -4px rgba(46, 112, 50, 0.12);
}

.gh-badge-title {
    font-size: 0.75rem;
    line-height: 1.25;
}

.gh-pipeline-badge {
    background-color: #ffffff;
    transition: all 0.25s ease;
}

.gh-pipeline-badge:hover {
    border-color: #0a6eff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px -4px rgba(10, 110, 255, 0.12);
}

.gh-pipe-node {
    flex: 1;
}

.gh-pipe-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.gh-pipeline-badge:hover .gh-pipe-icon,
.gh-pipe-node:hover .gh-pipe-icon {
    border-color: #0a6eff;
    background-color: rgba(10, 110, 255, 0.08);
    transform: translateY(-2px);
}

.gh-pipe-label {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    color: #0b103a;
    line-height: 1.25;
}

.gh-about-industries {
    background-color: #ffffff;
}

/* 5 Column Grid for Desktop (20% each) */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

.gh-industry-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gh-industry-card:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1 !important;
    box-shadow: 0 16px 32px -12px rgba(11, 16, 58, 0.12) !important;
}

.gh-industry-img-wrap {
    aspect-ratio: 1 / 1;
    background-color: #f8fafc;
}

.gh-industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gh-industry-card:hover .gh-industry-img {
    transform: scale(1.05);
}

.gh-industry-title {
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.gh-tri-section {
    background-color: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.gh-tri-card {
    transition: all 0.3s ease;
}

.gh-tri-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -10px rgba(11, 16, 58, 0.08) !important;
}

.gh-avatar-placeholder {
    width: 56px;
    height: 56px;
    background-color: #f1f5f9;
}

.gh-avatar-name {
    font-size: 0.8rem;
}

.text-xs {
    font-size: 0.72rem !important;
}

.gh-gallery-item {
    aspect-ratio: 4 / 3;
    background-color: #e2e8f0;
}

.gh-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gh-gallery-item:hover .gh-gallery-img {
    transform: scale(1.06);
}

.gh-careers {
    background-color: #ffffff;
}

.gh-careers-banner {
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.gh-careers-banner:hover {
    box-shadow: 0 16px 36px -12px rgba(11, 16, 58, 0.1) !important;
}

.gh-careers-title {
    font-family: var(--gh-font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: #0b103a;
    letter-spacing: -0.02em;
}

.gh-careers-icon-wrap {
    width: 60px;
    height: 60px;
}

.gh-careers-img-wrap {
    min-height: 240px;
}

.gh-careers-img {
    min-height: 240px;
    height: 100%;
}

.gh-careers-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

/* ============================================================
   14 — FINAL PARTNERSHIP CTA SECTION
   ============================================================ */
.gh-final-cta {
    background-color: #0b103a;
}

.gh-final-cta-title {
    font-family: var(--gh-font-heading);
    letter-spacing: -0.02em;
}

.gh-final-cta-desc {
    max-width: 580px;
    line-height: 1.6;
}

/* Mission & Vision SVGs */
.gh-mission-svg {
    width: 34px;
    height: 34px;
}

.gh-careers-desc {
    font-size: 15px;
}

@media (max-width: 991.98px) {
    .gh-about-hero-title {
        font-size: 26px;
    }

    .gh-section-title {
        font-size: 1.85rem;
    }

    .gh-pipe-arrow {
        display: none;
    }

    .gh-pipeline-row {
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .gh-about-hero-title {
        font-size: 26px;
    }

    .gh-section-title,
    .gh-who-title,
    .gh-innovation-title,
    .gh-quality-title {
        font-size: 1.35rem !important;
        line-height: 1.28 !important;
        letter-spacing: -0.015em;
    }

    .gh-innovation-box,
    .gh-quality-box {
        padding: 1.5rem 1rem !important;
    }

    .gh-steps-row {
        justify-content: center;
    }

    .gh-mission-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1.25rem 0.85rem !important;
    }

    .gh-mission-icon-wrap,
    .gh-vision-icon-wrap {
        width: 48px;
        height: 48px;
        margin-bottom: 0.25rem;
    }

    .gh-mission-svg {
        width: 24px;
        height: 24px;
    }

    .gh-mission-title,
    .gh-vision-title {
        font-size: 0.95rem;
        letter-spacing: 0.02em;
    }

    .gh-mission-desc {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .gh-step-card-mobile {
        padding: 0.85rem 0.5rem !important;
    }

    .gh-step-card-mobile .gh-step-circle {
        width: 42px;
        height: 42px;
        margin-bottom: 0.35rem !important;
    }

    .gh-step-card-mobile .gh-step-circle svg {
        width: 20px;
        height: 20px;
    }

    .gh-step-card-mobile .gh-step-label {
        font-size: 0.7rem !important;
    }

    .gh-why-card {
        padding: 1rem 0.75rem !important;
    }

    .gh-why-icon-box {
        margin-bottom: 0.5rem !important;
    }

    .gh-why-title {
        font-size: 0.85rem;
        margin-bottom: 0.25rem !important;
    }

    .gh-why-desc {
        font-size: 0.73rem;
        line-height: 1.4;
    }

    .gh-pipeline-badge {
        padding: 0.85rem 0.5rem !important;
    }

    .gh-pipeline-badge .gh-pipe-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 0.35rem !important;
    }

    .gh-pipeline-badge .gh-pipe-label {
        font-size: 0.68rem !important;
    }

    .gh-careers-title {
        font-size: clamp(0.88rem, 3.7vw, 1.25rem) !important;
        white-space: nowrap !important;
        letter-spacing: -0.02em;
    }

    .gh-careers-icon-wrap {
        width: 44px;
        height: 44px;
    }

    .gh-careers-icon-wrap svg {
        width: 22px;
        height: 22px;
    }

    .gh-careers-banner .d-flex {
        gap: 0.75rem !important;
    }

    .gh-careers-banner .p-4 {
        padding: 1.25rem 1rem !important;
    }

    .gh-careers-desc {
        font-size: 0.8rem;
    }

    .gh-careers-img-wrap {
        min-height: 200px;
    }

    .gh-careers-img-overlay {
        display: none;
    }
}

/* about end */

/* contact start */

.contact_section {
    padding: 60px 0;
    background: var(--light-color);
}

.contact_info_box {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 50px 40px;
    height: 100%;
    border-radius: 15px;
}

.contact_info_box h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 15px 0;
}

.contact_info_box p {
    color: #2e7032;
    line-height: 1.8;
}

.contact_info_item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 30px;
}

.contact_icon {
    min-width: 32px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #2e7032;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.contact_info_item h5 {
    font-size: 17px;
    margin-bottom: 5px;
}

.contact_info_item p {
    margin: 0;
}

.contact_info_item a {
    color: #2e7032;
    transition: 0.3s;
}

.contact_info_item a:hover {
    color: var(--white-color);
}

.contact_social {
    margin-top: 35px;
    display: flex;
    gap: 12px;
}

.contact_social a {
    width: 42px;
    height: 42px;
    background: #0b103a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.contact_social a:hover {
    background: transparent;
    color: #0b103a;
    border: 2px solid #2e7032;
    transform: translateY(-5px);
}

.contact_form_box {
    background: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(11, 16, 58, 0.08);
}

.contact_form_box h2 {
    font-size: 27px;
    font-weight: 700;
    margin: 12px 0 35px;
}

.contact_form_box label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact_form_box .form-control {
    height: 55px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: none;
    padding: 10px 15px;
}

.contact_form_box textarea.form-control {
    height: auto;
    resize: none;
}

.contact_form_box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 16, 58, 0.08);
}

.contact_btn {
    background: #2e7032;
    color: #fff;
    border: 2px solid #2e7032;
    padding: 14px 32px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.contact_btn i {
    margin-left: 8px;
    transition: 0.3s;
}

.contact_btn:hover {
    background: transparent;
    color: #0b103a;
}

.contact_btn:hover i {
    transform: translateX(5px);
}

.contact_map iframe {
    display: block;
}

/* contct end */

/* breadcrumb start */

.unique_breadcrumb_banner {
    position: relative;
    overflow: hidden;
    padding: 50px;
    background: #0b103a;
    color: #ffffff;
    isolation: isolate;
}

.unique_breadcrumb_banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(255, 255, 255, 0.1),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 255, 255, 0.08),
            transparent 30%
        );
    z-index: -1;
}

.breadcrumb_content {
    position: relative;
    z-index: 5;
    animation: breadcrumbFadeUp 1s ease forwards;
}

.breadcrumb_title {
    color: #fff;
    margin: 12px 0 18px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    opacity: 0;
    animation: breadcrumbFadeUp 0.8s ease 0.4s forwards;
}

.unique_breadcrumb {
    justify-content: center;
    margin: 0;
    padding: 0;
    opacity: 0;
    animation: breadcrumbFadeUp 0.8s ease 0.6s forwards;
}

.unique_breadcrumb .breadcrumb-item {
    font-size: 15px;
    font-weight: 500;
}

.unique_breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s ease;
}

.unique_breadcrumb .breadcrumb-item a:hover {
    color: #ffffff;
}

.unique_breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.45);
    padding: 0 12px;
}

.unique_breadcrumb .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb_shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.shape_one {
    width: 180px;
    height: 180px;
    border: 35px solid rgba(255, 255, 255, 0.05);
    top: -70px;
    left: 5%;
    animation: shapeFloatOne 7s ease-in-out infinite;
}

.shape_two {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.04);
    right: 12%;
    bottom: -40px;
    animation: shapeFloatTwo 6s ease-in-out infinite;
}

.shape_three {
    width: 45px;
    height: 45px;
    border: 8px solid rgba(255, 255, 255, 0.1);
    right: 25%;
    top: 25%;
    animation: shapeRotate 8s linear infinite;
}

@keyframes breadcrumbFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shapeFloatOne {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(35px, 25px);
    }
}

@keyframes shapeFloatTwo {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes shapeRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .breadcrumb_title {
        font-size: 25px;
    }

    .unique_breadcrumb .breadcrumb-item {
        font-size: 14px;
    }

    .unique_breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 7px;
    }

    .shape_one {
        width: 120px;
        height: 120px;
    }
}
/* breadcrumb end */

/* our value start */

.gh-vp-modern {
    background: #f3f5f8;
    overflow: hidden;
}

.gh-vp-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 16, 58, 0.09);
    animation: ghVpShow 0.8s ease both;
}

.gh-vp-left {
    padding: 60px 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gh-vp-title {
    margin: 0;
    color: #0b103a;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    animation: ghVpLeft 0.9s ease both;
}

.gh-vp-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin: 0 8px;
    border-radius: 50%;
    background: #0b103a;
    color: #fff;
    font-size: 20px;
    vertical-align: middle;
    /* animation: ghVpPulse 2s infinite; */
}

.gh-vp-result {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
    animation: ghVpBottom 1s ease both;
}

.gh-vp-equal {
    color: #0b103a;
    font-size: 24px;
    font-weight: 300;
}

.gh-vp-result h3 {
    margin: 0;

    color: #0b103a;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.gh-vp-right {
    padding: 30px 40px;
    background: #0b103a;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    animation: ghVpRight 0.9s ease both;
}

.gh-vp-right::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    right: -150px;
    top: -120px;
}

.gh-vp-right::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    left: -100px;
    bottom: -100px;
}

.gh-vp-quote {
    position: relative;
    z-index: 2;
    font-size: 75px;
    line-height: 0.5;
    font-family: Georgia, serif;

    opacity: 0.35;
}

.gh-vp-right p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
}

.gh-vp-right strong {
    color: #fff;
}

@keyframes ghVpShow {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ghVpLeft {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ghVpRight {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ghVpBottom {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ghVpPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 991px) {
    .gh-vp-title {
        font-size: 20px;
    }

    .gh-vp-left,
    .gh-vp-right {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .gh-vp-left {
        padding: 45px 25px;
    }

    .gh-vp-title {
        font-size: 20px;
    }

    .gh-vp-plus {
        width: 30px;
        height: 30px;
        font-size: 19px;
    }

    .gh-vp-result {
        align-items: flex-start;
    }

    .gh-vp-result h3 {
        font-size: 20px;
    }

    .gh-vp-right {
        padding: 45px 25px;
    }
}
/* our value end */

/* why choose start */
.gh-why-title h2 {
    color: #0b103a;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
}
.gh-why-title span {
    color: #2e7032;
}

.gh-click-info-section {
    background: #f5f6fa;
}

.gh-click-info-row {
    min-height: 500px;
}

/* LEFT SIDE */

.gh-click-points-wrapper {
    height: 52;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gh-click-point {
    width: 100%;
    flex: 1;
    min-height: 75px;
    border: 1px solid #e2e5ec;
    background: #ffffff;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    text-align: left;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.gh-click-point::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: #0b103a;
    transition: all 0.4s ease;
    z-index: 0;
}

.gh-click-point span {
    position: relative;
    z-index: 1;
}

.gh-click-point:hover::before,
.gh-click-point.active::before {
    width: 100%;
}

.gh-click-point:hover,
.gh-click-point.active {
    color: #ffffff;
    transform: translateX(8px);
}

.gh-point-number {
    font-size: 14px;
    font-weight: 700;
    margin-right: 18px;
    /* opacity: 0.6; */
    background: #2e7032;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gh-point-title {
    font-size: 18px;
    font-weight: 600;
    flex: 1;
}

.gh-point-icon {
    width: 30px;
    height: 30px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.4s;
}

.gh-click-point.active .gh-point-icon {
    transform: rotate(45deg);
}

/* RIGHT SIDE */

.gh-click-content-wrapper {
    height: 84%;

    background: #0b103a;
    /* display: flex; */
    align-items: center;
    padding: 40px;
    overflow: hidden;
    position: relative;
}

.gh-click-content-wrapper::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    right: -120px;
    top: -120px;
}

.gh-click-content-wrapper::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    left: -100px;
    bottom: -100px;
}

.gh-content-animation {
    position: relative;
    z-index: 2;
    animation: ghContentFade 0.6s ease;
}

.gh-content-number {
    display: inline-block;
    font-size: 15px;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;

    background: #2e7032;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gh-content-animation h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.gh-content-animation p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}

@keyframes ghContentFade {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .gh-click-points-wrapper {
        margin-bottom: 20px;
    }

    .gh-click-point {
        min-height: 70px;
        flex: auto;
    }

    .gh-click-content-wrapper {
        min-height: 400px;
        padding: 35px 25px;
    }

    .gh-content-animation h2 {
        font-size: 28px;
    }

    .gh-content-animation p {
        font-size: 16px;
    }
}

/* why choose end */

/* quality start */
.gh-quality-process-section {
    padding: 100px 0;
    background: #f6f7fb;
    overflow: hidden;
}

.gh-quality-title h2 {
    color: #0b103a;
    font-size: 27px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}
.gh-quality-title span {
    color: #2e7032;
}
.gh-quality-description,
.gh-process-description {
    color: #000 !important;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Left Side List */
.gh-quality-list-item {
    position: relative;
    height: 100%;
    padding: 15px 18px 15px 45px;
    background: #ffffff;
    border: 1px solid #e4e7ef;
    border-radius: 8px;
    color: #0b103a;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s ease;
    animation: ghListFade 0.8s ease both;
    cursor: pointer;
}

.gh-quality-list-item::before {
    content: "✓";
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b103a;
    color: #ffffff;
    border-radius: 50%;
    font-size: 11px;
}

.gh-quality-list-item:hover {
    transform: translateX(8px);
    background: #0b103a;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(11, 16, 58, 0.18);
}

.gh-quality-list-item:hover::before {
    background: #ffffff;
    color: #0b103a;
}

/* Right Side */

.gh-quality-process-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    border: 50px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.gh-quality-process-box .gh-process-title {
    color: #ffffff;
    position: relative;
}

.gh-quality-process-box .gh-process-description {
    color: rgba(255, 255, 255, 0.75);
    position: relative;
}

/* Process Flow */
.gh-process-flow {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.gh-process-step {
    /* min-width: 135px; */
    flex: 1;
    padding: 18px 12px;
    background: #0b103a;
    border-radius: 10px;
    text-align: center;
    height: 120px;
    /* animation: ghStepPulse 3s infinite; */
}

.gh-process-step span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    background: #2e7032;
    color: #ffffff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

.gh-process-step h4 {
    margin: 0;
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
}

.gh-process-arrow {
    color: #0b103a;
    font-size: 24px;
    font-weight: 700;
    /* animation: ghArrowMove 1.5s infinite; */
}

/* quality end */

/* Blister Packaging Process start */

.gh-top-workflow-section {
    background: #f6f7fb;
    padding: 80px 0;
    overflow: hidden;
}

/* TOP STEP NAVIGATION */
.gh-top-step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 45px;
    position: relative;
}

.gh-top-step-navigation::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 7%;
    width: 86%;
    height: 2px;
    background: #d9deea;
    z-index: 0;
}

.gh-top-step-btn {
    position: relative;
    z-index: 1;
    flex: 1;
    border: none;
    background: transparent;
    text-align: center;
    cursor: pointer;
    padding: 0;
}

.gh-top-step-btn span {
    width: 40px;
    height: 40px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #0b103a;
    border: 2px solid #d9deea;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.gh-top-step-btn small {
    display: block;
    margin-top: 12px;
    color: #6d7485;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    transition: 0.3s ease;
    font-size: 14px;
}

.gh-top-step-btn:hover span,
.gh-top-step-btn.active span {
    background: #0b103a;
    border-color: #0b103a;
    color: #ffffff;
    transform: scale(1.12);
    box-shadow: 0 8px 20px rgba(11, 16, 58, 0.2);
}

.gh-top-step-btn:hover small,
.gh-top-step-btn.active small {
    color: #0b103a;

    font-size: 14px;
}

/* CONTENT BOX */
.gh-top-content-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(11, 16, 58, 0.08);
    height: auto;
}

.gh-top-step-content {
    display: none;
    animation: ghTopContentAnimation 0.5s ease;
}

.gh-top-step-content.active {
    display: block;
}

.gh-top-content-number {
    display: inline-block;
    background: #0b103a;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gh-top-step-content h2 {
    color: #0b103a;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.gh-top-step-content p {
    color: #687083;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* INFO BOX */
.gh-top-info-item {
    position: relative;
    padding: 15px 18px 15px 45px;
    height: 100%;
    background: #f8f9fc;
    border: 1px solid #e5e8f0;
    border-radius: 10px;
    color: #0b103a;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.gh-top-info-item::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #0b103a;
    color: #ffffff;
    font-size: 11px;
}

.gh-top-info-item:hover {
    background: #0b103a;
    color: #ffffff;
    transform: translateY(-4px);
}

.gh-top-info-item:hover::before {
    background: #ffffff;
    color: #0b103a;
}

/* STEP 4 FLOW */
.gh-top-production-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
}

.gh-top-production-flow span {
    padding: 12px 18px;
    background: #f1f3f8;
    color: #0b103a;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.gh-top-production-flow b {
    color: #0b103a;
    font-size: 22px;
}

/* ANIMATION */
@keyframes ghTopContentAnimation {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TABLET */
@media (max-width: 991px) {
    .gh-top-step-btn:hover small,
    .gh-top-step-btn.active small {
        font-size: 11px;
    }
    .gh-top-step-navigation {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .gh-top-step-navigation::before {
        display: none;
    }

    .gh-top-step-btn {
        min-width: 110px;
    }

    .gh-top-content-wrapper {
        padding: 35px 25px;
    }
}

/* MOBILE */
@media (max-width: 991px) {
    .gh-about-hero-img {
        height: 200px !important;
    }
    .gh-top-workflow-section {
        padding: 60px 0;
    }

    .gh-top-step-navigation {
        gap: 8px;
    }

    .gh-top-step-btn {
        min-width: 95px;
    }

    .gh-top-step-btn span {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .gh-top-step-btn small {
        font-size: 10px;
    }

    .gh-top-content-wrapper {
        padding: 28px 18px;
    }

    .gh-top-step-content h2 {
        font-size: 25px;
    }

    .gh-top-production-flow {
        flex-direction: column;
        align-items: flex-start;
    }

    .gh-top-production-flow b {
        transform: rotate(90deg);
        margin-left: 20px;
    }
}
/* Blister Packaging Process end */

/* manufacturing start */

.section-heading {
    color: #0b103a;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 23px;
}
.custom-table {
    border: 1px solid #cce0f5;
}
.custom-table thead th {
    background-color: #0b103a;
    color: #ffffff;
    font-weight: 600;
    border: 1px solid #0b103a;
    padding: 12px 16px;
}
.custom-table tbody td {
    padding: 12px 16px;
    color: #333333;
    border-color: #e2ecf8;
}

.custom-table tbody tr:nth-of-type(even) {
    background-color: #f7faef;
}

/* Manufacturing end */

/* services start */

.product-showcase {
    padding: 80px 0;
    background: #f7f9fc;
}

/* Card */
.showcase-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(11, 16, 58, 0.08);
    box-shadow: 0 12px 35px rgba(11, 16, 58, 0.08);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Floating Animation */
.showcase-card {
    animation: cardFloat 5s ease-in-out infinite;
}

.showcase-card:nth-child(2) {
    animation-delay: 0.3s;
}

.showcase-card:nth-child(3) {
    animation-delay: 0.6s;
}

.showcase-card:nth-child(4) {
    animation-delay: 0.9s;
}

.showcase-card:nth-child(5) {
    animation-delay: 1.2s;
}

.showcase-card:nth-child(6) {
    animation-delay: 1.5s;
}

@keyframes cardFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Hover */
.showcase-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 25px 55px rgba(11, 16, 58, 0.18);
    border-color: rgba(46, 112, 50, 0.25);
}

/* Image */
.showcase-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #eef3f5;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.12);
}

/* Image Shine */
.image-shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.45),
        transparent
    );
    transform: skewX(-20deg);
    pointer-events: none;
}

.showcase-card:hover .image-shine {
    animation: imageShine 0.9s ease forwards;
}

@keyframes imageShine {
    0% {
        left: -120%;
    }

    100% {
        left: 150%;
    }
}

/* Bottom Name */
.showcase-title {
    position: relative;
    padding: 22px 20px;
    text-align: center;
    color: #0b103a;
    background: #fff;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Animated line */
.showcase-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 0;
    height: 3px;
    border-radius: 10px;
    background: #2e7032;
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.showcase-card:hover .showcase-title {
    color: #2e7032;
}

.showcase-card:hover .showcase-title::after {
    width: 45px;
}

/* Responsive */
@media (max-width: 767px) {
    .product-showcase {
        padding: 50px 0;
    }

    .showcase-image {
        height: 220px;
    }

    .showcase-title {
        font-size: 17px;
        padding: 20px 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .showcase-card {
        animation: none;
    }

    .showcase-image img,
    .showcase-card,
    .showcase-title {
        transition: none;
    }
}
/* servics  end */

/* popup modal start */

.modal-contact-box .form-control {
    height: 43px;
}
.modal-contact-box h2 {
    font-size: 23px;
    font-weight: 700;
    margin: 12px 0 20px;
}
.modal-contact-box label {
    font-size: 13px;
}
.modal-btn {
    padding: 10px;

    font-size: 13px;
}
.modal-contact-box {
    background-color: #0b103a05;
}

/* popup modal end */
