/*
Theme Name: JSD Electronics
Author: JSD IT Team
Description: Custom theme for JSD Electronics based on user design requirements.
Version: 1.0
*/

/* ==========================================================================
   CSS Variables & Globals
   ========================================================================== */
:root {
    --primary-color: #006b3c; /* Brand Green */
    --primary-light: #008f51;
    --primary-dark: #004d2b;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

h1 strong, h2 strong {
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.section-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

/* Premium Section Headings */
.sub-heading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(25, 168, 74, 0.1);
    color: #19A84A;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.sub-heading i {
    font-size: 14px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-dark);
    color: #aaaaaa;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left span {
    display: flex;
    align-items: center;
}

.top-bar-left i {
    color: var(--primary-color);
    margin-right: 5px;
}

.top-bar-right a {
    color: #aaaaaa;
    margin-left: 15px;
}

.top-bar-right a:hover {
    color: var(--primary-color);
}

/* Main Nav */
.main-nav-wrapper {
    padding: 5px 0;
}

.main-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding a {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-dark);
}

.site-branding .logo-icon {
    color: var(--primary-color);
    font-size: 28px;
    margin-right: 10px;
}

.site-branding .logo-text strong {
    color: var(--primary-color);
}

.primary-navigation .nav-menu {
    display: flex;
}

.primary-navigation .nav-menu li {
    margin: 0 15px;
}

.primary-navigation .nav-menu a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
}

.primary-navigation .nav-menu a:hover,
.primary-navigation .nav-menu a.active,
.primary-navigation .nav-menu .current-menu-item > a,
.primary-navigation .nav-menu .current_page_item > a {
    color: var(--primary-color);
}

.primary-navigation .nav-menu a.active::after,
.primary-navigation .nav-menu .current-menu-item > a::after,
.primary-navigation .nav-menu .current_page_item > a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    background-color: #00331f; /* Fallback */
    background-image: linear-gradient(rgba(0, 35, 20, 0.8), rgba(0, 35, 20, 0.8)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0 250px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-inner.no-video-center {
    justify-content: center;
    text-align: center;
}

.hero-inner.no-video-center .hero-content {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-video {
    flex: 1;
    max-width: 560px;
    opacity: 0;
    animation: fadeInRight 1s ease-out forwards;
    animation-delay: 0.3s;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.company-label {
    display: inline-block;
    color: #19A84A;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.hero-content h1 {
    font-size: 48px;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.hero-content h1 strong {
    color: var(--primary-light); /* Or var(--primary-color) depending on contrast */
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Overlapping Features */
.hero-features-wrapper {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-card {
    background: var(--bg-white);
    padding: 30px 30px 40px 30px;
    border-right: 1px solid var(--border-color);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.card-content-wrap {
    flex: 1;
}

.feature-card:nth-child(1) { animation-delay: 0.3s; }
.feature-card:nth-child(2) { animation-delay: 0.6s; }
.feature-card:nth-child(3) { animation-delay: 0.9s; }

.feature-card:last-child {
    border-right: none;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.feature-card.highlight {
    background: #003a20; /* Darker green background matching image */
    color: var(--bg-white);
}

.feature-card.highlight .card-icon {
    border-color: rgba(255,255,255,0.2);
    color: var(--bg-white);
    background: rgba(255,255,255,0.05);
}

/* Premium Hover Effect */
.feature-card:hover {
    background: #006b3c;
    color: var(--bg-white);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 107, 60, 0.3);
    border-right-color: transparent;
}

.feature-card:hover .card-icon {
    border-color: rgba(255,255,255,0.2);
    color: var(--bg-white);
    background: rgba(255,255,255,0.05);
}

.feature-card:hover h3,
.feature-card:hover p,
.feature-card:hover .read-more {
    color: var(--bg-white);
}

.feature-card.highlight h3,
.feature-card.highlight p,
.feature-card.highlight .read-more {
    color: var(--bg-white);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

.read-more {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    color:#006b3c;
}

.read-more i {
    margin-left: 8px;
    font-size: 12px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 200px 0 100px;
    background: var(--bg-white);
    position: relative;
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-content {
    flex: 1;
}

.subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.subtitle-wrap .section-subtitle {
    margin-bottom: 0;
    color: var(--primary-color);
}

.subtitle-line {
    height: 2px;
    width: 40px;
    background-color: var(--primary-color);
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--bg-dark);
}

.text-highlight {
    color: var(--primary-color);
}

.about-content .lead-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 15px;
}

.about-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-signature-box {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.signature-info strong {
    display: block;
    color: var(--bg-dark);
    font-size: 18px;
    font-weight: 700;
}

.signature-info span {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signature-img {
    font-family: 'Brush Script MT', cursive;
    font-size: 36px;
    color: var(--primary-color);
    transform: rotate(-5deg);
}

.about-image {
    flex: 1;
    position: relative;
}

.image-stack {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.image-bg-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background-color: rgba(0, 107, 60, 0.05);
    border: 2px dashed var(--primary-color);
    border-radius: 20px;
    z-index: 1;
}

.main-about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.partners-slider::before,
.partners-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 0%, rgba(245,245,245,0) 100%);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 0%, rgba(245,245,245,0) 100%);
}

.partners-track {
    display: flex;
    align-items: center;
    width: calc(250px * 12);
    animation: scrollPartners 35s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 22px;
    font-weight: 700;
    transition: var(--transition);
    filter: grayscale(100%) opacity(0.5);
    cursor: pointer;
}

.partner-logo i {
    font-size: 40px;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    color: var(--primary-color);
    transform: scale(1.05);
}

@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); }
}

/* ==========================================================================
   Specialization Section - New Split Design
   ========================================================================== */
.specialization-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.spec-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.spec-header-left h2 {
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.spec-header-left .subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.spec-header-left .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.spec-header-left .section-subtitle {
    margin-bottom: 0;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.text-highlight {
    color: var(--primary-color);
}

.text-highlight.underline {
    position: relative;
    display: inline-block;
}

.text-highlight.underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.spec-header-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

.rounded-pill-btn {
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 10px 8px 25px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.rounded-pill-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-icon-circle {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rounded-pill-btn:hover .btn-icon-circle {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

/* Split Cards Grid */
.services-split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.split-card {
    background: var(--bg-white);
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.split-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 107, 60, 0.1);
}

.split-card-content {
    flex: 1.2;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.scc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.scc-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 107, 60, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.scc-header h3 {
    margin-bottom: 0;
    font-size: 20px;
    color: var(--bg-dark);
    margin-top: -4px;
    margin-left: -2px;
}

.split-card-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.scc-list {
    margin: 0 0 15px 0;
    padding: 0;
}

.scc-list li {
    list-style: none;
    font-size: 13px;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.scc-list li i {
    color: var(--primary-color);
    font-size: 14px;
}

.scc-link {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.scc-link:hover {
    color: var(--primary-dark);
}

.split-card-image {
    flex: 1;
    position: relative;
}

.split-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.split-card:hover .split-card-image img {
    transform: scale(1.05);
}

/* Green Corner Triangle Effect */
.corner-triangle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 80px solid var(--primary-color);
    border-left: 80px solid transparent;
}

/* Bottom Feature Strip */
.bottom-feature-strip {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.bfs-item {
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid var(--border-color);
    padding-right: 25px;
}

.bfs-item:last-child {
    border-right: none;
    padding-right: 0;
}

.bfs-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 107, 60, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.bfs-text h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--bg-dark);
}

.bfs-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.45;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--bg-dark);
    color: #aaaaaa;
}

/* ==========================================================================
   Tech Stats Section Redesign (Light Theme)
   ========================================================================== */
.tech-stats-section {
    background-color: #003a20;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    color: var(--text-muted);
}

.tech-stats-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    background: #ffffff;
    gap: 30px;
}

.tech-stats-left {
    flex: 1;
}

.ts-subtitle {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.ts-subtitle .dots {
    display: flex;
    gap: 4px;
    font-size: 10px;
}

.ts-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--bg-dark);
    margin-bottom: 15px;
    margin-top: 1px;
}

.ts-title span {
    color: var(--primary-color);
}

.ts-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
}

.ts-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ts-feature {
    display: flex;
    flex-direction: column;
}

.ts-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    background-color: rgba(0, 107, 60, 0.08);
    margin-bottom: 15px;
}

.ts-feature h4 {
    color: var(--bg-dark);
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.ts-feature p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.4;
}

.ts-feature .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.tech-stats-right {
    flex: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-stats-box {
    position: relative;
    z-index: 14;
    background: linear-gradient(135deg, #ffffff 0%, #e6f5ec 100%);
    border: 1px solid rgba(25, 168, 74, 0.2);
    border-radius: 40px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    box-shadow: 0 25px 60px rgba(0, 107, 60, 0.1), 0 0 0 10px rgba(25, 168, 74, 0.03);
    width: 580px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 220px;
}

.glass-stats-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 107, 60, 0.15), 0 0 0 10px rgba(25, 168, 74, 0.05);
    border-color: rgba(25, 168, 74, 0.4);
}

.glass-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    transition: transform 0.3s ease;
    padding: 10px 0;
}

.glass-stat:hover {
    transform: scale(1.05);
}

.glass-stat.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    height: 70%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(25, 168, 74, 0.15), transparent);
}

.gs-icon {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
    width: 55px;
    height: 55px;
    background: rgba(25, 168, 74, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.glass-stat:hover .gs-icon {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(25, 168, 74, 0.2);
    transform: translateY(-5px);
}

.gs-number {
    font-size: 46px;
    font-weight: 800;
    background: linear-gradient(45deg, var(--bg-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 8px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.gs-label {
    font-size: 13px;
    color: var(--bg-dark);
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 12px;
    word-break: break-word;
}

.gs-line {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */
.testimonial-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

/* Google Review Badge */
.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.gr-logo {
    width: 24px;
    height: 24px;
}

.gr-stars {
    color: #fbbc05;
    font-size: 14px;
}

.gr-text {
    font-size: 14px;
    color: var(--bg-dark);
}

.testimonial-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 50%;
    color: var(--bg-dark);
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #19A84A;
    color: #ffffff;
    border-color: #19A84A;
}

.slider-btn.prev-btn {
    left: -22px;
}

.slider-btn.next-btn {
    right: -22px;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px; /* Prevent shadow clipping */
    margin: -20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-grid.center-grid::before,
.testimonial-grid.center-grid::after {
    content: '';
    margin: auto;
}

.testimonial-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc((100% - 60px) / 3);
    min-width: calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    scroll-snap-align: start;
    flex-shrink: 0;
    white-space: normal;
    word-wrap: break-word;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tc-stars {
    color: #19A84A;
    font-size: 14px;
    margin-bottom: 15px;
}

.tc-text {
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tc-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.tc-author-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--bg-dark);
}

.tc-author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================================================
   Latest Blogs Section
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-grid.single-post-center {
    grid-template-columns: minmax(auto, 400px);
    justify-content: center;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bc-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.bc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .bc-image {
    transform: scale(1.05);
}

.bc-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #19A84A;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.bc-date .day {
    font-size: 20px;
    font-weight: 800;
}

.bc-date .month {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.bc-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bc-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}

.bc-meta span i {
    color: #19A84A;
    margin-right: 5px;
}

.bc-title {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
    margin-top: 10px;
}

.bc-title a {
    color: var(--bg-dark);
}

.bc-title a:hover {
    color: #19A84A;
}

.bc-excerpt {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.bc-read-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bc-read-more i {
    color: #19A84A;
    transition: 0.3s;
}

.bc-read-more:hover {
    color: #19A84A;
}

.bc-read-more:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.faq-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.faq-left {
    flex: 1;
}

.faq-right {
    flex: 1.2;
}

.faq-item {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active {
    border-color: #19A84A;
    box-shadow: 0 5px 15px rgba(25, 168, 74, 0.05);
}

.faq-question {
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--bg-dark);
    cursor: pointer;
    position: relative;
    list-style: none; /* remove default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question i {
    color: #19A84A;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   Footer Redesign (Dark Green Theme)
   ========================================================================== */
.site-footer {
    background-color: #000000;
    color: rgba(255, 255, 255, 0.7);
    border-top: none;
    position: relative;
}

/* --- Top Footer --- */
.footer-top {
    padding: 80px 0 30px 0;
}

.footer-top-inner {
    display: grid;
    grid-template-columns: 3fr 1.2fr 1.2fr 1.2fr 1.5fr;
    gap: 50px;
}

.footer-logo img {
    max-height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
}

.col-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #19A84A;
}

.col-title.small-title {
    font-size: 15px;
    margin-bottom: 15px;
}
.col-title.small-title::after { display: none; }

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    color: #ffffff !important;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    background: #19A84A !important;
}

.social-icons a:has(.fa-linkedin), .social-icons a:has(.fa-linkedin-in) { background: #0077b5 !important; }
.social-icons a:has(.fa-facebook), .social-icons a:has(.fa-facebook-f) { background: #1877f2 !important; }
.social-icons a:has(.fa-twitter), .social-icons a:has(.fa-x-twitter) { background: #1da1f2 !important; }
.social-icons a:has(.fa-instagram) { background: #e1306c !important; }
.social-icons a:has(.fa-youtube) { background: #ff0000 !important; }

.social-icons a:hover {
    transform: translateY(-4px);
    filter: brightness(1.15);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

/* Newsletter Box */
.newsletter-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    background: #003a20
}

.nl-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.nl-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #19A84A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nl-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px 0;
}

.nl-text p {
    font-size: 12px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.nl-form {
    display: flex;
    gap: 10px;
}

.nl-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 13px;
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    height: 44px;
    box-sizing: border-box;
}

.nl-form input:focus {
    outline: none;
    border-color: #19A84A;
}

.nl-form button {
    background: #19A84A;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: 0.3s;
}

.nl-form button:hover {
    background: #ffffff;
    color: #000000;
}

/* Link List */
.link-list li {
    margin-bottom: 12px;
}

.link-list li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.link-list li a i {
    font-size: 10px;
    color: #19A84A;
    margin-right: 10px;
    transition: 0.3s;
}

.link-list li a:hover {
    color: #19A84A;
}

/* Icon List (Services & Contact) */
.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.il-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #19A84A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.il-text {
    font-size: 14px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.contact-list .il-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.contact-list .il-text span,
.contact-list .il-text span a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}
.contact-list .il-text span a:hover {
    color: #19A84A;
}

/* --- Middle Footer --- */
.footer-middle {
    border-top: none;
    border-bottom: none;
    padding-bottom: 20px;
}

.footer-middle-inner {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, rgba(25, 168, 74, 0.1) 0%, rgba(0, 34, 18, 0.8) 100%);
    border-radius: 20px;
    border: 1px solid rgba(25, 168, 74, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    justify-content: space-around;
    backdrop-filter: blur(10px);
}

.fm-block {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: center;
    transition: transform 0.3s ease;
}

.fm-block:hover {
    transform: translateY(-5px);
}

.fm-icon {
    width: 60px;
    height: 60px;
    background: rgba(25, 168, 74, 0.15);
    border: 1px solid rgba(25, 168, 74, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: yellow;
    font-size: 24px;
    transition: all 0.3s ease;
}

.fm-block:hover .fm-icon {
    background: #19A84A;
    color: yellow;
    box-shadow: 0 0 15px rgba(25, 168, 74, 0.6);
}

.fm-text {
    display: flex;
    flex-direction: column;
}

.fm-text strong {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.fm-text span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.fm-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 40px;
}

/* --- Bottom Footer --- */
.footer-bottom {
    padding: 15px 0;
    background: transparent;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}
.fb-copyright .highlight {
    color: #19A84A;
    font-weight: 600;
}

.fb-links {
    font-size: 13px;
}
.fb-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}
.fb-links a:hover {
    color: #19A84A;
}
.fb-links .sep {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.1);
}

.fb-back-top .back-to-top-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.fb-back-top .back-to-top-btn:hover {
    background: #19A84A;
    color: #ffffff;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-top-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-inner {
        flex-direction: column;
    }
    .image-stack {
        padding-right: 0;
        padding-bottom: 20px;
        margin-top: 40px;
    }
    .image-bg-shape {
        bottom: -20px;
        right: -20px;
    }
    .tech-stats-wrapper {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }
    .tech-stats-right {
        width: 100%;
        margin-top: 40px;
    }
    .ts-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .glass-stats-box {
        flex-direction: column;
        width: 100%;
        padding: 30px;
        gap: 20px;
    }
    .glass-stat.divider::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .hero-features-grid {
        grid-template-columns: 1fr;
    }
    .hero-features-wrapper {
        position: relative;
        bottom: 0;
        margin-top: 40px;
    }
    .hero-section {
        padding: 80px 0;
    }
    .about-section {
        padding: 80px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-top-inner {
        grid-template-columns: 1fr;
    }
    .footer-middle-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 30px;
    }
    .fm-block {
        justify-content: flex-start;
        width: 100%;
    }
    .fm-divider {
        display: none;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .primary-navigation {
        display: none; /* Add mobile menu logic here */
    }
    .section-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .services-split-grid {
        grid-template-columns: 1fr;
    }
    .bottom-feature-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .bfs-item:nth-child(2) {
        border-right: none;
        padding-right: 0;
    }
    .testimonial-card {
        width: calc(50% - 15px);
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    .faq-container {
        flex-direction: column;
        gap: 40px;
    }
    .faq-left, .faq-right {
        width: 100%;
        flex: none;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .spec-header-wrap {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .split-card {
        flex-direction: column;
    }
    .split-card-image {
        min-height: 250px;
    }
    .bottom-feature-strip {
        grid-template-columns: 1fr;
    }
    .bfs-item {
        border-right: none;
        padding-right: 0;
    }
    .testimonial-card {
        width: calc(100% - 0px);
        min-width: calc(100% - 0px);
        max-width: calc(100% - 0px);
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Page Banners
   ========================================================================== */
.page-banner {
    position: relative;
    background-color: #003a20;
    background-image: linear-gradient(rgba(0, 58, 32, 0.85), rgba(0, 34, 18, 0.95)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #ffffff;
}

.banner-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out forwards;
}

.breadcrumbs {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.page-title {
    font-size: 54px;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content, .about-image {
    animation: fadeInUp 1.2s ease-out forwards;
}

.about-image {
    animation-delay: 0.4s;
}

.section-header {
    animation: fadeInUp 1s ease-out forwards;
}

/* New Subtitle Pill */
.ts-subtitle-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: rgba(25, 168, 74, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.ts-subtitle-pill i {
    font-size: 14px;
}
/* Left Text Updates */
.tech-stats-left .ts-title {
    font-size: 44px;
    color: var(--bg-dark);
}
.tech-stats-left .ts-title span {
    color: var(--primary-color);
}
.tech-stats-left .ts-desc {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 450px;
}

/* Serving Clients Box */
.serving-clients-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    background: #f8fbf9;
    border: 1px solid rgba(25, 168, 74, 0.15);
    border-radius: 12px;
    margin-top: 10px;
}
.serving-clients-box .sc-icon {
    width: 40px;
    height: 40px;
    background: rgba(25, 168, 74, 0.15);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.serving-clients-box .sc-text {
    display: flex;
    flex-direction: column;
}
.serving-clients-box .sc-label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.2;
}
.serving-clients-box .sc-value {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2px;
}

/* Premium Glass Stats Box Redesign (Light Theme) */
.glass-stats-box.light-theme {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    gap: 20px;
    padding-top: 35px; /* Space for floating icons */
    height: auto;
    width: 100%;
}

.glass-stats-box.light-theme:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.glass-stats-box.light-theme .glass-stat {
    background: #ffffff;
    border: 1px solid rgba(25, 168, 74, 0.1);
    border-radius: 24px;
    padding: 40px 20px 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
    flex: 1;
}

.glass-stats-box.light-theme .glass-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(25, 168, 74, 0.12), 0 5px 15px rgba(25, 168, 74, 0.05);
    border-color: rgba(25, 168, 74, 0.3);
}

.glass-stats-box.light-theme .gs-icon.solid-green {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), #0d8336);
    color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 25px rgba(25, 168, 74, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin: 0;
}

.glass-stats-box.light-theme .glass-stat:hover .gs-icon.solid-green {
    transform: translate(-50%, -8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(25, 168, 74, 0.45);
}

.glass-stats-box.light-theme .glass-stat.divider::after {
    display: none;
}

.glass-stats-box.light-theme .gs-number.dark-green {
    background: none;
    -webkit-text-fill-color: var(--bg-dark);
    color: var(--bg-dark);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
}

.glass-stats-box.light-theme .gs-label.dark-green-text {
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.9;
}

.glass-stats-box.light-theme .gs-line.small {
    display: none;
}

/* Hide waves for this new premium card layout */
.glass-stats-box.light-theme .stats-bg-waves {
    display: none;
}

/* Map Watermark for wrapper */
.tech-stats-wrapper::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 70%;
    height: 80%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 50"><circle cx="20" cy="25" r="1" fill="%2319A84A" opacity="0.1"/><circle cx="25" cy="20" r="1" fill="%2319A84A" opacity="0.1"/><circle cx="30" cy="28" r="1" fill="%2319A84A" opacity="0.1"/><circle cx="45" cy="15" r="1" fill="%2319A84A" opacity="0.1"/><circle cx="50" cy="25" r="1" fill="%2319A84A" opacity="0.1"/><circle cx="60" cy="20" r="1" fill="%2319A84A" opacity="0.1"/><circle cx="70" cy="30" r="1" fill="%2319A84A" opacity="0.1"/><circle cx="80" cy="18" r="1" fill="%2319A84A" opacity="0.1"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.tech-stats-left, .tech-stats-right {
    z-index: 1;
}

/* ==========================================================================
   Company Owner Section
   ========================================================================== */
.owner-section {
    padding: 100px 0;
    background-color: #f8fbf9;
    position: relative;
    overflow: hidden;
}
.owner-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.owner-image-col {
    flex: 1;
    position: relative;
}
.owner-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 107, 60, 0.15);
}
.owner-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.owner-img-wrapper:hover img {
    transform: scale(1.05);
}
.owner-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(25, 168, 74, 0.3);
    z-index: 2;
}
.owner-badge h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
}
.owner-badge span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.owner-content-col {
    flex: 1.2;
}
.owner-content-col .sub-heading {
    margin-bottom: 15px;
}
.owner-name {
    font-size: 48px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 10px;
    line-height: 1.1;
}
.owner-role {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
.owner-quote {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
}
.owner-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .owner-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-section {
    padding: 50px 0;
    background-color: #ffffff;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.team-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(25, 168, 74, 0.12);
    border-color: rgba(25, 168, 74, 0.2);
}
.team-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-card:hover .team-img img {
    transform: scale(1.08);
}
.team-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}
.team-social a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: background 0.3s, color 0.3s;
}
.team-social a:hover {
    background: var(--primary-color);
    color: #fff;
}
.team-info {
    padding: 30px 20px;
}
.team-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--bg-dark);
    margin: 0 0 5px 0;
}
.team-title {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Partner With Us Section
   ========================================================================== */
.partner-cta-section {
    padding: 40px 0;
    background-color: #003a20;
    position: relative;
    overflow: hidden;
}

/* Abstract Glowing Orbs */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
.orb-1 {
    width: 400px;
    height: 400px;
    background: #19A84A;
    top: -100px;
    left: -100px;
    animation: floatOrb 8s ease-in-out infinite alternate;
}
.orb-2 {
    width: 300px;
    height: 300px;
    background: #008f5d;
    bottom: -50px;
    right: -50px;
    animation: floatOrb 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.cta-glass-card {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.cta-content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.cta-left-col {
    flex: 1.2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(25, 168, 74, 0.1);
    color: #19A84A;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 1px solid rgba(25, 168, 74, 0.2);
}

.cta-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 1px;
}

.cta-main-title span {
    color: #19A84A;
    display: block;
}

.cta-desc {
    font-size: 17px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #19A84A 0%, #008f5d 100%);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(25, 168, 74, 0.3);
    transition: all 0.3s ease;
}

.btn-premium-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(25, 168, 74, 0.4);
    color: #ffffff;
}

.cta-right-col {
    flex: 1;
}

.cta-benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.cta-benefit-item:hover {
    background: rgba(25, 168, 74, 0.05);
    border-color: rgba(25, 168, 74, 0.2);
    transform: translateX(-10px);
}

.cta-benefit-item .b-icon {
    width: 50px;
    height: 50px;
    background: rgba(25, 168, 74, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #19A84A;
    flex-shrink: 0;
}

.cta-benefit-item h4 {
    margin: 0 0 5px 0;
    color: #111111;
    font-size: 18px;
    font-weight: 700;
}

.cta-benefit-item p {
    margin: 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .cta-content-wrapper {
        flex-direction: column;
    }
    .cta-glass-card {
        padding: 40px 30px;
    }
    .cta-main-title {
        font-size: 36px;
    }
}

/* ==========================================================================
   Meet Our Founders Section (Redesign)
   ========================================================================== */
.founders-section {
    padding: 50px 0;
    background-color: #fcfcfc;
    background-image: radial-gradient(#e0ebd4 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

.founders-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.founders-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e8f5ed;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.founders-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 15px;
    margin-top: 1px;
}

.founders-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.founders-desc-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px auto 0 auto;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.founder-card {
    background: #ffffff;
    border-radius: 24px;
    display: flex;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
}

.founder-img-col {
    flex: 0 0 45%;
    position: relative;
    background: linear-gradient(180deg, #e4f5eb 0%, #c4e8d3 100%);
    overflow: hidden;
}

.founder-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    position: absolute;
    bottom: 0;
}

.founder-exp-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35%;
    background: #003a20;
    color: #ffffff;
    padding: 25px 20px;
    border-top-right-radius: 24px;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.1);
}

.founder-exp-badge h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.founder-exp-badge span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #a8cfb7;
    display: block;
    margin-top: 5px;
}

.founder-content-col {
    flex: 1;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin: 0 0 5px 0;
}

.founder-role {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
}

.founder-quote {
    position: relative;
    padding-left: 35px;
    border-left: 3px solid var(--primary-color);
    font-size: 15px;
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    margin-top: 1px;
}

.founder-quote::before {
    content: '\201C';
    position: absolute;
    left: 10px;
    top: -5px;
    font-size: 35px;
    color: var(--primary-color);
    font-family: serif;
    font-weight: bold;
    line-height: 1;
}
.founder-quote::after {
    content: '\201D';
    color: var(--primary-color);
    font-size: 20px;
    font-family: serif;
    font-weight: bold;
    line-height: 1;
    margin-left: 5px;
}

.founder-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: auto; /* Pushes the button to the bottom */
    padding-bottom: 30px;
}

.founder-linkedin-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.founder-linkedin-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* Bottom Stats Bar */
.founders-bottom-stats {
    background-color: #003a20;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    padding: 40px 60px;
    margin-top: 30px;
    box-shadow: 0 20px 40px rgba(0, 58, 32, 0.2);
}

.f-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    flex: 1;
    justify-content: center;
}

.f-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.f-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: yellow;
}

.f-stat-text h4 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.f-stat-text span {
    color: #a8cfb7;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }
    .founders-bottom-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 20px;
        padding: 32px 28px;
    }
    .f-stat-item:not(:last-child)::after {
        display: none;
    }
    .f-stat-item {
        justify-content: flex-start;
        flex: none;
    }
}
@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
    }
    .founder-img-col {
        height: 380px;
        min-height: 380px;
    }
    .founder-img-col img {
        top: 0;
        bottom: auto;
        object-position: center top;
    }
    .founder-exp-badge {
        left: auto;
        right: 0;
        width: auto;
        border-top-right-radius: 0;
        border-top-left-radius: 24px;
    }
}

/* Automatically add check icon to scc-list items */
.scc-list { list-style: none; padding-left: 0; }
.scc-list li { position: relative; padding-left: 28px; margin-bottom: 12px; }
.scc-list li::before { content: "\f058"; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; left: 0; top: 0; color: #19A84A; }
.scc-list li i { display: none; } /* Hide manually added icons if any */

/* Spacing fixes for container and footer */
.container { max-width: 1440px; }
.footer-col .icon-list li { margin-bottom: 8px; }
.footer-col .icon-list li p { margin-bottom: 0; }

/* Fix horizontal scrollbar issue caused by animations */
html, body { overflow-x: hidden; width: 100%; }

/* Reduce gap between newsletter bar and footer columns */
.footer-top { padding-top: 20px !important; padding-bottom: 15px !important; }

/* --- Pagination Styling --- */
.custom-pagination .nav-links { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.custom-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 15px; background: #fff; color: #333; border: 1px solid #eee; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.custom-pagination .page-numbers:hover, .custom-pagination .page-numbers.current { background: #19a84a; color: #fff; border-color: #19a84a; }
.custom-pagination .page-numbers.dots { background: transparent; border: none; color: #666; }

/* --- Custom Page Banners & Blog Filters --- */
    .page-banner {
        position: relative;
        background-color: #000000;
        background-image: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: right center;
        padding: 80px 0 80px 0;
        color: #ffffff;
        overflow: hidden;
        min-height: auto;
    }
    
    .page-banner-bg {
        position: absolute;
        top: -2px; left: -2px; width: calc(100% + 4px); height: calc(100% + 4px);
        background-color: #002212;
        background-image: linear-gradient(135deg, rgba(0, 31, 15, 0.85) 0%, rgba(0, 74, 42, 0.90) 100%), url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
        clip-path: url(#wave-clip);
        z-index: 1;
    }
    
    .banner-wave-lines {
        position: absolute; top:0; left:0; width:100%; height:100%; z-index: 2; pointer-events: none;
    }

    .banner-content-wrapper {
        position: relative;
        z-index: 10;
        max-width: 650px;
    }
    .banner-breadcrumbs {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 20px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #ffffff;
    }
    .banner-breadcrumbs a {
        color: #19A84A;
        text-decoration: none;
    }
    .banner-breadcrumbs .divider {
        margin: 0 8px;
        color: #ffffff;
    }
    .banner-title {
        font-size: 64px;
        font-weight: 800;
        margin: 0 0 15px 0;
        color: #ffffff;
        line-height: 1.1;
    }
    .banner-title span {
        color: #19A84A;
    }
    .banner-divider {
        width: 50px;
        height: 3px;
        background-color: #19A84A;
        margin-bottom: 30px;
    }
    .banner-desc {
        font-size: 18px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.92);
        margin-bottom: 40px;
        max-width: 560px;
        text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
    }
    .banner-desc p,
    .banner-desc span,
    .banner-desc li {
        color: rgba(255, 255, 255, 0.92);
        font-size: inherit;
        line-height: inherit;
        margin-bottom: 0;
    }
    .banner-desc p + p {
        margin-top: 12px;
    }
    .banner-desc strong {
        color: #ffffff;
        font-weight: 700;
    }
    .page-banner .banner-title {
        color: #ffffff !important;
    }
    .page-banner .banner-title span {
        color: #19A84A;
    }
    .banner-stats {
        display: flex;
        gap: 30px;
    }
    .banner-stat-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .banner-stat-icon {
        width: 50px;
        height: 50px;
        border: 1px solid rgba(25, 168, 74, 0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: yellow;
        background-color: rgba(0,0,0,0.2);
    }
    .banner-stat-text h4 {
        margin: 0;
        font-size: 22px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.2;
    }
    .banner-stat-text p {
        margin: 0;
        font-size: 12px;
        color: #b0c4b8;
        line-height: 1.3;
    }
    @media (max-width: 991px) {
        .page-banner-bg {
            clip-path: none;
            width: 100%;
        }
        .banner-wave-lines { display: none; }
        .banner-stats { flex-wrap: wrap; }
    }

    /* Partners Redesign */
    .partners-redesign {
        padding: 30px 0;
        background-color: #ffffff;
        background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
        position: relative;
    }
    .pr-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .pr-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background-color: #e8f5ed;
        color: #19A84A;
        font-size: 13px;
        font-weight: 700;
        padding: 8px 20px;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    .pr-title {
        font-size: 48px;
        font-weight: 800;
        color: #111111;
        margin: 0 0 20px 0;
    }
    .pr-title span {
        color: #19A84A;
    }
    .pr-divider {
        width: 40px;
        height: 3px;
        background-color: #19A84A;
        margin: 0 auto 20px auto;
    }
    .pr-desc {
        font-size: 16px;
        color: #666666;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }
    .pr-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 20px;
        margin-bottom: 40px;
    }
    .pr-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 32px 18px;
        flex: 0 0 210px;
        width: 210px;
        max-width: 220px;
        text-align: center;
        box-shadow: 0 10px 40px rgba(0,0,0,0.04);
        border: 1px solid rgba(0,0,0,0.02);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .pr-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    }
    .pr-card-img {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .pr-card-img img {
        max-height: 100%;
        max-width: 100%;
    }
    .pr-card-img i {
        font-size: 55px;
        color: #444;
    }
    .pr-card-name {
        font-size: 16px;
        font-weight: 700;
        color: #111111;
        margin: 0 0 15px 0;
    }
    .pr-card-line {
        width: 25px;
        height: 2px;
        background-color: #19A84A;
        margin: 0 auto;
    }
    .pr-action {
        text-align: center;
    }
    .pr-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #ffffff;
        border: 1px solid #19A84A;
        color: #19A84A;
        font-size: 14px;
        font-weight: 600;
        padding: 12px 30px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .pr-btn:hover {
        background: #19A84A;
        color: #ffffff;
    }
.blog-filter-bar { box-shadow: 0 4px 15px rgba(0,0,0,0.03); position: relative; z-index: 20; }
.cat-filter-btn { padding: 10px 24px !important; border-radius: 30px !important; border: 1px solid #e5e5e5 !important; background: #ffffff !important; color: #555555 !important; font-weight: 600 !important; font-size: 14px !important; cursor: pointer !important; transition: all 0.3s ease !important; text-transform: capitalize !important; letter-spacing: 0 !important; }
.cat-filter-btn:hover, .cat-filter-btn.active { background: #19A84A !important; color: #ffffff !important; border-color: #19A84A !important; box-shadow: 0 4px 10px rgba(25, 168, 74, 0.2) !important; }
.blog-loader { display: none; text-align: center; padding: 50px 0; width: 100%; grid-column: 1 / -1; }
.blog-loader i { font-size: 40px; color: #19a84a; animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.blog-grid { transition: opacity 0.3s ease; }
.blog-grid.loading { opacity: 0.5; }

/* Site Preloader */
#site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.preloader-logo {
    max-height: 80px;
    width: auto;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}
.preloader-counter {
    font-size: 24px;
    font-weight: 700;
    color: #19A84A;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}
.preloader-bar-container {
    width: 200px;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}
.preloader-bar {
    height: 100%;
    width: 0%;
    background-color: #19A84A;
    transition: width 0.1s linear;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   Home Page Robust Responsive Overrides
   ========================================================================== */

/* Laptop / Tablets Landscape (max-width: 1199px) */
@media (max-width: 1199px) {
    .hero-features-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 20px; }
    .services-split-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
}

/* Tablets Portrait (max-width: 991px) */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 42px !important; line-height: 1.2 !important; }
    .hero-features-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .about-inner { flex-direction: column !important; text-align: center; gap: 30px; }
    .about-content, .about-image { width: 100% !important; max-width: 100% !important; }
    .about-signature-box { justify-content: center !important; }
    .tech-stats-wrapper { flex-direction: column !important; text-align: center; gap: 40px; }
    .tech-stats-left, .tech-stats-right { width: 100% !important; max-width: 100% !important; }
    .serving-clients-box { justify-content: center !important; margin-top: 20px; }
    .spec-header-wrap { flex-direction: column !important; align-items: center !important; text-align: center; gap: 20px; }
    .spec-header-left, .spec-header-right { width: 100% !important; justify-content: center !important; }
    .bottom-feature-strip { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
    .section-title { font-size: 36px !important; }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .footer-top-inner { gap: 10px !important; }
    .footer-col > *:last-child { margin-bottom: 0 !important; }
    .col-title { margin-bottom: 15px !important; }
    .social-icons { margin-bottom: 15px !important; }
    .about-signature-box { flex-direction: column !important; text-align: center; gap: 15px; }
    .signature-info strong { font-size: 16px !important; }
    .signature-info span { font-size: 13px !important; display: block; }
    .hero-section { padding: 60px 0 !important; }
    .hero-content h1 { font-size: 32px !important; }
    .hero-content p { font-size: 16px !important; }
    .hero-features-grid { grid-template-columns: 1fr !important; }
    .services-split-grid { grid-template-columns: 1fr !important; }
    .split-card { flex-direction: column !important; }
    .split-card-image { min-height: 200px; width: 100%; display: block !important; }
    .blog-grid { grid-template-columns: 1fr !important; }
    .bottom-feature-strip { grid-template-columns: 1fr !important; }
    .glass-stats-box { flex-direction: column !important; gap: 20px; padding: 20px !important; }
    .glass-stat { flex-direction: column !important; text-align: center; width: 100%; }
    .glass-stat.divider .gs-line { display: none !important; }
    .case-categories .category-filter-list { flex-direction: column !important; align-items: center; }
    .case-categories .category-filter-list li { width: 100%; }
    .case-categories .category-filter-list li a { display: block; text-align: center; width: 100%; }
    .section-title { font-size: 28px !important; }
    .sub-heading { font-size: 14px !important; }
    .partners-section { padding: 40px 0 !important; }
    .tech-stats-section { padding: 50px 0 !important; }
    .specialization-section { padding: 50px 0 !important; }
    .case-studies-section { padding: 50px 0 !important; }
    .latest-blogs-section { padding: 50px 0 !important; }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 28px !important; }
    .hero-content .btn { width: 100% !important; text-align: center; margin-bottom: 10px; display: block; }
}

/* ==========================================================================
   Mobile Sidebar Menu Styles
   ========================================================================== */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f291e;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 15px;
    right: -100%;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    background: #ffffff;
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mobile-sidebar.active {
    right: 15px;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #1a1a1a;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.mobile-sidebar-close:hover {
    transform: rotate(90deg);
}

.mobile-sidebar-body {
    padding: 0 20px 20px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-nav-menu li {
    margin-bottom: 5px;
}

.mobile-nav-menu li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-nav-menu li.current-menu-item a {
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
    color: #003a20;
}

.mobile-nav-menu li.current-menu-item a .menu-item-icon {
    color: #003a20;
}

.menu-item-icon {
    margin-right: 15px;
    color: #19A84A;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.menu-item-text {
    flex: 1;
    text-align: left;
}

.menu-item-arrow {
    font-size: 14px;
    color: #1a1a1a;
}

.mobile-nav-menu li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.mobile-nav-menu li ul.sub-menu {
    list-style: none;
    padding: 0 0 0 12px;
    margin: 0 0 8px 20px;
    border-left: 2px solid #dcfce7;
    display: none;
    overflow: hidden;
}

.mobile-nav-menu li.has-mobile-submenu.submenu-open > ul.sub-menu {
    display: block;
}

.mobile-nav-menu li.has-mobile-submenu > .mobile-menu-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
}

.mobile-nav-menu li.has-mobile-submenu > .mobile-menu-row > a {
    flex: 1;
    min-width: 0;
    border-radius: 8px 0 0 8px;
}

.mobile-submenu-toggle {
    flex-shrink: 0;
    width: 52px;
    margin: 0;
    padding: 0;
    border: none;
    border-bottom: 1px solid #f5f5f5;
    background: transparent;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 8px 8px 0;
    transition: color 0.3s ease, background 0.3s ease;
}

.mobile-submenu-toggle:hover,
.mobile-submenu-toggle:focus {
    color: var(--primary-color);
    background: #f0fdf4;
    outline: none;
}

.mobile-nav-menu li.has-mobile-submenu.submenu-open > .mobile-menu-row > a,
.mobile-nav-menu li.has-mobile-submenu.submenu-open > .mobile-menu-row > .mobile-submenu-toggle {
    background-color: #f0fdf4;
    border-color: #dcfce7;
}

.mobile-nav-menu li.has-mobile-submenu > a .menu-item-arrow {
    transition: transform 0.3s ease;
}

.mobile-nav-menu li ul.sub-menu li {
    margin-bottom: 4px;
}

.mobile-nav-menu li ul.sub-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-menu li ul.sub-menu li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.mobile-nav-menu li ul.sub-menu li.current-menu-item a,
.mobile-nav-menu li ul.sub-menu li.current_page_item a {
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
    color: #003a20;
}

.menu-item-icon--dot {
    font-size: 8px !important;
}

.menu-item-icon--sub {
    font-size: 14px !important;
}

.mobile-header-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.mobile-header-actions .btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
}

.mobile-header-actions .btn-icon {
    margin-right: 10px;
    font-size: 18px;
}

.mobile-get-in-touch {
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

.git-title {
    font-size: 16px;
    font-weight: 700;
    color: #003a20;
    margin-bottom: 15px;
}

.git-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.git-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.git-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f0fdf4;
    color: #19A84A;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 14px;
    flex-shrink: 0;
}

.git-text {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
}

.git-socials {
    display: flex;
    gap: 15px;
}

.git-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #003a20;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    transition: background 0.3s ease;
}

.git-socials a:hover {
    background: var(--primary-color);
}

@media (max-width: 991px) {
    .primary-navigation, .header-actions {
        display: none !important;
    }
    .main-nav-inner {
        justify-content: space-between;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

/* ==========================================================================
   Hero Swiper & Video
   ========================================================================== */
.hero-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-bottom: 40px;
}

.hero-video {
    flex: 1;
    max-width: 50%;
    padding-left: 40px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-fancybox-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-fancybox-link:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(25, 168, 74, 0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding-left: 5px; /* Offset for perfect triangle centering */
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(25, 168, 74, 0.4);
}

.video-fancybox-link:hover .play-btn-overlay {
    background: #fff;
    color: #19A84A;
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-swiper .swiper-pagination {
    bottom: 0px !important;
}

.hero-swiper .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* ==========================================================================
   Premium Solutions Page Styles
   ========================================================================== */

/* Trusted Section */
.trusted-section {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}
.trusted-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}
.trusted-label {
    font-size: 15px;
    font-weight: 700;
    color: #444;
    white-space: nowrap;
}
.trusted-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-around;
}
.trusted-logos .logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #999;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.trusted-logos .accenture { text-transform: lowercase; font-weight: 700; font-family: sans-serif; }

/* Solution Blocks & Backgrounds */
.solution-block {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.bg-light-green { background: #f4fbf6; }
.border-bottom-soft { border-bottom: 1px solid #eaeaea; }

.dot-pattern-bg {
    position: absolute;
    top: -30px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#19A84A 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.15;
    z-index: 0;
}

.solution-grid {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}
.solution-grid.row-reverse {
    flex-direction: row-reverse;
}
.solution-image-col, .solution-text-col {
    flex: 1;
}

/* Images & Glass Effects */
.glass-effect {
    position: relative;
    border-radius: 24px;
    overflow: visible; /* To allow badges to float outside */
}
.glass-effect img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}
.premium-shadow {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.badge-bottom-left {
    bottom: -25px;
    left: -25px;
}
.badge-bottom-right {
    bottom: -25px;
    right: -25px;
}
.badge-icon {
    width: 48px;
    height: 48px;
    background: #e8f7ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.badge-icon.soft-green i {
    color: #19A84A;
}
.badge-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 3px;
}
.badge-text span {
    font-size: 13px;
    font-weight: 500;
    color: #777;
}

/* Digital Screen Overlay */
.digital-screen-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-width: 250px;
}
.screen-time { font-size: 14px; color: #19A84A; text-align: right; margin-bottom: 10px; font-weight: 600; }
.screen-route strong { font-size: 22px; display: block; margin-bottom: 5px; }
.screen-route span { font-size: 16px; color: #aaa; }
.screen-icon { position: absolute; bottom: 20px; right: 30px; font-size: 24px; color: #19A84A; }

/* Text Content */
.solution-subtitle {
    display: inline-block;
    color: #19A84A;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}
.solution-title {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}
.solution-desc {
    font-size: 18px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.solution-desc p {
    margin: 0 0 1em;
}
.solution-desc p:last-child {
    margin-bottom: 0;
}

/* Features Pill Grid */
.feature-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}
.soft-pill {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(25, 168, 74, 0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.soft-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: rgba(25, 168, 74, 0.3);
}
.soft-pill i {
    color: #19A84A;
    font-size: 18px;
}

/* Buttons */
.premium-btn {
    border-radius: 50px !important;
    padding: 16px 36px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(25, 168, 74, 0.2);
    position: relative;
    z-index: 1;
}
.premium-btn-outline {
    border-radius: 50px !important;
    padding: 16px 36px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    border: 2px solid #19A84A !important;
    color: #19A84A !important;
    background: transparent !important;
    position: relative;
    z-index: 1;
}
.premium-btn-outline:hover {
    background: #19A84A !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(25, 168, 74, 0.2);
}

/* OEM Grid Layout */
.oem-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.oem-header .solution-subtitle {
    margin-bottom: 15px;
}
.oem-section {
    padding: 100px 0;
    background: #f0f9f3;
}
.max-w-600 { max-width: 600px; text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.oem-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.premium-hover {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f2f2f2;
}
.premium-hover:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}
.oem-image {
    height: 180px;
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 0;
}
.oem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.premium-hover:hover .oem-image img {
    transform: scale(1.1);
}
.oem-content {
    padding: 20px 25px 30px;
}
.oem-content h3 {
    font-size: 20px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 12px;
    color: #111;
}
.oem-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}
.transition-arrow {
    transition: transform 0.3s ease;
}
.learn-more-link {
    color: #19A84A;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.learn-more-link:hover .transition-arrow {
    transform: translateX(5px);
}

/* Get in Touch CTA */
/* ==========================================================================
   Premium Parallax CTA Section
   ========================================================================== */
.premium-parallax-cta {
    position: relative;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.parallax-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}
.cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10, 31, 22, 0.85) 0%, rgba(15, 41, 30, 0.95) 100%);
    z-index: 1;
}
.premium-parallax-cta .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}
.glass-cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 50px 60px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
}
.glass-cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.premium-parallax-cta .cta-subtitle {
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: #19A84A;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(25, 168, 74, 0.3);
}
.glass-cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -1px;
}
.glass-cta-desc {
    font-size: 18px;
    color: #ffffff !important;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 991px) {
    .glass-cta-card { padding: 50px 30px; }
    .glass-cta-title { font-size: 40px; }
}
@media (max-width: 767px) {
    .glass-cta-card { padding: 40px 20px; }
    .glass-cta-title { font-size: 32px; }
    .glass-cta-desc { font-size: 18px; }
}
.flex-center-gap {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.premium-btn-outline-white {
    border: 2px solid rgba(255,255,255,0.3) !important;
    color: #fff !important;
}
.premium-btn-outline-white:hover {
    border-color: #fff !important;
    background: #fff !important;
    color: #0f291e !important;
}
.premium-parallax-cta .btn-primary,
.premium-parallax-cta .premium-btn,
.premium-parallax-cta .btn,
.premium-parallax-cta a.btn {
    background-color: #19A84A !important;
    border: 2px solid #19A84A !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(25, 168, 74, 0.4) !important;
    font-weight: 700 !important;
    padding: 16px 36px !important;
    border-radius: 50px !important;
}
.premium-parallax-cta .btn-primary:hover,
.premium-parallax-cta .premium-btn:hover,
.premium-parallax-cta .btn:hover,
.premium-parallax-cta a.btn:hover {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #19A84A !important;
    box-shadow: 0 15px 25px rgba(255, 255, 255, 0.2) !important;
}

/* Responsive Overrides */
@media (max-width: 1199px) {
    .solution-grid { gap: 40px; }
    .solution-title { font-size: 36px; }
}
@media (max-width: 991px) {
    .solution-block { padding: 60px 0; overflow: hidden; }
    .solution-grid, .solution-grid.row-reverse { flex-direction: column; gap: 40px; }
    .solution-grid .solution-image-col { order: -1; }
    .solution-grid .solution-text-col { order: 0; }
    .solution-block .image-wrapper.glass-effect {
        overflow: hidden;
        border-radius: 20px;
    }
    .solution-block .floating-badge {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        transform: none;
        margin: 20px auto 0;
        width: fit-content;
        max-width: calc(100% - 24px);
    }
    .oem-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .feature-grid-2x2 { grid-template-columns: 1fr; }
    .trusted-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 767px) {
    .solution-title { font-size: 32px; }
    .solution-desc { font-size: 16px; }
    .solution-subtitle { font-size: 12px; letter-spacing: 1px; }
    .solution-block .dot-pattern-bg {
        width: 120px;
        height: 120px;
        right: -10px;
        top: -10px;
    }
    .soft-pill {
        padding: 14px 16px;
        font-size: 14px;
    }
    .soft-pill .dashicons {
        flex-shrink: 0;
    }
    .solution-btn.premium-btn,
    .solution-btn.premium-btn-outline {
        width: 100%;
        justify-content: center;
    }
    .oem-grid-4 { grid-template-columns: 1fr; }
    .oem-section { padding: 60px 0; }
    .premium-git .git-cta-title { font-size: 36px; }
    .flex-center-gap { flex-direction: column; }
    .premium-btn, .premium-btn-outline, .premium-btn-outline-white { width: 100%; justify-content: center; }
}


/* ==========================================================================
   Expertise Section (Industries Page)
   ========================================================================== */
.expertise-section {
    padding: 70px 0 80px;
    background-color: #f8fbf9;
}
.expertise-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.expertise-subtitle {
    color: #148038;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    background: rgba(25, 168, 74, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(25, 168, 74, 0.15);
}
.expertise-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.expertise-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, #19A84A, #4ce683);
    border-radius: 4px;
    margin: 18px auto 0;
}
.expertise-title span {
    background: linear-gradient(135deg, #19A84A 0%, #005a30 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.expertise-desc {
    font-size: 17px;
    color: #5c6b63;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}
.expertise-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(25, 168, 74, 0.12);
}
.ec-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.ec-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.expertise-card:hover .ec-image-wrap img {
    transform: scale(1.05);
}
.ec-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 55%);
    pointer-events: none;
}
.ec-icon {
    position: absolute;
    bottom: 16px;
    left: 20px;
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #19A84A;
    z-index: 2;
}
.ec-icon .dashicons {
    font-size: 26px;
    width: 26px;
    height: 26px;
}
.ec-content {
    padding: 28px 26px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ec-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.35;
}
.ec-desc {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 20px;
    flex: 1 1 auto;
}
.ec-content strong {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-right: 5px;
}
.ec-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    background: #f4faf6;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(25, 168, 74, 0.1);
}
.ec-tag {
    background: #ffffff;
    color: #148038;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(25, 168, 74, 0.18);
    transition: all 0.3s ease;
}
.ec-tag:hover {
    background: #19A84A;
    color: #ffffff;
}
.ec-btn-wrap {
    margin-top: auto;
    display: flex;
    justify-content: center;
    text-align: center;
}
.ec-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #19A84A 0%, #0d6e32 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(25, 168, 74, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.ec-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}
.ec-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(25, 168, 74, 0.35);
}
.ec-btn:hover .dashicons {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .expertise-section {
        padding: 50px 0 60px;
    }
    .expertise-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Case Studies Section (Industries & Home)
   ========================================================================== */
.case-studies-section {
    padding: 80px 0;
    background-color: #ffffff;
}
.industries-page .case-studies-section {
    background-color: #f8fbf9;
}
.case-studies-section .section-header {
    margin-bottom: 36px;
}
.case-categories {
    text-align: center;
    margin-bottom: 36px;
}
.category-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.home-case-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    border: 1px solid #ddd;
    color: #444;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.home-case-filter-btn:hover {
    border-color: #19A84A;
    color: #19A84A;
}
.home-case-filter-btn.is-active {
    background: linear-gradient(135deg, #19A84A 0%, #0d6e32 100%);
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(25, 168, 74, 0.28);
}
.case-studies-grid-wrap {
    transition: opacity 0.3s ease;
}
.case-studies-section .blog-grid {
    margin-top: 0;
}
.case-studies-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    font-size: 16px;
    padding: 40px 0;
    margin: 0;
}
.case-studies-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    text-align: center;
}
.case-studies-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    color: #19A84A;
    border: 2px solid #19A84A;
    background: transparent;
    transition: all 0.3s ease;
}
.case-studies-more-btn:hover {
    background: #19A84A;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 168, 74, 0.25);
}
.case-studies-more-btn i {
    transition: transform 0.3s ease;
}
.case-studies-more-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .case-studies-section {
        padding: 50px 0;
    }
    .case-categories .category-filter-list {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }
    .case-categories .category-filter-list li {
        width: 100%;
    }
    .home-case-filter-btn {
        width: 100%;
    }
}

/* Newsletter Messages */
.newsletter-msg-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    margin-top: 15px;
    animation: fadeIn 0.4s ease;
}
.newsletter-msg-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}
.newsletter-msg-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Single Post (Blog Article) Reference Layout
   ========================================================================== */
/* Hero Section */
.sp-hero {
    position: relative;
    padding: 90px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}
.sp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 20, 12, 0.55) 0%, rgba(0, 0, 0, 0.82) 100%);
    z-index: 1;
}
.sp-hero-container {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
}
.sp-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.sp-hero-badge-wrap {
    margin-bottom: 22px;
}
.sp-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #19A84A 0%, #0d6e32 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    box-shadow: 0 4px 14px rgba(25, 168, 74, 0.35);
}
.sp-title {
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 28px;
    color: #ffffff !important;
    text-align: center;
    max-width: 900px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.sp-hero h1.sp-title {
    color: #ffffff !important;
    margin-bottom: 28px;
}
.sp-meta-ref {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}
.sp-meta-item {
    display: inline-flex;
    align-items: center;
}
.sp-meta-item i {
    color: #4ce683;
    margin-right: 8px;
    font-size: 16px;
}

/* Content Area */
.sp-content-section-ref {
    padding: 80px 0;
    background: #fff;
}
.sp-article-ref {
    margin-bottom: 50px;
}
.sp-content-ref {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}
/* Drop Cap for first paragraph */
.sp-content-ref > p:first-of-type::first-letter {
    font-size: 64px;
    font-weight: 800;
    color: #19A84A;
    float: left;
    line-height: 1;
    margin-right: 12px;
    margin-top: -4px;
}
.sp-content-ref h2, .sp-content-ref h3, .sp-content-ref h4 {
    color: #222;
    margin: 40px 0 20px;
    font-weight: 700;
}
.sp-content-ref h2 { font-size: 28px; }
.sp-content-ref h3 { font-size: 22px; }
.sp-content-ref p { margin-bottom: 20px; }
.sp-content-ref img {
    max-width: 75%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .sp-content-ref img {
        max-width: 100%;
    }
}
/* Custom List Styling */
.sp-content-ref ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}
.sp-content-ref ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}
.sp-content-ref ul li::before {
    content: '\f058'; /* FontAwesome check-circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #19A84A;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
}
/* Blockquote */
.sp-content-ref blockquote {
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: #333;
    padding: 25px 30px 25px 60px;
    margin: 40px 0;
    background: #f0f9f3;
    border-radius: 8px;
    position: relative;
    border-left: none;
}
.sp-content-ref blockquote::before {
    content: '\f10d'; /* quote-left */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: rgba(25, 168, 74, 0.4);
    font-size: 30px;
    position: absolute;
    left: 20px;
    top: 25px;
}

/* Post Navigation Box */
.sp-post-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    margin-top: 60px;
    border: 1px solid #eee;
}
.sp-nav-link {
    flex: 1;
}
.sp-nav-link a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    transition: all 0.3s ease;
}
.sp-nav-link a:hover {
    color: #19A84A;
}
.sp-nav-link a i {
    color: #19A84A;
    font-size: 20px;
}
.sp-nav-text {
    display: flex;
    flex-direction: column;
}
.sp-nav-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    font-weight: 700;
    margin-bottom: 5px;
}
.sp-nav-title {
    font-size: 15px;
    font-weight: 600;
}
.sp-nav-divider {
    width: 1px;
    height: 50px;
    background: #ddd;
    margin: 0 20px;
}

/* Sidebar Widgets */
.sp-sidebar {
    padding-left: 30px;
}
.sp-widget {
    margin-bottom: 40px;
}
.sp-widget-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
}
.sp-widget-title::after {
    content: '';
    height: 2px;
    width: 30px;
    background: #19A84A;
    margin-left: 15px;
}

/* TOC Auto styling */
#sp-toc-container {
    display: flex;
    flex-direction: column;
}
.toc-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #444;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.toc-item:last-child {
    border-bottom: none;
}
.toc-item:hover, .toc-item.active {
    color: #19A84A;
}
.toc-number {
    color: #19A84A;
    font-weight: 800;
    font-size: 14px;
}

/* CTA Widget */
.sp-cta-widget {
    background: linear-gradient(135deg, #f0f9f3 0%, #e0f2e6 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}
.sp-cta-widget h3 {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}
.sp-cta-widget p {
    font-size: 14px;
    color: #444;
    margin-bottom: 25px;
}
.sp-cta-btn {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Read Next Section */
.sp-related-posts-ref {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #eee;
}
.sp-section-title-ref {
    font-size: 24px;
    font-weight: 800;
    color: #222;
    display: flex;
    align-items: center;
}
.sp-section-title-ref::after {
    content: '';
    height: 2px;
    width: 40px;
    background: #19A84A;
    margin-left: 15px;
}
.sp-rel-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.sp-rel-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.sp-related-row {
    margin-top: 30px;
}
.sp-rel-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.sp-rel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.sp-rel-card:hover .sp-rel-img img {
    transform: scale(1.05);
}
.sp-rel-content {
    padding: 22px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.sp-rel-badge {
    background: #19A84A;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    bottom: 12px;
    left: 16px;
    z-index: 10;
}
.sp-rel-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    flex: 1;
}
.sp-rel-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}
.sp-rel-title a {
    color: #222;
}
.sp-rel-title a:hover {
    color: #19A84A;
}
.sp-rel-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #888;
    font-weight: 500;
    margin-top: auto;
}
.sp-rel-meta i {
    color: #19A84A;
}
.sp-rel-dot {
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .sp-sidebar { padding-left: 0; margin-top: 50px; }
}
@media (max-width: 768px) {
    .sp-title { font-size: 36px; }
    .sp-hero { padding: 80px 0; min-height: 400px; }
    .sp-post-nav { flex-direction: column; gap: 20px; align-items: center; }
    .sp-nav-divider { width: 100%; height: 1px; margin: 10px 0; }
    .sp-nav-link.sp-nav-next a { flex-direction: row-reverse; justify-content: space-between; width: 100%; }
    .sp-nav-link.sp-nav-next .sp-nav-text { text-align: left !important; }
}
/* Basic Grid System for Single Post Layout */
.row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; }
.col-lg-8, .col-lg-4, .col-lg-6, .col-lg-3, .col-md-6, .col-md-3 { padding-right: 15px; padding-left: 15px; width: 100%; box-sizing: border-box; }
@media (min-width: 768px) { 
    .col-md-6 { flex: 0 0 50%; max-width: 50%; } 
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
}
@media (min-width: 992px) { 
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; } 
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
}
.mb-4 { margin-bottom: 24px; }

/* =========================================
   PARTNER PAGE STYLES - PREMIUM UPGRADE
   ========================================= */
/* Hero Section */
.partner-hero {
    position: relative;
    padding: 60px 0;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.partner-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(8, 25, 12, 0.95) 0%, rgba(25, 168, 74, 0.6) 100%);
    z-index: 1;
}
.partner-hero-container {
    position: relative;
    z-index: 2;
}
.partner-hero .banner-title,
.partner-hero .banner-title span {
    color: #ffffff !important;
}
.partner-hero .banner-divider {
    background: #19A84A;
}
.badge-opp {
    background: linear-gradient(90deg, #19A84A, #148f3e);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(25, 168, 74, 0.4);
    text-transform: uppercase;
}
.partner-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-top: 1px;
}
.text-primary-green {
    color: #4ce683 !important; /* Lighter green to pop on dark bg */
    text-shadow: 0 0 20px rgba(76, 230, 131, 0.4);
}
.partner-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #e0f2e5;
    max-width: 95%;
    font-weight: 400;
}
.partner-hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-green-solid {
    background: linear-gradient(135deg, #19A84A, #127c36);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(25, 168, 74, 0.3);
}
.btn-green-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(25, 168, 74, 0.5);
    color: #fff;
}
.btn-green-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
}
.btn-green-outline:hover {
    background: #fff;
    color: #19A84A;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.btn-green-outline-dark {
    background: transparent;
    color: #19A84A;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #19A84A;
    transition: all 0.4s ease;
}
.btn-green-outline-dark:hover {
    background: #19A84A;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(25, 168, 74, 0.2);
}

/* Hero Stats Grid (Premium Dark Glass) */
.hero-stats-grid {
    width: 100%;
}

.partner-hero .hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
    width: 100%;
}

.partner-hero .hero-stats-grid > .stat-grid-item,
.partner-hero .hero-stats-grid > .col-md-6 {
    flex: none;
    max-width: none;
    width: auto;
    padding: 0;
    margin: 0;
}

.hero-stats-grid .stat-card {
    background: linear-gradient(145deg, rgba(20, 38, 25, 0.95) 0%, rgba(12, 24, 15, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(25, 168, 74, 0.4);
    padding: 22px 15px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), inset 0 2px 20px rgba(255,255,255,0.02);
    position: relative;
    overflow: hidden;
}
.hero-stats-grid .stat-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(25,168,74,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.hero-stats-grid .stat-card:hover::before {
    opacity: 1;
}
.hero-stats-grid .stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(25, 168, 74, 0.6);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 20px rgba(25, 168, 74, 0.2);
}
.stat-icon {
    font-size: 24px;
    color: yellow;
    background: linear-gradient(135deg, rgba(25, 168, 74, 0.2), rgba(20, 143, 62, 0.1));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 15px;
    box-shadow: 0 0 15px rgba(25, 168, 74, 0.3);
    border: 1px solid rgba(25, 168, 74, 0.3);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-icon .dashicons {
    width: 24px;
    height: 24px;
    font-size: 24px;
    line-height: 1;
}
.hero-stats-grid h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 5px;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
    margin-top: 1px;
}
.hero-stats-grid p {
    font-size: 13px;
    color: #a3c9b1;
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 2;
}

/* Sections Common */
.bg-light-gray { background-color: #f8faf9; }
.bg-offwhite { background-color: #ffffff; }

.section-heading, .section-header, .oem-header {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center !important; /* Force center alignment */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.small-heading {
    display: inline-block;
    background: rgba(25, 168, 74, 0.1);
    color: #19A84A;
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(25, 168, 74, 0.05);
}
.section-title {
    font-size: 46px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #19A84A, #4ce683);
    border-radius: 4px;
}
.section-heading p,
.section-lead {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
.text-muted,
.section-lead.text-muted {
    color: #666 !important;
}

/* Benefits Card */
.benefit-card {
    background: #fff;
    padding: 28px 22px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, #19A84A, #4ce683);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(25, 168, 74, 0.08);
}
.benefit-card:hover::before {
    transform: scaleX(1);
}
.b-icon {
    font-size: 24px;
    background: linear-gradient(135deg, #e8f7ed, #c1ecd0);
    width: 50px; height: 50px;
    border-radius: 50%;
    color: #19A84A;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.b-icon .dashicons {
    width: 24px;
    height: 24px;
    font-size: 24px;
    line-height: 1;
}
.benefit-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
    margin-top: 1px;
}
.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Partner section spacing */
.partner-benefits {
    padding: 60px 0;
}

/* =========================================
   CHOOSE YOUR MODEL — PREMIUM REDESIGN
   ========================================= */
.partner-models-premium {
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;
    background: linear-gradient(165deg, #f4faf6 0%, #e8f3ec 45%, #f7fbf8 100%);
    z-index: 1;
}
.partner-models-premium > .container {
    position: relative;
    z-index: 2;
}
.partner-models-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.partner-models-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}
.partner-models-orb--1 {
    width: 480px;
    height: 480px;
    top: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(25, 168, 74, 0.18) 0%, transparent 70%);
}
.partner-models-orb--2 {
    width: 360px;
    height: 360px;
    top: 40%;
    right: -60px;
    background: radial-gradient(circle, rgba(0, 104, 55, 0.12) 0%, transparent 70%);
}
.partner-models-orb--3 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: 35%;
    background: radial-gradient(circle, rgba(25, 168, 74, 0.1) 0%, transparent 70%);
}

.partner-models-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.partner-models-eyebrow {
    display: inline-block;
    background: rgba(25, 168, 74, 0.12);
    color: #148038;
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(25, 168, 74, 0.15);
}
.partner-models-title {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 900;
    color: #111;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin: 0 0 16px;
}
.partner-models-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, #19A84A, #4ce683);
    border-radius: 4px;
    margin: 18px auto 0;
}
.partner-models-lead {
    font-size: 17px;
    color: #5a6b62;
    line-height: 1.65;
    margin: 0;
}

.partner-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.partner-model-card {
    position: relative;
    border-radius: 24px;
    background: #fff;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.partner-model-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(25, 168, 74, 0.25), rgba(255, 255, 255, 0) 50%, rgba(25, 168, 74, 0.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.partner-model-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 24px 56px rgba(25, 168, 74, 0.14);
}
.partner-model-card:hover::before {
    opacity: 1;
}

.partner-model-card--featured {
    border: 2px solid #19A84A;
    box-shadow:
        0 4px 8px rgba(25, 168, 74, 0.08),
        0 20px 60px rgba(25, 168, 74, 0.18);
    transform: translateY(-8px);
    z-index: 2;
}
.partner-model-card--featured:hover {
    transform: translateY(-14px);
    box-shadow:
        0 8px 16px rgba(25, 168, 74, 0.1),
        0 32px 72px rgba(25, 168, 74, 0.22);
}
.partner-model-card--featured::before {
    opacity: 1;
    background: linear-gradient(145deg, #19A84A, rgba(25, 168, 74, 0.2) 40%, #4ce683);
}

.partner-model-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #19A84A 0%, #0d6e32 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(25, 168, 74, 0.4);
    z-index: 3;
}

.partner-model-card__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 36px 32px 32px;
    text-align: center;
}
.partner-model-card--featured .partner-model-card__inner {
    padding-top: 44px;
}

.partner-model-card__top {
    flex: 1 1 auto;
    width: 100%;
}

.partner-model-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 20px;
    background: linear-gradient(145deg, #e8f7ed 0%, #d0edd9 100%);
    box-shadow: 0 8px 24px rgba(25, 168, 74, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.partner-model-card:hover .partner-model-icon {
    transform: scale(1.06);
    box-shadow: 0 12px 28px rgba(25, 168, 74, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.partner-model-card--featured .partner-model-icon {
    background: linear-gradient(145deg, #19A84A 0%, #127c36 100%);
    box-shadow: 0 10px 28px rgba(25, 168, 74, 0.35);
}
.partner-model-icon .dashicons {
    font-size: 34px;
    width: 34px;
    height: 34px;
    color: #19A84A;
}
.partner-model-card--featured .partner-model-icon .dashicons {
    color: #fff;
}

.partner-model-name {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0 0 14px;
    letter-spacing: -0.3px;
}
.partner-model-desc {
    font-size: 14.5px;
    color: #5c6b63;
    line-height: 1.75;
    margin: 0;
    min-height: 78px;
}

.partner-model-pricing {
    margin: 28px 0 26px;
    padding: 20px 16px;
    border-radius: 16px;
    width: 100%;
    background: linear-gradient(135deg, rgba(25, 168, 74, 0.07) 0%, rgba(25, 168, 74, 0.03) 100%);
    border: 1px solid rgba(25, 168, 74, 0.1);
}
.partner-model-card--featured .partner-model-pricing {
    background: linear-gradient(135deg, rgba(25, 168, 74, 0.12) 0%, rgba(25, 168, 74, 0.05) 100%);
    border-color: rgba(25, 168, 74, 0.18);
}
.partner-model-amount {
    display: block;
    font-size: 38px;
    font-weight: 900;
    color: #148038;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 6px;
}
.partner-model-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #7a8f84;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.partner-model-action {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: auto;
    text-align: center;
}
.partner-model-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #19A84A 0%, #0d6e32 100%);
    box-shadow: 0 8px 24px rgba(25, 168, 74, 0.3);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.3s ease;
}
.partner-model-btn svg {
    transition: transform 0.3s ease;
}
.partner-model-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(25, 168, 74, 0.4);
    gap: 14px;
}
.partner-model-btn:hover svg {
    transform: translateX(3px);
}
.partner-model-card--featured .partner-model-btn {
    background: linear-gradient(135deg, #111 0%, #1e3d28 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.partner-model-card--featured .partner-model-btn:hover {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

@media (max-width: 991px) {
    .partner-models-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
        gap: 32px;
    }
    .partner-model-card--featured {
        transform: none;
        order: -1;
    }
    .partner-model-card--featured:hover {
        transform: translateY(-8px);
    }
    .partner-models-premium {
        padding: 70px 0 80px;
    }
}

@media (max-width: 768px) {
    .partner-hero { padding: 80px 0; }
    .partner-hero .banner-title { font-size: 34px; }
    .partner-title { font-size: 34px; }
    .app-form-card { padding: 30px 20px; }
    .partner-model-card__inner {
        padding: 32px 24px 28px;
    }
    .partner-model-desc {
        min-height: auto;
    }
}

/* =========================================
   APPLICATION FORM STYLES
   ========================================= */
.app-form-section {
    padding: 80px 0;
    background: #ffffff;
}
.app-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: none;
}
.premium-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.premium-form-grid .col-span-1 { grid-column: span 1; }
.premium-form-grid .col-span-2 { grid-column: span 2; }
.premium-form-grid .col-span-3 { grid-column: span 3; }
.premium-form-grid .col-span-4 { grid-column: span 4; }

@media (max-width: 991px) {
    .premium-form-grid { grid-template-columns: repeat(2, 1fr); }
    .premium-form-grid .col-span-1 { grid-column: span 1; }
    .premium-form-grid .col-span-2 { grid-column: span 2; }
    .premium-form-grid .col-span-4 { grid-column: span 2; }
}
@media (max-width: 767px) {
    .premium-form-grid { grid-template-columns: 1fr; gap: 20px; }
    .premium-form-grid > div:not(.form-submit-container) { grid-column: span 1 !important; }
    .premium-form-grid > .form-submit-container { grid-column: 1 / -1 !important; }
    .app-form-card { padding: 30px 20px; }
}

.app-form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.app-form-label {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
}
.app-form-label .text-danger {
    color: #ff3b30;
}
.app-form-control {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 15px;
    color: #222;
    background: #fff;
    transition: all 0.3s ease;
}
.app-form-control::placeholder {
    color: #bbb;
}
.app-form-control:focus {
    background: #fff;
    border-color: #19A84A;
    box-shadow: 0 5px 15px rgba(25, 168, 74, 0.1);
    outline: none;
}
textarea.app-form-control {
    min-height: 140px;
    resize: vertical;
}
.form-submit-container {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    text-align: center !important;
}
.premium-form-grid > .form-submit-container {
    grid-column: 1 / -1 !important;
}
.form-submit-container #partner-form-response,
.partner-form-response {
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
}
.form-submit-container .btn-submit-app {
    margin-left: auto !important;
    margin-right: auto !important;
    display: inline-flex !important;
}
.btn-submit-app {
    background: #006837;
    color: #fff;
    padding: 16px 50px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 104, 55, 0.3);
}
.btn-submit-app:hover {
    transform: translateY(-4px);
    background: #004d26;
    box-shadow: 0 15px 35px rgba(0, 104, 55, 0.4);
}

.form-success-alert {
    background: #edf8f1;
    border: 1px solid #d1eedc;
    border-left: 5px solid #19A84A;
    color: #148038;
    padding: 18px 25px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: formSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 10px 30px rgba(25, 168, 74, 0.08);
}
.form-error-alert {
    background: #fdf3f2;
    border: 1px solid #fad5d2;
    border-left: 5px solid #e74c3c;
    color: #c0392b;
    padding: 18px 25px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: formSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.08);
}
@keyframes formSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 3D Book Open Animation */
.book-open-anim {
    opacity: 1;
    transform: none;
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease-in-out;
}
@media (prefers-reduced-motion: no-preference) {
    .book-open-anim:not(.is-visible) {
        opacity: 0;
        transform: perspective(2000px) rotateY(-90deg);
        transform-origin: center;
    }
}
.book-open-anim.is-visible {
    opacity: 1;
    transform: perspective(2000px) rotateY(0deg);
}

/* Global CTA Button Color Override (Requested by User) */
.btn-outline,
.premium-btn-outline,
.btn-green-outline-dark {
    color: #006837 !important;
    border-color: #006837 !important;
}

.btn-primary, 
.btn-premium-cta, 
.pr-btn, 
.premium-btn, 
.ec-btn, 
.sp-cta-btn, 
.rounded-pill-btn,
.btn-submit-app {
    background: #006837 !important;
    border-color: #006837 !important;
    color: #ffffff !important;
}

.btn-primary:hover, 
.btn-premium-cta:hover, 
.pr-btn:hover, 
.premium-btn:hover, 
.ec-btn:hover, 
.sp-cta-btn:hover, 
.rounded-pill-btn:hover,
.btn-submit-app:hover {
    background: #004d26 !important;
    border-color: #004d26 !important;
}

.btn-outline:hover,
.premium-btn-outline:hover,
.btn-green-outline-dark:hover {
    background: #006837 !important;
    color: #ffffff !important;
}

/* Premium Desktop Submenu Styling */
.primary-navigation .nav-menu li {
    position: relative;
}

.primary-navigation .nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 8px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    border: 1px solid rgba(0,0,0,0.03);
}

/* Display on Click (via JS) instead of Hover */
.primary-navigation .nav-menu li.submenu-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Toggle Button */
.desktop-submenu-toggle {
    background: transparent;
    border: none;
    color: #444;
    padding: 5px;
    margin-left: 2px;
    cursor: pointer;
    font-size: 11px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.desktop-submenu-toggle:hover {
    color: #006837;
}

.primary-navigation .nav-menu li.submenu-open > .desktop-submenu-toggle {
    transform: rotate(180deg);
    color: #006837;
}

.primary-navigation .nav-menu .sub-menu li {
    margin: 0;
    padding: 0;
    display: block;
}

.primary-navigation .nav-menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #444444;
    text-transform: capitalize;
    letter-spacing: 0;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Hide parent green underline for submenu links */
.primary-navigation .nav-menu .sub-menu li a::after {
    display: none !important;
}

/* Hover & Active Effect: Shift right, dark green color, soft background */
.primary-navigation .nav-menu .sub-menu li a:hover,
.primary-navigation .nav-menu .sub-menu li.current-menu-item > a,
.primary-navigation .nav-menu .sub-menu li.current_page_item > a {
    color: #006837;
    background: rgba(0, 104, 55, 0.04);
    padding-left: 32px;
}

/* Top accent bar for premium look */
.primary-navigation .nav-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: calc(100% - 40px);
    height: 3px;
    background: #006837;
    border-radius: 0 0 4px 4px;
}

/* Application Modal Styles */
.apply-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 58, 32, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.apply-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.apply-modal-box.new-split-design {
    background: #fff;
    width: 95%;
    max-width: 900px;
    border-radius: 20px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    padding: 0; /* Remove old padding */
}

.apply-modal-overlay.active .apply-modal-box {
    transform: translateY(0);
}

.apply-modal-left {
    flex: 0 0 40%;
    background: linear-gradient(135deg, rgba(0, 58, 32, 0.9) 0%, rgba(0, 34, 18, 0.9) 100%), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Optional pattern overlay for left side */
.apply-modal-left::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.apply-modal-left-content {
    position: relative;
    z-index: 1;
}

.apply-modal-left h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}

.apply-modal-left p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-benefits li {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
}

.modal-benefits li i {
    color: #19A84A;
}

body.modal-open {
    overflow: hidden !important;
}

.apply-modal-right {
    flex: 1;
    padding: 30px 40px;
    overflow-y: auto;
}

.apply-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f0f0;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: #444;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.apply-modal-close:hover {
    background: #e0e0e0;
    color: #000;
}

.apply-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.apply-modal-header h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 10px;
}

.apply-modal-header h2 span {
    color: #19A84A;
}

.apply-modal-header p {
    color: #666;
    font-size: 15px;
}

.apply-modal-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.apply-modal-form .form-row {
    display: flex;
    gap: 20px;
}

.apply-modal-form .form-row .form-group {
    flex: 1;
}

.apply-modal-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.apply-modal-form input[type="text"],
.apply-modal-form input[type="email"],
.apply-modal-form input[type="tel"],
.apply-modal-form select,
.apply-modal-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fdfdfd;
}

.apply-modal-form input:focus,
.apply-modal-form select:focus,
.apply-modal-form textarea:focus {
    outline: none;
    border-color: #19A84A;
    background: #fff;
}

/* Custom Select styling */
.custom-select-wrap {
    position: relative;
}

.custom-select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.custom-select-wrap .select-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

.file-upload-wrap {
    position: relative;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.file-upload-wrap:hover {
    border-color: #19A84A;
    background: #f9fdfa;
}

.file-upload-wrap input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text {
    color: #666;
    font-size: 14px;
}

.file-upload-text i {
    color: #19A84A;
    margin-right: 5px;
    font-size: 16px;
}

/* ==========================================================================
   Thank You Page & 404 Page Styles
   ========================================================================== */

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.9) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.thank-you-box .ec-btn:hover {
    background: #19A84A !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(25,168,74,0.2);
}

@keyframes floatUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.error-actions .ec-btn:hover {
    background: #19A84A !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(25,168,74,0.3) !important;
}

.search-field:focus {
    border-color: #19A84A !important;
    box-shadow: 0 0 0 3px rgba(25,168,74,0.1) !important;
}

.search-submit:hover {
    background: #006837 !important;
}

/* ==========================================================================
   Contact Page — Premium Redesign
   ========================================================================== */

.contact-premium-section {
    position: relative;
    padding: 90px 0 70px;
    background: linear-gradient(165deg, #f8fbf9 0%, #eef6f1 50%, #f8fbf9 100%);
    overflow: hidden;
}

.contact-premium-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.contact-orb--1 {
    width: 420px;
    height: 420px;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(25, 168, 74, 0.15) 0%, transparent 70%);
}

.contact-orb--2 {
    width: 360px;
    height: 360px;
    bottom: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(0, 104, 55, 0.1) 0%, transparent 70%);
}

.contact-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.contact-eyebrow {
    display: inline-block;
    background: rgba(25, 168, 74, 0.12);
    color: #148038;
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(25, 168, 74, 0.15);
}

.contact-section-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 900;
    color: #111;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin: 0 0 14px;
}

.contact-section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, #19A84A, #4ce683);
    border-radius: 4px;
    margin: 16px auto 0;
}

.contact-section-lead {
    font-size: 17px;
    color: #5c6b63;
    line-height: 1.65;
    margin: 0;
}

.contact-form-card {
    max-width: 880px;
    margin: 0 auto 56px;
    background: #fff;
    border-radius: 24px;
    padding: 44px 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.contact-field--full {
    grid-column: 1 / -1;
}

.contact-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin-bottom: 8px;
}

.contact-label .text-danger {
    color: #dc3545;
}

.contact-input-wrap {
    position: relative;
}

.contact-field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #19A84A;
    font-size: 18px;
    width: 18px;
    height: 18px;
    z-index: 2;
    pointer-events: none;
}

.contact-control {
    width: 100%;
    height: 50px;
    padding: 0 16px 0 46px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-control--textarea {
    height: auto;
    min-height: 140px;
    padding: 14px 16px;
    resize: vertical;
    line-height: 1.6;
}

.contact-control::placeholder {
    color: #9ca3af;
}

.contact-control:focus {
    border-color: #19A84A;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(25, 168, 74, 0.12);
}

.contact-form-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 8px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #19A84A 0%, #0d6e32 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(25, 168, 74, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(25, 168, 74, 0.38);
    color: #fff;
}

.contact-submit-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(4px);
}

.contact-form-message {
    width: 100%;
    margin-top: 16px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #19A84A, #4ce683);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(25, 168, 74, 0.12);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: linear-gradient(145deg, #e8f7ed 0%, #d4f0de 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(25, 168, 74, 0.12);
}

.contact-info-icon--sm {
    width: 48px;
    height: 48px;
    margin: 0 16px 0 0;
    border-radius: 14px;
    flex-shrink: 0;
}

.contact-info-icon .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: #19A84A;
}

.contact-info-icon--sm .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
}

.contact-info-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px;
}

.contact-info-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #666;
    margin: 0;
}

.contact-info-card p a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-top: 4px;
}

.contact-info-card p a:hover {
    color: #19A84A;
}

.contact-locations-section {
    padding: 80px 0 90px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-maps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.contact-map-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-map-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(25, 168, 74, 0.1);
}

.contact-map-card__header {
    display: flex;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafcfb;
}

.contact-map-card__header h4 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin: 0 0 4px;
}

.contact-map-card__header p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-map-frame {
    height: 320px;
    width: 100%;
    background: #eee;
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(15%) contrast(1.05);
    transition: filter 0.35s ease;
}

.contact-map-card:hover .contact-map-frame iframe {
    filter: grayscale(0%) contrast(1);
}

@media (max-width: 991px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form-card {
        padding: 32px 28px;
    }
    .contact-maps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .contact-premium-section {
        padding: 60px 0 50px;
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .contact-form-card {
        padding: 28px 20px;
    }
    .contact-locations-section {
        padding: 60px 0;
    }
    .contact-map-frame {
        height: 260px;
    }
}

/* Legacy contact classes (backward compat) */
.contact-split-section {
    position: relative;
    z-index: 5;
}

.contact-info-wrapper .info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-wrapper .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(25, 168, 74, 0.1), rgba(20, 143, 62, 0.05));
    color: #19A84A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-icon .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.info-content h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.map-section {
    position: relative;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Legacy centered contact (old markup) */
.contact-centered-section {
    background: #ffffff;
    padding-top: 10px;
}

.contact-badge-opp,
.find-us-badge-opp {
    background: rgba(25, 168, 74, 0.12);
    color: #148038;
    font-weight: 800;
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 11px;
    display: inline-block;
    margin-bottom: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-centered-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 900;
    margin-top: 0 !important;
    margin-bottom: 5px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.contact-centered-title .highlight-text {
    position: relative;
    display: inline-block;
}

.contact-centered-title .highlight-underline {
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #19A84A, #4ce683);
    border-radius: 2px;
}

.contact-centered-subtitle {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    color: #6c757d;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.info-card {
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    background: #fff;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card .info-icon {
    width: 60px;
    height: 60px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.info-card .info-icon .dashicons {
    color: #006837;
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.info-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: #6c757d;
}

.find-us-section {
    background: #f9fbf9;
    border-top: 1px solid #eaeaea;
}

.map-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.map-card-header {
    padding: 25px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.map-card-header .info-icon {
    width: 45px;
    height: 45px;
    background: #e8f5e9;
    margin-right: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-card-header .info-icon .dashicons {
    color: #006837;
    font-size: 22px;
    width: 22px;
    height: 22px;
}

.map-card-header h4 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 3px 0;
    color: #1a1a1a;
}

.map-card-header p {
    font-size: 13px;
    margin: 0;
    color: #6c757d;
}

.map-container {
    height: 350px;
    width: 100%;
}

.map-container iframe {
    border: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: grayscale(0%) contrast(1);
}

/* Partner page — force centered buttons */
.partner-models-premium .partner-model-action {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    text-align: center !important;
}

.partner-models-premium .partner-model-btn {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
}

.app-form-section .form-submit-container {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
}

.app-form-section .form-submit-container .btn-submit-app {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
}

/* Page banner — readable text on dark hero */
.page-banner .banner-desc,
.page-banner .banner-desc p,
.page-banner .banner-desc span {
    color: rgba(255, 255, 255, 0.92) !important;
}

.page-banner h1.banner-title {
    color: #ffffff !important;
}
/* ==========================================================================
   Mega Menu Styles
   ========================================================================== */

.main-nav-wrapper {
    position: relative;
}
.main-nav-inner {
    position: static !important;
}
.primary-navigation, 
.primary-navigation .nav-menu,
.nav-menu > li.has-mega-menu {
    position: static !important;
}

.jsd-mega-menu {
    position: absolute;
    top: 100%;
    left: 30px;
    right: 30px;
    width: calc(100% - 60px);
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-radius: 0 0 16px 16px;
    border: 1px solid #f0f0f0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
    overflow: hidden;
}

/* Show on click (via active class) */
.has-mega-menu.submenu-open .jsd-mega-menu,
.has-mega-menu.mega-menu-active .jsd-mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.jsd-mega-menu-inner {
    display: flex;
    gap: 40px;
    padding: 0;
    max-width: 100%;
}

/* Left Side: Featured Card (Reference Image Exact Design) */
.mega-menu-featured {
    flex: 0 0 340px;
    background: #f7fbf8;
    padding: 30px;
    position: relative;
    border-right: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.mega-slider-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
    flex-grow: 1;
}

.mega-card-new {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mc-cat-name {
    color: #006b3c;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 5px;
}

.mc-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.mc-title-main {
    font-size: 32px;
    font-weight: 900;
    color: #003a20;
    margin: 0;
    line-height: 1;
}

.mc-badge {
    background: #006b3c;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(0, 107, 60, 0.2);
}

.mc-subtitle-main {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
}

.mc-desc-main {
    font-size: 13px;
    color: #666666;
    margin-bottom: 20px;
}

.mc-image-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    overflow: hidden;
}

.mc-image-box img {
    max-width: 80%;
    max-height: 160px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.mega-card-new:hover .mc-image-box img {
    transform: translateY(-5px);
}

/* Background circles in image box */
.mc-image-box::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid #f0f0f0;
    z-index: 0;
}
.mc-image-box::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid #f0f0f0;
    z-index: 0;
}

.mc-img-pill {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(80, 80, 80, 0.85);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
}

.mc-features-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.mc-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 25%;
}

.mc-feat-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #006b3c;
    color: #006b3c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-bottom: 6px;
    background: #ffffff;
}

.mc-feat-text {
    font-size: 10px;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
}

.mc-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: #004d2b;
    background: linear-gradient(90deg, #005a32 0%, #004d2b 100%);
    color: #ffffff !important;
    padding: 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 107, 60, 0.3);
}

.mc-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 107, 60, 0.5);
    transform: translateY(-2px);
}

/* Right Side: Categories as Cards */
.mega-menu-categories {
    flex: 1;
    display: flex;
    gap: 25px;
    padding: 40px;
    background: #ffffff;
    
    /* Horizontal Slider CSS */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
.mega-menu-categories::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.mega-col {
    /* Show exactly 3 cards. If there are 4+, it will scroll */
    flex: 0 0 calc((100% - 50px) / 3);
    scroll-snap-align: start;
    
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.mega-col:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-color: #eaeaea;
    transform: translateY(-3px);
}

.mega-cat-title {
    font-size: 13px;
    color: #006b3c;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.mega-cat-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: yellow;
    border-radius: 3px;
}

.mega-cat-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega-cat-list li {
    margin-bottom: 8px;
}

.mega-cat-list li:last-child {
    margin-bottom: 0;
}

.mega-cat-list li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: linear-gradient(145deg, #ffffff, #f4fbf6);
    border: 1px solid rgba(25, 168, 74, 0.1);
    border-left: 4px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.mega-cat-list li a::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(145deg, #f4fbf6, #e8f7ed);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.mega-cat-list li a > * {
    position: relative;
    z-index: 1;
}

.mega-cat-list li a:hover {
    border-color: rgba(25, 168, 74, 0.3);
    border-left-color: #19A84A;
    box-shadow: 0 8px 25px rgba(25, 168, 74, 0.12);
    transform: translateY(-3px);
}

.mega-cat-list li a:hover::before {
    opacity: 1;
}

.mc-icon {
    color: #006b3c;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4fbf6;
    border-radius: 8px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.mega-cat-list li a:hover .mc-icon {
    background: #006b3c;
    color: #ffffff;
    transform: scale(1.05);
}

.mc-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mc-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
    line-height: 1.3;
}

.mc-subtitle {
    font-size: 12px;
    color: #888888;
    line-height: 1.3;
}

.mc-arrow {
    color: #006b3c;
    font-size: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin-left: auto; /* Pushes the arrow to the right edge */
}

.mega-cat-list li a:hover .mc-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Hide default WP submenu if mega menu is active */
.nav-menu > li.has-mega-menu > ul.sub-menu { display: none !important; }

/* Rotate icon when mega menu is active */
.primary-navigation .nav-menu li.mega-menu-active > .desktop-submenu-toggle {
    transform: rotate(180deg);
    color: #006837;
}

/* Force show mega menu */
.has-mega-menu.submenu-open .jsd-mega-menu,
.has-mega-menu.mega-menu-active .jsd-mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}





.mega-cat-list li a:hover .mc-icon { background: #006b3c; color: #ffffff; }




/* --- Premium Redesign for Solutions OEM Cards --- */
.oem-card {
    background: #eaf5eb !important; /* Vibrant light green */
    border-radius: 12px !important;
    padding: 30px 15px 25px 15px !important;
    text-align: center !important;
    border: 3px solid #00a629 !important; /* Thick bright green border */
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: none !important;
    min-height: 290px !important; 
}

.oem-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 166, 41, 0.2) !important;
}

.oem-card::after {
    display: none !important; 
}

.oem-image {
    width: 130px !important; /* Huge icon */
    height: 130px !important;
    background: transparent !important; 
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 15px auto !important;
    padding: 0 !important;
}

.oem-card:hover .oem-image {
    background: transparent !important;
    transform: scale(1.03) !important; 
}

.oem-image img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: 100% !important; /* Force to fill container */
    object-fit: contain !important;
    mix-blend-mode: multiply !important; /* Removes the ugly grey box from uploaded images! */
}

.oem-card:hover .oem-image img {
    filter: none !important; 
}

.oem-content {
    background: transparent !important;
    padding: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

.oem-content h3 {
    font-size: 20px !important; /* Huge text */
    font-weight: 900 !important; /* Ultra bold */
    color: #00a629 !important; 
    margin: 0 !important;
    line-height: 1.3 !important;
    text-transform: uppercase !important; 
    max-width: 160px !important; /* Forces the perfect line breaks */
    margin: 0 auto !important;
}

.oem-card:hover .oem-content h3 {
    color: #008f23 !important; 
}
/* --- End Premium Redesign --- */




/* --- Solutions Products Section --- */
.solutions-products-section {
    padding: 80px 0;
    background: #f7fbf8;
    margin-top: 60px;
    border-radius: 24px;
}

.sp-header {
    margin-bottom: 50px;
}

.sp-title {
    font-size: 36px;
    font-weight: 900;
    color: #003a20;
    margin-bottom: 15px;
}

.sp-subtitle {
    font-size: 18px;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}

.sp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sp-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,107,60,0.1);
    border-color: #006b3c;
}

.sp-image {
    width: 100%;
    height: 180px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.sp-card:hover .sp-image img {
    transform: scale(1.05);
}

.sp-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sp-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.sp-cat {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
    flex-grow: 1;
}

.sp-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #006b3c;
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease;
}

.sp-btn:hover {
    background: #004d2b;
}


/* --- Telematics Products Section (Canva Replica) --- */
.telematics-products-section {
    padding: 60px 0;
    background: #ffffff;
    margin-top: 40px;
}

.tp-header { text-align: center; 
    margin-bottom: 40px;
}

.tp-badge {
    display: inline-block;
    background: #e8f5eb;
    color: #008f23;
    font-weight: 800;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.tp-heading {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: "Teko", "Oswald", sans-serif;
    letter-spacing: 1px;
}

.tp-desc {
    font-size: 16px;
    color: #444;
    max-width: 800px;
    line-height: 1.5;
}

.tp-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.tp-card {
    width: calc(33.333% - 14px); /* 14px accounts for the 20px gap on 3 items */
}

@media (max-width: 991px) {
    .tp-card { width: calc(50% - 10px); }
}

@media (max-width: 767px) {
    .tp-card { width: 100%; }
}

.tp-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tp-image-box {
    background: #e8f5eb;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.tp-content-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tp-card-badge {
    font-size: 13px;
    color: #008f23;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.tp-card-title {
    font-size: 28px;
    font-weight: 900;
    color: #00a629;
    margin: 0 0 10px 0;
}

.tp-card-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.tp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.tp-features li {
    font-size: 13px;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tp-check {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tp-check svg {
    width: 100%;
    height: 100%;
}

.tp-actions {
    display: flex;
    gap: 10px;
}

.tp-btn-filled {
    background: #00a629;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
}

.tp-btn-outline {
    background: transparent;
    color: #00a629 !important;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #00a629;
    text-decoration: none;
    text-transform: uppercase;
}

.tp-btn-filled:hover {
    background: #008f23;
}

.tp-btn-outline:hover {
    background: #e8f5eb;
}


/* --- Telematics Dynamic Overrides --- */
.tp-card {
    border-radius: 16px !important;
}

.tp-image-box {
    border-radius: 16px 16px 0 0 !important;
}

.tp-btn-filled {
    background: #008422 !important;
    padding: 10px 15px !important;
    border-radius: 25px !important;
}

.tp-btn-filled:hover {
    background: #006319 !important;
}

.tp-btn-outline {
    border: 2px solid #00a629 !important;
    padding: 9px 15px !important;
    border-radius: 25px !important;
}

.tp-check {
    width: 24px !important;
    height: 24px !important;
    margin-right: 12px !important;
}

/* ==========================================================================
   Events & Media Page Styles
   ========================================================================== */

/* Hero Section */
.events-hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.events-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 50, 20, 0.85); /* Very dark green overlay */
    background: linear-gradient(to bottom, rgba(0, 30, 15, 0.9), rgba(0, 70, 35, 0.8));
}
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.events-page-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
}
.events-hero-divider {
    width: 250px;
    height: 4px;
    background-color: var(--primary-light);
    margin: 20px 0;
    border-radius: 2px;
    margin-top: -10px;
}
.events-page-description {
    color: #eaeaea;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.events-page-description p {
    margin: 0;
}

/* Page Container Layout */
.events-page-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}
.events-main-content {
    flex: 1 1 65%;
}
.events-sidebar {
    flex: 1 1 30%;
    min-width: 300px;
}

/* Event Cards Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.event-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
}
.event-card-image {
    height: 200px;
    overflow: hidden;
}
.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.event-card:hover .event-card-image img {
    transform: scale(1.05);
}
.event-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.event-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}
.event-title a {
    color: var(--primary-color); /* Orange title */
    text-decoration: none;
}
.event-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}
.event-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}
.event-read-more {
    display: block;
    text-align: center;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}
.event-read-more:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.sidebar-widget .widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}
.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
}
.sidebar-widget ul li:last-child {
    border-bottom: none;
}
.sidebar-widget ul li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.sidebar-widget ul li a:hover {
    color: var(--primary-color);
}

/* Search Widget */
.widget-search .search-form {
    display: flex;
}
.widget-search .search-field {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}
.widget-search .search-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Gallery Section */
.events-gallery-section {
    margin-bottom: 80px;
}
.gallery-header {
    margin-bottom: 30px;
}
.gallery-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}
.gallery-title span {
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 5px;
}
.gallery-filters {
    margin-bottom: 40px;
}
.gallery-filter-btn {
    background: #f5f5f5;
    border: none;
    padding: 8px 20px;
    margin: 0 5px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: #333;
    color: #fff;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    transition: all 0.3s ease;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .events-page-container {
        flex-direction: column;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Certification Page Additional Sections
   ========================================================================== */

/* Certification Section */
.certifications-section {
    padding: 80px 0;
    background-color: #fafafa;
    text-align: center;
}
.certifications-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}
.certifications-section .section-subtitle {
    font-size: 16px;
    color: #888;
    margin-bottom: 30px;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}
.slider-dots span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: rgba(0, 107, 60, 0.3);
    border-radius: 2px;
}
.slider-dots span.active {
    background-color: var(--primary-color);
}
.certificate-display {
    max-width: 900px;
    margin: 0 auto;
    background-color: #000;
    border: 6px solid var(--primary-color); /* Gold/yellow border */
    padding: 40px; /* Black space around the certificate */
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.certificate-frame {
    background-color: #fff;
}
.certificate-frame img {
    width: 100%;
    display: block;
    object-fit: contain;
}

/* CTA Section */
.cert-cta-section {
    padding: 60px 0 100px;
    background-color: #fafafa;
    text-align: center;
}
.cert-cta-section .cta-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark); /* Dark blue from reference */
    margin-bottom: 10px;
}
.cert-cta-section .cta-subtitle {
    font-size: 15px;
    color: #888;
    margin-bottom: 30px;
}
.btn-whatsapp {
    display: inline-block;
    background-color: var(--primary-color); /* Orange */
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 107, 60, 0.3);
}
.btn-whatsapp:hover {
    background-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}


/* Improved Certifications UI */
.certifications-section {
    background-color: #ffffff;
    padding: 50px 0 20px;
}
.cert-heading-wrap {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #e8f5e9;
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.certifications-section .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
    border: none !important;
    padding-bottom: 0 !important;
}
.certifications-section .section-title::before,
.certifications-section .section-title::after {
    display: none !important;
}
.heading-divider {
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
}
.certifications-section .section-subtitle {
    font-size: 16px;
    color: #666;
    text-transform: none !important;
    letter-spacing: normal;
    background: none !important;
    padding: 0 !important;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}
.slider-dots {
    margin-bottom: 30px;
}
.certificate-display {
    max-width: 950px;
    margin: 0 auto;
    background-color: #111;
    border: 4px solid var(--primary-color);
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.certificate-frame {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.certificate-frame img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #fff;
}

/* Premium CTA Card */
.cert-cta-section {
    background-color: #ffffff;
    padding: 20px 0 60px;
}
.cta-premium-card {
    background-color: #f4fdf7;
    border: 1px solid rgba(0, 107, 60, 0.15);
    border-radius: 12px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}
.cta-text-content {
    flex: 1;
    padding-right: 25px;
}
.cert-cta-section .cta-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}
.cert-cta-section .cta-subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
    background: transparent !important;
    padding: 0 !important;
    text-transform: none !important;
    line-height: 1.5;
}
.cta-action {
    flex-shrink: 0;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
}
@media (max-width: 768px) {
    .cta-premium-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    .cta-text-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
}

/* Mobile Menu Sub-menu Uniformity Fix */
@media (max-width: 991px) {
    .main-navigation .sub-menu,
    .mobile-menu .sub-menu,
    .nav-menu .sub-menu {
        padding-left: 0 !important;
        margin-left: 0 !important;
        width: 100% !important;
    }
    .main-navigation li,
    .mobile-menu li,
    .nav-menu li {
        margin: 0 !important;
        padding: 0 10px !important;
        list-style: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .main-navigation .sub-menu li a,
    .mobile-menu .sub-menu li a,
    .nav-menu .sub-menu li a {
        display: flex !important;
        align-items: center !important;
        padding: 12px 15px !important;
        background-color: transparent !important;
        border-radius: 6px !important;
        margin-bottom: 4px !important;
        color: #333 !important;
        text-decoration: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .main-navigation .sub-menu li.current-menu-item > a,
    .mobile-menu .sub-menu li.current-menu-item > a,
    .nav-menu .sub-menu li.current-menu-item > a {
        background-color: #f4fdf7 !important;
        color: var(--primary-color) !important;
        font-weight: 600 !important;
    }
    
    /* Color for all i tags in the mobile menu */
    .mobile-navigation a i,
    .mobile-nav-menu a i {
        width: 20px !important;
        text-align: center !important;
        margin-right: 12px !important;
        font-size: 15px !important;
        color: var(--primary-color) !important;
    }
    
    /* Default pseudo-element styles (e.g. > arrows) */
    .mobile-navigation a::before,
    .mobile-nav-menu a::before {
        display: inline-block;
        width: 20px;
        text-align: center;
        margin-right: 12px;
        font-size: 15px;
        color: var(--primary-color);
    }
    
    /* Hide the default ::before arrow if an <i> tag exists */
    .mobile-navigation a:has(i)::before,
    .mobile-nav-menu a:has(i)::before {
        display: none !important;
        content: none !important;
    }
}

/* ==========================================================================
   Single Product Custom Tabs (Mobile Responsive)
   ========================================================================== */
@media (max-width: 767px) {
    .sp-custom-tabs .nav-item {
        flex: 1 1 100% !important;
    }
    .sp-product-actions {
        flex-direction: column;
    }
    .sp-product-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
    /* Scoped CSS for new UI */
    .sp-hero-badge {
        display: inline-flex; align-items: center; gap: 8px;
        border: 1px solid #19A84A; border-radius: 8px;
        padding: 10px 20px; margin-right: 12px; margin-bottom: 12px;
        color: #fff; font-size: 16px; font-weight: 600;
        background: rgba(25, 168, 74, 0.05);
    }
    .sp-hero-badge i { color: #19A84A; font-size: 18px; }
    
    .sp-image-glow-box {
        border: 2px solid #19A84A;
        border-radius: 20px;
        padding: 15px;
        background: rgba(0, 34, 18, 0.4);
        box-shadow: 0 0 40px rgba(25, 168, 74, 0.3);
        display: inline-block;
        backdrop-filter: blur(10px);
    }
    
    .sp-gallery-box {
        background: #fff;
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        position: relative;
        text-align: center;
        border: 1px solid #f0f0f0;
    }
    
    .sp-magnify {
        position: absolute; top: 20px; right: 20px;
        width: 40px; height: 40px; border-radius: 50%;
        background: #f8f9fa; display: flex; align-items: center; justify-content: center;
        color: #555; cursor: pointer; border: 1px solid #eee;
    }
    
    .sp-platform-shadow {
        width: 80%; height: 20px; margin: 0 auto;
        background: radial-gradient(ellipse at center, rgba(160, 160, 160, 0.4) 0%, transparent 70%);
        margin-top: -5px; margin-bottom: 30px;
    }

    .sp-thumbnails-row {
        display: flex; align-items: center; justify-content: space-between;
        margin-top: 20px; padding: 0 10px;
    }
    .sp-thumb-item {
        width: 60px; height: 60px; border: 1px solid #eee; border-radius: 6px; padding: 5px; cursor: pointer;
    }
    .sp-thumb-item.active { border: 2px solid #19A84A; }
    
    .sp-spec-box {
        background: #fff; border: 1px solid #eee; border-radius: 10px;
        padding: 15px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        flex: 1 1 calc(25% - 15px); min-width: 100px;
    }
    
    .sp-feature-list-box {
        background: #f4fbf6; border-radius: 12px; padding: 30px;
    }
    
    .sp-feature-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; }
    .sp-feature-item i { color: #19A84A; margin-top: 4px; font-size: 14px; }
    .sp-feature-item span { font-size: 14px; color: #444; font-weight: 500; }
    
    .sp-why-choose { background: #fafafa; border-radius: 16px; padding: 50px 40px; margin-top: 30px; }
    
    .sp-feature-card {
        background: #fff;
        border-radius: 12px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.04);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        border: 1px solid rgba(0,0,0,0.02);
    }
    .sp-feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }
    .sp-feature-card i { font-size: 36px; color: #19A84A; margin-bottom: 20px; }
    .sp-feature-card h5 { color: #222; font-size: 16px; font-weight: 800; margin-bottom: 12px; }
    .sp-feature-card p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }
    
    /* Related Products CSS */
    .sp-related-section { padding: 60px 0; background: #fff; }
    .sp-related-card {
        border: 1px solid #eaeaea;
        border-radius: 12px;
        overflow: hidden;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        background: #fff;
    }
    .sp-related-card:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transform: translateY(-5px);
    }
    .sp-related-img-wrap {
        background: #f1f9f3;
        padding: 40px;
        text-align: center;
        border-bottom: 1px solid #eaeaea;
    }
    .sp-related-img-wrap img {
        max-height: 200px;
        width: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
    }
    .sp-related-card:hover .sp-related-img-wrap img { transform: scale(1.05); }
    
    .sp-related-content {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .sp-related-title {
        font-size: 26px;
        font-weight: 800;
        color: #19A84A;
        margin-bottom: 15px;
        text-decoration: none;
    }
    .sp-related-title:hover { color: #117a33; text-decoration: none; }
    .sp-related-excerpt {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 25px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .sp-related-btn-wrap {
}
    /* Scoped CSS for new UI */
    .sp-hero-badge {
        display: inline-flex; align-items: center; gap: 8px;
        border: 1px solid #19A84A; border-radius: 8px;
        padding: 10px 20px; margin-right: 12px; margin-bottom: 12px;
        color: #fff; font-size: 16px; font-weight: 600;
        background: rgba(25, 168, 74, 0.05);
    }
    .sp-hero-badge i { color: #19A84A; font-size: 18px; }
    
    .sp-image-glow-box {
        border: 2px solid #19A84A;
        border-radius: 20px;
        padding: 15px;
        background: rgba(0, 34, 18, 0.4);
        box-shadow: 0 0 40px rgba(25, 168, 74, 0.3);
        display: inline-block;
        backdrop-filter: blur(10px);
    }
    
    .sp-gallery-box {
        background: #fff;
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        position: relative;
        text-align: center;
        border: 1px solid #f0f0f0;
    }
    
    .sp-magnify {
        position: absolute; top: 20px; right: 20px;
        width: 40px; height: 40px; border-radius: 50%;
        background: #f8f9fa; display: flex; align-items: center; justify-content: center;
        color: #555; cursor: pointer; border: 1px solid #eee;
    }
    
    .sp-platform-shadow {
        width: 80%; height: 20px; margin: 0 auto;
        background: radial-gradient(ellipse at center, rgba(160, 160, 160, 0.4) 0%, transparent 70%);
        margin-top: -5px; margin-bottom: 30px;
    }

    .sp-thumbnails-row {
        display: flex; align-items: center; justify-content: space-between;
        margin-top: 20px; padding: 0 10px;
    }
    .sp-thumb-item {
        width: 60px; height: 60px; border: 1px solid #eee; border-radius: 6px; padding: 5px; cursor: pointer;
    }
    .sp-thumb-item.active { border: 2px solid #19A84A; }
    
    .sp-spec-box {
        background: #fff; border: 1px solid #eee; border-radius: 10px;
        padding: 15px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        flex: 1 1 calc(25% - 15px); min-width: 100px;
    }
    
    .sp-feature-list-box {
        background: #f4fbf6; border-radius: 12px; padding: 30px;
    }
    
    .sp-feature-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; }
    .sp-feature-item i { color: #19A84A; margin-top: 4px; font-size: 14px; }
    .sp-feature-item span { font-size: 14px; color: #444; font-weight: 500; }
    
    .sp-why-choose { background: #fafafa; border-radius: 16px; padding: 50px 40px; margin-top: 30px; }
    
    .sp-feature-card {
        background: #fff;
        border-radius: 12px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.04);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        border: 1px solid rgba(0,0,0,0.02);
    }
    .sp-feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }
    .sp-feature-card i { font-size: 36px; color: #19A84A; margin-bottom: 20px; }
    .sp-feature-card h5 { color: #222; font-size: 16px; font-weight: 800; margin-bottom: 12px; }
    .sp-feature-card p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }
    
    /* Related Products CSS */
    .sp-related-section { padding: 60px 0; background: #fff; }
    .sp-related-card {
        border: 1px solid #eaeaea;
        border-radius: 12px;
        overflow: hidden;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        background: #fff;
    }
    .sp-related-card:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transform: translateY(-5px);
    }
    .sp-related-img-wrap {
        background: #f1f9f3;
        padding: 40px;
        text-align: center;
        border-bottom: 1px solid #eaeaea;
    }
    .sp-related-img-wrap img {
        max-height: 200px;
        width: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
    }
    .sp-related-card:hover .sp-related-img-wrap img { transform: scale(1.05); }
    
    .sp-related-content {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .sp-related-title {
        font-size: 26px;
        font-weight: 800;
        color: #19A84A;
        margin-bottom: 15px;
        text-decoration: none;
    }
    .sp-related-title:hover { color: #117a33; text-decoration: none; }
    .sp-related-excerpt {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 25px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .sp-related-btn-wrap {
        margin-top: auto;
    }
    .sp-related-view-btn {
        display: inline-block;
        background: #008f39;
        color: #fff;
        font-weight: 700;
        font-size: 12px;
        padding: 10px 24px;
        border-radius: 50px;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: background 0.3s ease;
    }
    .sp-related-view-btn:hover {
        background: #006b2b;
        color: #fff;
        text-decoration: none;
    }
    
    .sp-product-description a {
        color: #19A84A;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px dashed rgba(25, 168, 74, 0.4);
        transition: all 0.2s ease;
    }
    .sp-product-description a:hover {
        color: #117a33;
        border-bottom-style: solid;
        border-bottom-color: #117a33;
    }

    .sp-product-description img {
        width: 35%;
        max-width: 100%;
        height: auto;
        max-height: 400px;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        display: block;
        margin: 35px auto;
        border: 1px solid rgba(0,0,0,0.03);
        object-fit: cover;
    }

    /* Premium Tabs UI */
    .sp-premium-tabs-wrapper {
        max-width: 1000px;
        margin: 0 auto;
        padding-top: 20px;
    }
    .sp-premium-tabs {
        display: flex;
        justify-content: center;
        background: #f4f6f8;
        border-radius: 50px;
        padding: 8px;
        margin: 0 auto 40px auto;
        border: none;
        box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
        max-width: max-content;
        list-style: none;
        flex-wrap: wrap;
    }
    .sp-premium-tabs .nav-item {
        margin: 0;
    }
    .sp-premium-tabs .nav-link {
        background: transparent;
        border: none;
        color: #666;
        font-weight: 700;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 14px 35px;
        border-radius: 40px;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0 5px;
    }
    .sp-premium-tabs .nav-link:hover {
        color: #19A84A;
    }
    .sp-premium-tabs .nav-link.active {
        background: #fff;
        color: #19A84A;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    
    .sp-premium-tab-content {
        background: #fff;
        border-radius: 20px;
        padding: 50px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.04);
        border: 1px solid rgba(0,0,0,0.02);
        animation: spFadeInUp 0.5s ease forwards;
    }
    
    @keyframes spFadeInUp {
        from { opacity: 0; transform: translateY(15px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .sp-product-description ul {
        list-style: none;
        padding-left: 0;
        margin-top: 20px;
    }
    .sp-product-description ul li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
        font-size: 16px;
        color: #444;
    }
    .sp-product-description ul li::before {
        content: '\f00c';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: #19A84A;
        font-size: 14px;
        background: rgba(25, 168, 74, 0.1);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sp-product-description p {
        font-size: 16px;
        color: #555;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .sp-premium-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 15px;
    }
    .sp-premium-table tr {
        border-bottom: 1px solid rgba(0,0,0,0.04);
        transition: background 0.3s ease;
    }
    .sp-premium-table tr:hover {
        background: rgba(25, 168, 74, 0.02);
    }
    .sp-premium-table tr:last-child {
        border-bottom: none;
    }
    .sp-premium-table th {
        width: 35%;
        padding: 20px 25px;
        color: #111;
        font-weight: 700;
        font-size: 15px;
        text-align: left;
        vertical-align: middle;
    }
    .sp-premium-table td {
        padding: 20px 25px;
        color: #555;
        font-size: 15px;
        vertical-align: middle;
        font-weight: 500;
    }


    /* Responsive Grid & Typography */
    .sp-col-pad { padding: 0 15px; }
    
    @media (min-width: 768px) {
        .sp-flex-58 { flex: 0 0 58%; max-width: 58%; }
        .sp-flex-42 { flex: 0 0 42%; max-width: 42%; }
        .sp-flex-25 { flex: 0 0 25%; max-width: 25%; }
        .sp-flex-33 { flex: 0 0 33.333%; max-width: 33.333%; }
        .sp-hero-title { font-size: 72px; }
        .sp-hero-subtitle { font-size: 24px; }
        
        .sp-pad-r-30 { padding-right: 30px; }
        .sp-pad-l-30 { padding-left: 30px; }
    }
    
    @media (max-width: 767px) {
        .sp-flex-58, .sp-flex-42, .sp-flex-25, .sp-flex-33 { 
            flex: 0 0 100%; max-width: 100%; padding-right: 15px; padding-left: 15px; margin-bottom: 25px;
        }
        .sp-hero-title { font-size: 42px !important; line-height: 1.2 !important; }
        .sp-hero-subtitle { font-size: 18px !important; }
        .page-banner { padding: 40px 0 !important; }
        .sp-image-glow-box { padding: 10px; border-radius: 16px; }
        .sp-image-glow-box img { max-height: 250px !important; }
        
        .sp-spec-box { flex: 1 1 calc(50% - 15px); }
        .sp-product-overview h2 { font-size: 28px !important; }
        
        /* Mobile Tabs */
        .sp-custom-tabs { flex-direction: column; }
        .sp-custom-tabs .nav-item { flex: 1 1 100% !important; border-bottom: 1px solid #eee; }
        .sp-custom-tabs .nav-link { padding: 15px 0 !important; }
        #productTabsContent { padding: 20px 15px !important; }
        
        .sp-why-choose { padding: 30px 20px !important; }
        .sp-why-choose h3, .sp-related-section h3 { font-size: 26px !important; }
    }