:root {
    --greenpath-teal: #41C2CB;
    --brand-gray: #4D4D4D;
    --greenpath-lime: #a3d133;
    --greenpath-blue: var(--greenpath-teal);
    --port-blue: #1d4f91;
    --bg-light: #f0f8ff;
    --bg-dark-section: #f9f9f9;
}

/* Dark Mode Variables */
.dark {
    --greenpath-blue: #5ce1e9;
    --bg-light: #161a1b;
    --bg-dark-section: #0d1112;
}

.corporategp .navbar {
    background: #fff !important;
    border-bottom: 5px solid var(--greenpath-teal);
}

.dark.corporategp .navbar {
    background: #161a1b !important;
}

.gp-header {
    background: var(--greenpath-teal);
    padding: 20px 0;
    margin-top: 90px;
    /* Accounts for fixed navbar */
}

/* Support for inlined SVG */
.gp-header-logo-container svg {
    max-height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
}


.gp-header img {
    max-height: 200px;
    margin: 0 15px;
    width: auto;
}

.gp-header .big-logo {
    max-height: 250px;
    margin: 10px 0;
}

/* Ensure Logo Visibility - Removed filter to show original colors if needed, 
   or keep it if the logo is dark. But user says invisible. */
.gp-header img.white-logo {
    filter: none;
}

/* DarkMode Switch Positioning */
#switch {
    z-index: 1050;
    /* Above navbar */
}

@media (max-width: 991px) {
    #switch {
        position: fixed !important;
        right: 15px !important;
        top: 15px !important;
    }
}


.hero-gp {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-dark-section) 100%);
    padding: 120px 0 80px;
    /* Adjusted padding since top strip is gone */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-gp h1 {
    color: var(--greenpath-blue);
    font-weight: 800;
    font-size: 4.5rem;
    margin-bottom: 10px;
    text-transform: none;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero-gp {
        padding: 80px 15px 40px;
    }

    .hero-gp h1 {
        font-size: 2.5rem;
    }

    .gp-hero-logo-container svg {
        max-height: 80px;
    }

    /* Bigger mockup on mobile */
    .gp-mockup-tilt {
        max-height: 550px !important;
        width: 80% !important;
        margin: 0 auto;
    }

    /* Smaller leaf on mobile */
    .gp-monitoring img {
        max-height: 150px !important;
        margin-bottom: 20px;
    }
}


/* 3D Tilt Effect */
.tilt-container {
    perspective: 1000px;
    display: inline-block;
    padding: 20px;
}

.gp-mockup-tilt {
    transition: transform 0.1s ease-out;
    /* Snappier transition for JS movement */
    transform-style: preserve-3d;
    will-change: transform;
}

.gp-tag {
    background-color: var(--greenpath-lime);
    color: white;
    padding: 8px 25px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gp-content {
    padding: 80px 0;
}

.gp-icons {
    padding: 60px 0;
    text-align: center;
}

.gp-icons i {
    font-size: 5rem;
    color: var(--greenpath-blue);
    margin: 0 40px;
    transition: transform 0.3s;
}

/* Moped icon specific size adjustment if needed */
.gp-icons .moped-icon {
    font-size: 5.5rem;
}

.gp-icons i:hover {
    transform: scale(1.1);
    color: var(--greenpath-lime);
}

.gp-monitoring {
    background-color: var(--bg-dark-section);
    padding: 80px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dark .gp-monitoring {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gp-footer-logos {
    background-color: #ffffff;
    /* Pure white background as requested */
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dark .gp-footer-logos {
    background-color: var(--brand-gray);
    /* Dark background in Dark Mode */
}

.gp-footer-logos p {
    color: var(--brand-gray);
}

.dark .gp-footer-logos p {
    color: white !important;
}

/* Ensure logos are visible even on white: add a subtle drop-shadow or border */
.gp-footer-logos img {
    max-height: 80px;
    /* Increased size */
    margin: 20px;
    width: auto;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)) !important;
}

.dark .gp-footer-logos img {
    filter: none !important;
    /* Original colors or white parts work on dark bg */
}

.qr-section {
    /* Removed, but keeping rule just in case */
    display: none;
}

.section-title-gp {
    color: var(--greenpath-blue);
    font-weight: 800;
    margin-bottom: 30px;
    display: inline-block;
}

/* Remove underline */
.section-title-gp::after {
    display: none;
}

.corporategp h5,
.corporategp li {
    color: var(--brand-gray);
}

.gp-bg-green {
    background-color: var(--greenpath-teal);
    color: white;
    padding: 80px 0;
}

.gp-bg-green h2,
.gp-bg-green p,
.gp-bg-green h5,
.gp-bg-green li {
    color: white !important;
}

.gp-bg-green i {
    color: white !important;
    /* Force icons white on green bg */
}

/* Custom Support Buttons */
.gp-btn-main {
    background-color: var(--greenpath-teal) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 25px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gp-btn-main:hover {
    background-color: var(--greenpath-lime) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(65, 194, 203, 0.4);
    color: #ffffff !important;
}

.gp-btn-outline {
    border: 2px solid var(--brand-gray) !important;
    color: var(--brand-gray) !important;
    font-weight: 700 !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dark .gp-btn-outline {
    border-color: white !important;
    color: white !important;
}

.gp-btn-outline:hover {
    background-color: var(--brand-gray) !important;
    color: white !important;
}

.dark .gp-btn-outline:hover {
    background-color: white !important;
    color: var(--brand-gray) !important;
}