/* ========================================== */
/* ========== ECOPULSE - COMPLETE CSS ========== */
/* ========================================== */

:root {
    --primary-green: #6BB43A;
    --deep-green: #2D5016;
    --electric-blue: #0EA5E9;
    --solar-yellow: #F59E0B;
    --earth-brown: #92400E;
    --light-bg: #F8FAFC;
    --dark-text: #1E293B;
    --gradient-primary: linear-gradient(135deg, #6BB43A 0%, #0EA5E9 100%);
    --gradient-solar: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    background: #fff;
}

/* ========================================== */
/* ========== NAVBAR - COMPLETE ========== */
/* ========================================== */

.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0.4rem 0 !important;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.25rem 0 !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* Brand */
.navbar-brand {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    padding: 0 !important;
    margin: 0 !important;
    text-decoration: none !important;
}

.navbar-brand .logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand .logo-img {
    height: 42px;
}

.navbar-brand .brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #2D5016;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-brand .brand-name .brand-highlight {
    background: linear-gradient(135deg, #6BB43A 0%, #0EA5E9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.03);
}

/* Nav Links - Desktop */
.navbar-nav .nav-link {
    color: #1E293B !important;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 10px 12px !important;
    margin: 0 1px;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6BB43A 0%, #0EA5E9 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #6BB43A !important;
}

/* Dropdown Toggle - Arrow Inline Fix */
.navbar-nav .dropdown-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.navbar-nav .dropdown-toggle::after {
    border: none !important;
    content: '\F282' !important;
    font-family: 'bootstrap-icons' !important;
    font-size: 0.6rem !important;
    margin-left: 2px !important;
    transition: transform 0.3s ease !important;
    vertical-align: middle !important;
    display: inline !important;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg) !important;
}

/* Dropdown Menu - Desktop */
.navbar .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    margin-top: 8px;
    background: white;
    min-width: 260px;
    animation: navDropdownFade 0.3s ease;
}

@keyframes navDropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .dropdown-menu-lg {
    min-width: 290px;
}

.navbar .dropdown-item {
    padding: 10px 18px;
    font-size: 0.88rem;
    color: #475569;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar .dropdown-item i {
    color: #6BB43A;
    font-size: 0.95rem;
    width: 24px;
    flex-shrink: 0;
}

.navbar .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(107, 180, 58, 0.08) 0%, rgba(14, 165, 233, 0.05) 100%);
    color: #6BB43A;
    padding-left: 24px;
}

.navbar .dropdown-divider {
    margin: 6px 18px;
    border-color: rgba(107, 180, 58, 0.15);
}

/* Contact Button */
/* .nav-link-contact {
    background: linear-gradient(135deg, #6BB43A 0%, #0EA5E9 100%) !important;
    color: white !important;
    padding: 8px 18px !important;
    border-radius: 50px !important;
    margin-left: 10px !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    transition: all 0.3s ease !important;
} */

/* .nav-link-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(107, 180, 58, 0.4);
    color: white !important;
} */

.nav-link-contact::after {
    display: none !important;
}

/* Desktop Hover to Open Dropdown */
@media (min-width: 1200px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }

    .navbar .dropdown-menu {
        display: none;
    }
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 10px 14px !important;
    }

    .navbar-brand .brand-name {
        font-size: 1.3rem;
    }

    .navbar-brand .logo-img {
        height: 55px;
    }
}

/* Medium Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .navbar-nav .nav-link {
        font-size: 0.8rem;
        padding: 8px 9px !important;
    }

    .navbar-brand .brand-name {
        font-size: 1.05rem;
    }

    .nav-link-contact {
        padding: 7px 14px !important;
        font-size: 0.78rem !important;
        margin-left: 6px !important;
    }
}

/* Mobile & Tablet (Below 1200px) */
@media (max-width: 1199.98px) {

    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        left: -320px !important;
        width: 300px !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%) !important;
        box-shadow: 5px 0 40px rgba(0, 0, 0, 0.2) !important;
        padding: 100px 25px 40px 25px !important;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1040 !important;
        overflow-y: auto !important;
        display: block !important;
    }

    .navbar-collapse.show {
        left: 0 !important;
    }

    .navbar-collapse.collapsing {
        left: -320px !important;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        display: block !important;
    }

    .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 0;
        left: 300px;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: -1;
        pointer-events: none;
    }

    .navbar-collapse.show::before {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .navbar-nav {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        gap: 0 !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
        opacity: 0;
        transform: translateX(-25px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .navbar-collapse.show .nav-item:nth-child(1) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.05s;
    }

    .navbar-collapse.show .nav-item:nth-child(2) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.1s;
    }

    .navbar-collapse.show .nav-item:nth-child(3) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.15s;
    }

    .navbar-collapse.show .nav-item:nth-child(4) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.2s;
    }

    .navbar-collapse.show .nav-item:nth-child(5) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.25s;
    }

    .navbar-collapse.show .nav-item:nth-child(6) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.3s;
    }

    .navbar-collapse.show .nav-item:nth-child(7) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.35s;
    }

    .navbar-collapse.show .nav-item:nth-child(8) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.4s;
    }

    .navbar-collapse.show .nav-item:nth-child(9) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.45s;
    }

    .navbar-nav .nav-link {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 15px 5px !important;
        margin: 0 !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        color: #1E293B !important;
        border-bottom: 1px solid rgba(107, 180, 58, 0.12) !important;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #6BB43A !important;
        padding-left: 12px !important;
        background: rgba(107, 180, 58, 0.06) !important;
        border-radius: 8px !important;
    }

    .navbar-nav .nav-link::after {
        display: none !important;
    }

    .navbar-nav .dropdown-toggle {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    .navbar-nav .dropdown-toggle::after {
        margin-left: auto !important;
        font-size: 0.7rem !important;
    }

    .navbar .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 10px 0 10px 15px !important;
        background: rgba(107, 180, 58, 0.04) !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 0 12px 12px !important;
        animation: none !important;
        min-width: 100% !important;
    }

    .navbar .dropdown-item {
        padding: 11px 14px !important;
        font-size: 0.92rem !important;
        border-radius: 8px !important;
    }

    .navbar .dropdown-item:hover {
        padding-left: 20px !important;
    }

    .navbar .dropdown-divider {
        margin: 8px 14px !important;
    }

    /* .nav-link-contact {
        margin: 25px 0 0 0 !important;
        justify-content: center !important;
        padding: 14px 24px !important;
        font-size: 1rem !important;
        border-bottom: none !important;
    } */

    .navbar-toggler {
        border: none !important;
        padding: 8px !important;
        background: transparent !important;
        box-shadow: none !important;
        outline: none !important;
        z-index: 1050 !important;
    }

    .navbar-toggler:focus,
    .navbar-toggler:active {
        box-shadow: none !important;
        outline: none !important;
    }

    .navbar-toggler-icon {
        background-image: none !important;
        position: relative;
        width: 28px;
        height: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(135deg, #6BB43A 0%, #0EA5E9 100%);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before {
        top: 0;
    }

    .navbar-toggler-icon::after {
        bottom: 0;
    }

    .navbar-toggler-icon span {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 100%;
        height: 3px;
        background: linear-gradient(135deg, #6BB43A 0%, #0EA5E9 100%);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
        opacity: 0;
        transform: translateX(-10px);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    .mobile-menu-header {
        position: absolute;
        top: 30px;
        left: 25px;
        display: block !important;
    }

    .mobile-menu-logo {
        font-family: 'Orbitron', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: #2D5016;
    }

    .mobile-menu-logo span {
        background: linear-gradient(135deg, #6BB43A 0%, #0EA5E9 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .navbar-brand .logo-img {
        height: 45px;
    }

    .navbar-brand .brand-name {
        font-size: 1rem;
    }
}

/* Small Mobile (576px) */
@media (max-width: 576px) {
    .navbar-brand .logo-img {
        height: 42px;
    }

    .navbar-brand .brand-name {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }

    .navbar-collapse {
        width: 280px !important;
        left: -300px !important;
        padding: 95px 20px 35px 20px !important;
    }

    .navbar-collapse::before {
        left: 280px;
    }

    .navbar-nav .nav-link {
        font-size: 1rem !important;
        padding: 13px 5px !important;
    }

    .navbar .dropdown-item {
        font-size: 0.88rem !important;
    }
}

/* Extra Small (400px) */
@media (max-width: 400px) {
    .navbar-brand .brand-name {
        display: none;
    }

    .navbar-brand .logo-img {
        height: 40px;
    }

    .navbar-collapse {
        width: 260px !important;
        left: -280px !important;
    }

    .navbar-collapse::before {
        left: 260px;
    }
}

/* Body scroll lock */
body.menu-open {
    overflow: hidden;
}

/* ========================================== */
/* ========== HERO SECTION ========== */
/* ========================================== */

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.energy-wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 180, 58, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    animation: wave 15s ease-in-out infinite;
}

.energy-wave:nth-child(2) {
    animation-delay: -5s;
    opacity: 0.5;
}

@keyframes wave {

    0%,
    100% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
    }

    50% {
        transform: translateX(-25%) translateY(-20px) rotate(2deg);
    }
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--deep-green);
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 180, 58, 0.3);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 180, 58, 0.4);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-outline-custom:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 180, 58, 0.3);
}

.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.5s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ========================================== */
/* ========== SECTIONS ========== */
/* ========================================== */

.quick-blocks {
    padding: 80px 0;
    background: white;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================== */
/* ========== SERVICE CARDS ========== */
/* ========================================== */

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(107, 180, 58, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #FEF3C7 0%, #FCD34D 100%);
    color: #92400E;
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #DBEAFE 0%, #60A5FA 100%);
    color: #1E3A8A;
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #D1FAE5 0%, #34D399 100%);
    color: #065F46;
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #E0E7FF 0%, #818CF8 100%);
    color: #312E81;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.service-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--primary-green);
}

/* ========================================== */
/* ========== BUSINESS CARDS ========== */
/* ========================================== */

.business-card {
    padding: 0 !important;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.business-card-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e2e8f0;
    border-radius: 20px 20px 0 0;
}

.business-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.business-card:hover .business-card-img img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.business-card-img-overlay {
    position: absolute;
    bottom: 0;
    left: 20px;
    transform: translateY(50%);
    z-index: 10;
    transition: all 0.4s ease;
}

.business-card:hover .business-card-img-overlay {
    transform: translateY(50%) scale(1.05);
}

.business-card-img-overlay .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border: 3px solid white;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6BB43A 0%, #0EA5E9 100%);
    color: white;
}

.business-card-body {
    padding: 3rem 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 0 0 20px 20px;
    position: relative;
    z-index: 1;
}

.business-card-body .service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.business-card-body .service-features {
    text-align: left;
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-card-body .service-features li {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #475569;
}

.business-card-body .service-features li i {
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.85rem;
    color: #6BB43A;
}

.business-card-img::after {
    display: none;
}

/* Business Card Responsive */
@media (max-width: 992px) {
    .business-card-img {
        height: 200px;
    }

    .business-card-img-overlay {
        left: 16px;
    }

    .business-card-img-overlay .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.75rem;
        border-radius: 14px;
    }

    .business-card-body {
        padding: 2.75rem 1.25rem 1.5rem;
    }

    .business-card-body .service-title {
        font-size: 1.15rem;
    }

    .business-card-body .service-features li {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .business-card-img {
        height: 180px;
    }

    .business-card-img-overlay {
        left: 15px;
    }

    .business-card-img-overlay .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 12px;
        border-width: 2px;
    }

    .business-card-body {
        padding: 2.5rem 1rem 1.25rem;
    }

    .business-card-body .service-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .business-card-body .service-features li {
        font-size: 0.85rem;
        line-height: 1.5;
        padding: 0.35rem 0;
    }
}

@media (max-width: 576px) {
    #business .section-title {
        font-size: 1.75rem;
    }

    #business .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .business-card-img {
        height: 160px;
    }

    .business-card-img-overlay {
        left: 12px;
    }

    .business-card-img-overlay .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.35rem;
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .business-card-body {
        padding: 2.25rem 1rem 1rem;
    }

    .business-card-body .service-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .business-card-body .service-features li {
        font-size: 0.8rem;
        line-height: 1.45;
        padding: 0.3rem 0;
        gap: 0.4rem;
    }

    .business-card-body .service-features li i {
        font-size: 0.75rem;
        margin-top: 2px;
    }
}

@media (max-width: 400px) {
    .business-card-img {
        height: 140px;
    }

    .business-card-img-overlay {
        left: 10px;
    }

    .business-card-img-overlay .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-radius: 10px;
    }

    .business-card-body {
        padding: 2rem 0.85rem 0.85rem;
    }

    .business-card-body .service-title {
        font-size: 0.95rem;
    }

    .business-card-body .service-features li {
        font-size: 0.75rem;
    }
}

/* ========================================== */
/* ========== GALLERY ========== */
/* ========================================== */

.project-gallery {
    background: white;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    margin: 0;
    opacity: 0.9;
}

/* ========================================== */
/* ========== WHY ECOPULSE ========== */
/* ========================================== */

.why-ecopulse {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    box-shadow: 0 15px 40px rgba(107, 180, 58, 0.3);
    transform: scale(1.1);
}

.feature-item:nth-child(1) .feature-icon {
    color: #059669;
}

.feature-item:nth-child(2) .feature-icon {
    color: #0284c7;
}

.feature-item:nth-child(3) .feature-icon {
    color: #d97706;
}

.feature-item:nth-child(4) .feature-icon {
    color: #7c3aed;
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.7;
}

/* ========================================== */
/* ========== CTA SECTION ========== */
/* ========================================== */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(107, 180, 58, 0.95) 0%, rgba(14, 165, 233, 0.95) 100%),
        url('https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?w=1600&auto=format&fit=crop') center/cover;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-light-custom {
    background: white;
    color: var(--primary-green);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--deep-green);
}

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

.footer {
    background: #1E293B;
    color: white;
    padding: 60px 0 20px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-description {
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(107, 180, 58, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.social-link:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #94A3B8;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ========================================== */
/* ========== ANIMATIONS ========== */
/* ========================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}



/* ========== DROPDOWN ARROW FIX ========== */

/* Remove underline from dropdown toggles */
.navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle::after {
    /* Arrow style - NOT underline */
    content: '\F282' !important;
    font-family: 'bootstrap-icons' !important;
    font-size: 0.6rem !important;
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    transform: none !important;
    display: inline-block !important;
    margin-left: 5px !important;
    vertical-align: middle !important;
    transition: transform 0.3s ease !important;
    color: currentColor !important;
    border: none !important;
}

/* Rotate arrow when open */
.navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg) !important;
}

/* Make dropdown toggle inline-flex */
.navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
}

/* Mobile Fix */
@media (max-width: 1199.98px) {
    .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle::after {
        margin-left: auto !important;
        margin-right: 5px !important;
        font-size: 0.7rem !important;
    }
}


/* ========== LOGO SIZE FIX - BIGGER ========== */

.navbar-brand .logo-img {
    height: 70px !important;
    width: auto !important;
    max-height: 70px !important;
    object-fit: contain !important;
}

.navbar.scrolled .navbar-brand .logo-img {
    height: 58px !important;
    max-height: 58px !important;
}

/* Tablet */
@media (max-width: 1199.98px) {
    .navbar-brand .logo-img {
        height: 60px !important;
        max-height: 60px !important;
    }

    .navbar.scrolled .navbar-brand .logo-img {
        height: 50px !important;
        max-height: 50px !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar-brand .logo-img {
        height: 55px !important;
        max-height: 55px !important;
    }

    .navbar.scrolled .navbar-brand .logo-img {
        height: 48px !important;
        max-height: 48px !important;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .navbar-brand .logo-img {
        height: 50px !important;
        max-height: 50px !important;
    }
}

/* Extra Small */
@media (max-width: 400px) {
    .navbar-brand .logo-img {
        height: 45px !important;
        max-height: 45px !important;
    }
}


/* ========== MOBILE MENU - DROPDOWN TEXT CUT FIX ========== */

@media (max-width: 1199.98px) {

    /* Make sidebar wider */
    .navbar-collapse {
        width: 320px !important;
        left: -340px !important;
        padding: 100px 20px 40px 20px !important;
    }

    .navbar-collapse.show {
        left: 0 !important;
    }

    .navbar-collapse.collapsing {
        left: -340px !important;
    }

    /* Overlay position fix */
    .navbar-collapse::before {
        left: 320px !important;
    }

    /* Dropdown menu - text wrap fix */
    .navbar .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 8px 0 8px 10px !important;
        background: rgba(107, 180, 58, 0.04) !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 0 12px 12px !important;
        animation: none !important;
        min-width: 100% !important;
        overflow: visible !important;
    }

    /* Dropdown items - TEXT WRAP FIX */
    .navbar .dropdown-item {
        padding: 10px 12px !important;
        font-size: 0.88rem !important;
        border-radius: 8px !important;
        white-space: normal !important;
        /* Allow text wrap */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        line-height: 1.4 !important;
        display: flex !important;
        align-items: flex-start !important;
        /* Align icon to top */
        gap: 8px !important;
    }

    /* Dropdown item icon */
    .navbar .dropdown-item i {
        flex-shrink: 0 !important;
        width: 20px !important;
        font-size: 0.85rem !important;
        margin-top: 3px !important;
        color: #6BB43A !important;
    }

    /* Nav links - allow text wrap */
    .navbar-nav .nav-link {
        white-space: normal !important;
        word-wrap: break-word !important;
        line-height: 1.4 !important;
    }

    /* Dropdown toggle - proper spacing */
    .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        gap: 10px !important;
    }

    /* Arrow stays on right */
    .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle::after {
        flex-shrink: 0 !important;
        margin-left: auto !important;
    }

    /* Dropdown divider */
    .navbar .dropdown-divider {
        margin: 6px 10px !important;
    }

    /* Dropdown item hover */
    .navbar .dropdown-item:hover {
        padding-left: 16px !important;
        background: rgba(107, 180, 58, 0.08) !important;
        color: #6BB43A !important;
    }

    /* Contact button fix */
    .nav-link-contact {
        margin: 20px 0 10px 0 !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        border-bottom: none !important;
        white-space: nowrap !important;
    }
}

/* Small Mobile - Extra fixes */
@media (max-width: 576px) {
    .navbar-collapse {
        width: 290px !important;
        left: -310px !important;
        padding: 95px 18px 35px 18px !important;
    }

    .navbar-collapse.collapsing {
        left: -310px !important;
    }

    .navbar-collapse::before {
        left: 290px !important;
    }

    .navbar .dropdown-item {
        padding: 9px 10px !important;
        font-size: 0.85rem !important;
        gap: 6px !important;
    }

    .navbar .dropdown-item i {
        width: 18px !important;
        font-size: 0.8rem !important;
    }

    .navbar-nav .nav-link {
        font-size: 0.95rem !important;
        padding: 13px 5px !important;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .navbar-collapse {
        width: 270px !important;
        left: -290px !important;
        padding: 90px 15px 30px 15px !important;
    }

    .navbar-collapse.collapsing {
        left: -290px !important;
    }

    .navbar-collapse::before {
        left: 270px !important;
    }

    .navbar .dropdown-item {
        padding: 8px 8px !important;
        font-size: 0.82rem !important;
        gap: 5px !important;
    }

    .navbar .dropdown-item i {
        width: 16px !important;
        font-size: 0.75rem !important;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem !important;
        padding: 12px 4px !important;
    }
}



/* ========== MOBILE MENU HEADER + CONTACT BUTTON FIX ========== */

@media (max-width: 1199.98px) {

    /* ===== MOBILE MENU HEADER - ECOPULSE LOGO TEXT ===== */
    .mobile-menu-header {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        display: flex !important;
        align-items: center !important;
        padding: 20px 20px !important;
        background: white !important;
        border-bottom: 2px solid rgba(107, 180, 58, 0.15) !important;
        z-index: 5 !important;
    }

    .mobile-menu-logo {
        font-family: 'Orbitron', sans-serif !important;
        font-size: 1.4rem !important;
        font-weight: 800 !important;
        color: #2D5016 !important;
        letter-spacing: 2px !important;
        text-transform: uppercase !important;
    }

    .mobile-menu-logo span {
        background: linear-gradient(135deg, #6BB43A 0%, #0EA5E9 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    /* Add green line accent under header */
    .mobile-menu-header::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 20px;
        width: 60px;
        height: 3px;
        background: linear-gradient(135deg, #6BB43A 0%, #0EA5E9 100%);
        border-radius: 3px;
    }

    /* Adjust navbar-collapse padding for header */
    .navbar-collapse {
        padding-top: 85px !important;
    }

    /* ===== CONTACT BUTTON - PERFECT STYLE ===== */
    /* .nav-link-contact {
        margin: 25px 5px 15px 5px !important;
        padding: 14px 24px !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        background: linear-gradient(135deg, #6BB43A 0%, #0EA5E9 100%) !important;
        color: white !important;
        border-radius: 50px !important;
        border: none !important;
        border-bottom: none !important;
        box-shadow: 0 4px 15px rgba(107, 180, 58, 0.3) !important;
        transition: all 0.3s ease !important;
        letter-spacing: 0.5px !important;
        width: 100% !important;
    } */

    

    /* .nav-link-contact:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(107, 180, 58, 0.4) !important;
        color: white !important;
        background: linear-gradient(135deg, #5da032 0%, #0c8fcb 100%) !important;
        padding-left: 24px !important;
    } */

    /* .nav-link-contact:active {
        transform: translateY(0) !important;
        box-shadow: 0 2px 10px rgba(107, 180, 58, 0.3) !important;
    } */

    /* Contact button icon */
    /* .nav-link-contact i {
        font-size: 1.1rem !important;
        color: white !important;
    } */

    /* Contact button - remove underline effect */
    /* .nav-link-contact::after {
        display: none !important;
    } */
}

/* ===== SMALL MOBILE (576px) ===== */
@media (max-width: 576px) {
    .mobile-menu-header {
        padding: 18px 18px !important;
    }

    .mobile-menu-logo {
        font-size: 1.25rem !important;
        letter-spacing: 1.5px !important;
    }

    .mobile-menu-header::after {
        left: 18px;
        width: 50px;
    }

    .navbar-collapse {
        padding-top: 80px !important;
    }

    /* .nav-link-contact {
        margin: 20px 3px 12px 3px !important;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }

    .nav-link-contact i {
        font-size: 1rem !important;
    } */
}

/* ===== EXTRA SMALL MOBILE (400px) ===== */
@media (max-width: 400px) {
    .mobile-menu-header {
        padding: 15px 15px !important;
    }

    .mobile-menu-logo {
        font-size: 1.1rem !important;
        letter-spacing: 1px !important;
    }

    .mobile-menu-header::after {
        left: 15px;
        width: 40px;
    }

    .navbar-collapse {
        padding-top: 75px !important;
    }

    /* .nav-link-contact {
        margin: 18px 2px 10px 2px !important;
        padding: 11px 16px !important;
        font-size: 0.9rem !important;
        letter-spacing: 0 !important;
    } */
}




/* ========================================== */
/* ========== OUR SERVICES - NEW CARDS ========== */
/* ========================================== */

.services-card-new {
    background: white;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(107, 180, 58, 0.1);
}

.services-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(107, 180, 58, 0.2);
    border-color: rgba(107, 180, 58, 0.3);
}

/* Top Colored Bar */
.services-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #6BB43A 0%, #0EA5E9 100%);
    transition: height 0.4s ease;
}

.services-card-new:hover::before {
    height: 8px;
}

/* Icon */
.services-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 30px 24px 20px 24px;
    transition: all 0.4s ease;
    position: relative;
}

.services-card-new:hover .services-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Icon Colors */
.icon-solar {
    background: linear-gradient(135deg, #FEF3C7 0%, #FCD34D 100%);
    color: #92400E;
}

.icon-solar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-card-new:hover .icon-solar::after {
    opacity: 1;
}

.icon-epc {
    background: linear-gradient(135deg, #DBEAFE 0%, #60A5FA 100%);
    color: #1E3A8A;
}

.icon-epc::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-card-new:hover .icon-epc::after {
    opacity: 1;
}

.icon-om {
    background: linear-gradient(135deg, #D1FAE5 0%, #34D399 100%);
    color: #065F46;
}

.icon-om::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-card-new:hover .icon-om::after {
    opacity: 1;
}

.icon-electrical {
    background: linear-gradient(135deg, #E0E7FF 0%, #818CF8 100%);
    color: #312E81;
}

.icon-electrical::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: linear-gradient(135deg, #6366F1 0%, #818CF8 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-card-new:hover .icon-electrical::after {
    opacity: 1;
}

/* Title */
.services-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 24px 10px 24px;
    line-height: 1.35;
}

/* Description */
.services-card-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0 24px 16px 24px;
}

/* Feature List */
.services-card-list {
    list-style: none;
    padding: 0 24px;
    margin: 0 0 20px 0;
    flex: 1;
}

.services-card-list li {
    padding: 6px 0;
    font-size: 0.82rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.services-card-new:hover .services-card-list li {
    color: #334155;
}

.services-card-list li i {
    color: #6BB43A;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Bottom Link */
.services-card-bottom {
    padding: 16px 24px;
    border-top: 1px solid rgba(107, 180, 58, 0.1);
    margin-top: auto;
}

.services-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6BB43A;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.services-card-link i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.services-card-link:hover {
    color: #0EA5E9;
    gap: 10px;
}

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

/* ========== HOVER GLOW EFFECT ========== */

.services-card-new::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 180, 58, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.services-card-new:hover::after {
    opacity: 1;
}

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

/* Tablet */
@media (max-width: 992px) {
    .services-card-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin: 25px 20px 16px 20px;
    }

    .services-card-title {
        font-size: 1rem;
        margin: 0 20px 8px 20px;
    }

    .services-card-desc {
        font-size: 0.82rem;
        margin: 0 20px 14px 20px;
    }

    .services-card-list {
        padding: 0 20px;
    }

    .services-card-list li {
        font-size: 0.8rem;
        padding: 5px 0;
    }

    .services-card-bottom {
        padding: 14px 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services-card-new {
        border-radius: 16px;
    }

    .services-card-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        border-radius: 16px;
        margin: 22px 18px 14px 18px;
    }

    .services-card-title {
        font-size: 0.95rem;
        margin: 0 18px 8px 18px;
    }

    .services-card-desc {
        font-size: 0.8rem;
        margin: 0 18px 12px 18px;
    }

    .services-card-list {
        padding: 0 18px;
        margin-bottom: 14px;
    }

    .services-card-list li {
        font-size: 0.78rem;
        padding: 4px 0;
        gap: 6px;
    }

    .services-card-bottom {
        padding: 12px 18px;
    }

    .services-card-link {
        font-size: 0.82rem;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    #services .section-title {
        font-size: 1.75rem;
    }

    #services .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .services-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        border-radius: 14px;
    }

    .services-card-title {
        font-size: 0.92rem;
    }
}

/* ========================================== */
/* ========== HERO SECTION - NEW ========== */
/* ========================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Background Image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?w=1920&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Gradient Overlay - Less opacity for visible background */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.55) 0%,
            rgba(240, 253, 244, 0.50) 30%,
            rgba(219, 234, 254, 0.45) 60%,
            rgba(240, 253, 244, 0.40) 100%);
    z-index: 2;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(107, 180, 58, 0.3) 0%, rgba(14, 165, 233, 0.3) 100%);
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.particle:nth-child(2) {
    width: 50px;
    height: 50px;
    top: 60%;
    left: 80%;
    animation-delay: -3s;
    animation-duration: 14s;
}

.particle:nth-child(3) {
    width: 120px;
    height: 120px;
    top: 70%;
    left: 20%;
    animation-delay: -5s;
    animation-duration: 20s;
    opacity: 0.5;
}

.particle:nth-child(4) {
    width: 40px;
    height: 40px;
    top: 10%;
    left: 70%;
    animation-delay: -7s;
    animation-duration: 12s;
}

.particle:nth-child(5) {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 50%;
    animation-delay: -10s;
    animation-duration: 16s;
    opacity: 0.4;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translate(30px, -50px) rotate(90deg);
        opacity: 0.6;
    }

    50% {
        transform: translate(-20px, -100px) rotate(180deg);
        opacity: 0.3;
    }

    75% {
        transform: translate(50px, -50px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(107, 180, 58, 0.12);
    border: 1px solid rgba(107, 180, 58, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2D5016;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.1s both;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2D5016 0%, #6BB43A 50%, #0EA5E9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #2D5016;
    margin-bottom: 1.5rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 550px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 2.5rem;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(107, 180, 58, 0.15);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 1s ease-out 1s both;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(107, 180, 58, 0.15) 0%, rgba(14, 165, 233, 0.15) 100%);
    color: #6BB43A;
}

.hero-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(107, 180, 58, 0.2);
}

/* Hero Visual - Image Grid */
.hero-visual {
    position: relative;
    z-index: 5;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-image-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

.hero-main-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-main-image:hover img {
    transform: scale(1.05);
}

/* Image Badge */
.hero-image-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-image-badge i {
    color: #6BB43A;
    font-size: 1.1rem;
}

.hero-image-badge span {
    font-size: 0.82rem;
    font-weight: 700;
    color: #2D5016;
    letter-spacing: 0.5px;
}

/* Bottom Images */
.hero-bottom-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.hero-small-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    animation: float 6s ease-in-out infinite;
}

.hero-small-image:nth-child(1) {
    animation-delay: 0.5s;
}

.hero-small-image:nth-child(2) {
    animation-delay: 1s;
}

.hero-small-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-small-image:hover img {
    transform: scale(1.08);
}

/* Scroll Down Indicator */
.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-scroll-down a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-down span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6BB43A;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #6BB43A;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: #6BB43A;
    border-radius: 3px;
    animation: scrollWheel 1.5s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

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

/* Large Desktop */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-main-image img {
        height: 320px;
    }

    .hero-small-image img {
        height: 180px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 15px;
        padding: 16px 20px;
    }

    .hero-main-image img {
        height: 240px;
    }

    .hero-small-image img {
        height: 130px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        padding: 90px 0 80px;
        min-height: auto;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0.65) 0%,
                rgba(240, 253, 244, 0.58) 50%,
                rgba(219, 234, 254, 0.50) 100%);
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 16px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 12px;
        padding: 14px 16px;
        margin-top: 2rem;
    }

    .hero-stat-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .hero-stat-label {
        font-size: 0.72rem;
    }

    .hero-stat-divider {
        height: 24px;
    }

    .hero-main-image img {
        height: 200px;
    }

    .hero-small-image img {
        height: 120px;
    }

    .hero-scroll-down {
        bottom: 15px;
    }

    .scroll-mouse {
        width: 22px;
        height: 34px;
    }

    .hero-scroll-down span {
        font-size: 0.6rem;
    }

    /* Hide some particles on mobile */
    .particle:nth-child(3),
    .particle:nth-child(5) {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .hero-section {
        padding: 85px 0 70px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-stats {
        gap: 10px;
        padding: 12px 14px;
        border-radius: 12px;
    }

    .hero-stat-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .hero-stat-label {
        font-size: 0.68rem;
    }

    .hero-stat-divider {
        height: 20px;
    }

    .hero-main-image img {
        height: 180px;
    }

    .hero-small-image img {
        height: 100px;
    }

    .hero-main-image {
        border-radius: 14px;
    }

    .hero-small-image {
        border-radius: 12px;
    }

    .hero-image-badge {
        padding: 7px 12px;
        bottom: 10px;
        left: 10px;
    }

    .hero-image-badge i {
        font-size: 0.9rem;
    }

    .hero-image-badge span {
        font-size: 0.72rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 5px 12px;
    }

    .hero-stats {
        gap: 8px;
        padding: 10px 12px;
    }

    .hero-stat-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .hero-stat-label {
        font-size: 0.6rem;
    }

    .hero-stat-divider {
        height: 16px;
    }

    .hero-main-image img {
        height: 150px;
    }

    .hero-small-image img {
        height: 85px;
    }

    .hero-scroll-down {
        display: none;
    }
}



/* ========== HERO TEXT READABILITY WITH LESS OVERLAY ========== */

.hero-title {
    background: linear-gradient(135deg, #1a3a0a 0%, #2D5016 50%, #0c6e9e 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none;
}

.hero-subtitle {
    color: #1a3a0a !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.hero-description {
    color: #1E293B !important;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
    font-weight: 500 !important;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(107, 180, 58, 0.4) !important;
    color: #1a3a0a !important;
    font-weight: 700 !important;
    backdrop-filter: blur(5px);
}

/* Stats bar more visible */
.hero-stats {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(107, 180, 58, 0.25) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

.hero-stat-label {
    color: #1E293B !important;
    font-weight: 700 !important;
}

.hero-stat-icon {
    background: linear-gradient(135deg, rgba(107, 180, 58, 0.2) 0%, rgba(14, 165, 233, 0.2) 100%) !important;
    color: #2D5016 !important;
}

/* Image cards more prominent */
.hero-main-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.hero-small-image {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.hero-image-badge {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Buttons more visible */
.btn-primary-custom {
    box-shadow: 0 6px 20px rgba(107, 180, 58, 0.4) !important;
}

.btn-outline-custom {
    background: rgba(255, 255, 255, 0.7) !important;
    border: 2px solid #2D5016 !important;
    color: #2D5016 !important;
    backdrop-filter: blur(5px);
}

.btn-outline-custom:hover {
    background: #2D5016 !important;
    color: white !important;
}

/* Scroll indicator */
.scroll-mouse {
    border-color: #2D5016 !important;
}

.scroll-wheel {
    background: #2D5016 !important;
}

.hero-scroll-down span {
    color: #2D5016 !important;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

/* Particles slightly more visible */
.particle {
    background: linear-gradient(135deg, rgba(107, 180, 58, 0.2) 0%, rgba(14, 165, 233, 0.2) 100%) !important;
}














/* ========================================== */
/* ========== ABOUT SECTION - NEW ========== */
/* ========================================== */

.about-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 180, 58, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== Image Wrapper ===== */
.about-image-wrapper {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

/* Green border accent */
.about-image-main::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 40px;
    bottom: 40px;
    border: 3px solid #6BB43A;
    border-radius: 24px;
    z-index: -1;
    opacity: 0.4;
}

.about-image-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
}

.about-image-small img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-small:hover img {
    transform: scale(1.05);
}

/* Experience Badge */
.about-exp-badge {
    position: absolute;
    top: 30px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 14px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.about-exp-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6BB43A 0%, #0EA5E9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.about-exp-title {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-exp-year {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #2D5016;
    line-height: 1;
}

/* ===== Content Wrapper ===== */
.about-content-wrapper {
    padding-left: 10px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(107, 180, 58, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #6BB43A;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.4;
    margin-bottom: 20px;
}

.about-heading span {
    color: #6BB43A;
}

.about-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Key Points */
.about-key-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 25px;
}

.about-key-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-key-item:hover {
    background: rgba(107, 180, 58, 0.08);
    transform: translateX(5px);
}

.about-key-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6BB43A 0%, #0EA5E9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.about-key-item span {
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
}

/* ===== Vision & Mission Cards ===== */
.vm-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(107, 180, 58, 0.1);
    transition: all 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(107, 180, 58, 0.15);
}

.vm-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 28px 28px 0 28px;
}

.vm-icon-wrap {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6BB43A 0%, #34D399 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.vm-card:hover .vm-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.vm-icon-blue {
    background: linear-gradient(135deg, #0EA5E9 0%, #60A5FA 100%);
}

.vm-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
}

.vm-card-body {
    padding: 20px 28px 28px 28px;
}

.vm-card-body p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

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

.vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
}

.vm-list li i {
    color: #0EA5E9;
    font-size: 0.9rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Accent Bar */
.vm-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6BB43A 0%, #34D399 100%);
    transition: height 0.3s ease;
}

.vm-card:hover .vm-card-accent {
    height: 6px;
}

.vm-accent-blue {
    background: linear-gradient(135deg, #0EA5E9 0%, #60A5FA 100%);
}

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

@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }

    .about-image-wrapper {
        padding-right: 30px;
        padding-bottom: 30px;
        max-width: 500px;
        margin: 0 auto 30px auto;
    }

    .about-image-main img {
        height: 320px;
    }

    .about-image-small {
        width: 50%;
    }

    .about-image-small img {
        height: 150px;
    }

    .about-exp-badge {
        right: 40px;
        top: 20px;
    }

    .about-content-wrapper {
        padding-left: 0;
    }

    .about-heading {
        font-size: 1.6rem;
    }

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

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-image-wrapper {
        padding-right: 25px;
        padding-bottom: 25px;
    }

    .about-image-main img {
        height: 280px;
    }

    .about-image-main::after {
        display: none;
    }

    .about-image-small img {
        height: 130px;
    }

    .about-exp-badge {
        padding: 10px 16px;
        right: 30px;
        top: 15px;
    }

    .about-exp-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .about-exp-year {
        font-size: 1.2rem;
    }

    .about-heading {
        font-size: 1.4rem;
    }

    .about-text {
        font-size: 0.9rem;
    }

    .about-key-item span {
        font-size: 0.8rem;
    }

    .vm-card-header {
        padding: 22px 22px 0 22px;
    }

    .vm-icon-wrap {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .vm-title {
        font-size: 1.15rem;
    }

    .vm-card-body {
        padding: 16px 22px 22px 22px;
    }

    .vm-card-body p,
    .vm-list li {
        font-size: 0.88rem;
    }
}

@media (max-width: 576px) {
    .about-image-main img {
        height: 220px;
    }

    .about-image-small {
        width: 55%;
    }

    .about-image-small img {
        height: 110px;
    }

    .about-exp-badge {
        padding: 8px 12px;
        gap: 8px;
        right: 28px;
    }

    .about-exp-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .about-exp-title {
        font-size: 0.65rem;
    }

    .about-exp-year {
        font-size: 1.1rem;
    }

    .about-tag {
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    .about-heading {
        font-size: 1.25rem;
    }

    .about-text {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .about-key-icon {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .about-key-item {
        padding: 8px 10px;
    }

    .about-key-item span {
        font-size: 0.78rem;
    }

    .vm-icon-wrap {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .vm-title {
        font-size: 1.05rem;
    }
}

@media (max-width: 400px) {
    .about-image-main img {
        height: 180px;
    }

    .about-image-small img {
        height: 90px;
    }

    .about-exp-badge {
        top: 10px;
        right: 25px;
    }

    .about-heading {
        font-size: 1.1rem;
    }
}








/* ========================================== */
/* ===== SERVICES SECTION - BACKGROUND ===== */
/* ========================================== */

.services-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Background Image */
.services-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1920&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

/* Dark Green Overlay - Less opacity */
.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 30, 8, 0.75) 0%,
            rgba(20, 50, 10, 0.70) 30%,
            rgba(10, 40, 50, 0.65) 60%,
            rgba(15, 30, 8, 0.70) 100%);
    z-index: 2;
}

/* Title & Subtitle White */
.services-title-white {
    background: none !important;
    -webkit-text-fill-color: white !important;
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.services-subtitle-white {
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Cards on dark background - Glass Effect */
.services-section .services-card-new {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.services-section .services-card-new:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Top bar brighter on dark bg */
.services-section .services-card-new::before {
    box-shadow: 0 0 15px rgba(107, 180, 58, 0.4);
}

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

@media (max-width: 992px) {
    .services-section {
        padding: 80px 0;
    }

    .services-bg-image {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-overlay {
        background: linear-gradient(180deg,
                rgba(15, 30, 8, 0.80) 0%,
                rgba(20, 50, 10, 0.75) 50%,
                rgba(10, 40, 50, 0.70) 100%);
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 50px 0;
    }
}

.corporate {
    background: linear-gradient(135deg, #6BB43A 0%, #0EA5E9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}







