/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

/* Mobile-first responsive breakpoints */
:root {
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1024px;
    --large-desktop: 1200px;
}

/* Top Bar */
.top-bar {
    background: #f1c40f;
    color: #fff;
    font-size: 1rem;
    padding: 0.4rem 2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.01em;
}

.top-bar span,
.top-bar a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.2rem;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.top-bar a:hover {
    color: #eee;
}

.top-bar-social {
    display: flex;
    gap: 1rem;
}

.top-bar-social a {
    color: #fff;
    font-size: 1.1rem;
    transition: color 0.2s ease-in-out;
}

.top-bar-social a:hover {
    color: #eee;
}

/* Mobile responsive top bar */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .top-bar-social {
        gap: 0.8rem;
    }
    
    .top-bar-social a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .top-bar span {
        text-align: center;
    }
}

/* Header/Navbar */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.7rem 2vw;
    position: relative;
}

.logo-bar {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #21b573;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    letter-spacing: 0.03em;
}

.logo-highlight {
    color: #f1c40f;
}

.logo-img {
    height: 60px;
    width: auto;
}

.brand-name {
    font-size: 1.35rem;
    font-weight: bold;
    color: #21b573;
    letter-spacing: 0.02em;
    font-family: 'Segoe UI', Arial, sans-serif;
    text-shadow: 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.07);
}

/* Navigation Links */
.nav-links {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #222;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    padding: 0.5rem 0.7rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links .dropdown:hover > a {
    color: #2ecc71;
    background: #f6f6f6;
}

.nav-links a.active {
    color: #21b573;
    background: #f6f6f6;
    font-weight: 600;
}

.nav-links a.active:hover {
    color: #21b573;
    background: #f6f6f6;
}

/* Dropdown */
.dropdown .arrow {
    font-size: 0.8em;
    margin-left: 0.2em;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    border-radius: 0 0 10px 10px;
    z-index: 100;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    width: 100%;
    color: #222;
    padding: 0.7rem 1.2rem;
    border-radius: 0;
    font-size: 1rem;
    background: none;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background: #eafaf1;
    color: #2ecc71;
}

/* Call Button */
.call-btn {
    flex: 0 0 auto;
    margin-left: 1.5rem;
}

.call-btn a {
    background: #21b573;
    color: #fff;
    font-weight: bold;
    font-size: 1.08rem;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6em;
    box-shadow: 0 2px 8px rgba(46,204,113,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}

.call-btn a:hover {
    background: #169c5f;
    box-shadow: 0 4px 16px rgba(46,204,113,0.13);
}

.call-btn i {
    font-size: 1.2em;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .navbar {
        padding: 0.7rem 1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .call-btn a {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem 2rem;
        gap: 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 8px;
        margin-top: 0.5rem;
        padding: 0.5rem;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .call-btn {
        margin-left: 1rem;
    }
    
    .call-btn a {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
    
    .logo-img {
        height: 45px;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 0.5rem 0.8rem;
    }
    
    .nav-links {
        width: 90%;
        padding: 4rem 1.5rem 2rem 1.5rem;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .call-btn {
        margin-left: 0.5rem;
    }
    
    .call-btn a {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .call-btn a span {
        display: none; /* Hide phone number text on very small screens */
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.4rem 0.6rem;
    }
    
    .nav-links {
        width: 95%;
        padding: 3.5rem 1rem 2rem 1rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .call-btn a {
        padding: 0.3rem 0.5rem;
    }
    
    .call-btn i {
        font-size: 1rem;
    }
}

/* Overlay for mobile menu */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    backdrop-filter: blur(2px);
}

.mobile-overlay.active {
    display: block;
}

/* Mobile menu animations */
.nav-links {
    transition: right 0.3s ease-in-out;
}

.hamburger span {
    transition: all 0.3s ease-in-out;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Mobile-specific hero enhancements */
@media (max-width: 768px) {
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(33, 181, 115, 0.1), rgba(241, 196, 15, 0.1));
        z-index: 1;
        pointer-events: none;
    }
    
    .hero-container {
        position: relative;
        z-index: 2;
    }
    
    /* Add subtle animation to slide content */
    .slide-content {
        animation: slideInUp 0.8s ease-out;
    }
    
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Enhanced query form with better mobile UX */
    .query-form {
        animation: fadeInUp 1s ease-out 0.3s both;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Better touch feedback for form elements */
    .query-form input:active,
    .query-form select:active {
        transform: scale(0.98);
    }
    
    .query-form button:active {
        transform: scale(0.95);
    }
    
    /* Enhanced slider navigation */
    .slider-btn {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    /* Better dot indicators */
    .dot {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
}

/* Enhanced Mobile Responsive Hero Section */
@media (max-width: 768px) {
    .hero {
        height: 85vh;
        min-height: 600px;
        position: relative;
    }
    
    .hero-container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .slider-container {
        height: 60%;
        position: relative;
    }
    
    .slide-content {
        bottom: 10%;
        left: 5%;
        right: 5%;
        text-align: center;
        background: rgba(0, 0, 0, 0.6);
        padding: 1.5rem 1rem;
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .slide-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        color: #fff;
    }
    
    .slide-content p {
        font-size: 1.2rem;
        color: #f0f0f0;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        line-height: 1.4;
    }
    
    .query-form {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 90%;
        max-width: 450px;
        margin: 0 auto 2rem auto;
        padding: 2rem 1.5rem;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .query-form h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        color: #21b573;
        font-weight: 700;
        text-align: center;
    }
    
    .query-form form {
        gap: 1.2rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .query-form input,
    .query-form select {
        padding: 1rem 1.2rem;
        font-size: 1rem;
        border: 2px solid #e1e8ed;
        border-radius: 10px;
        background: #fff;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .query-form input:focus,
    .query-form select:focus {
        border-color: #21b573;
        box-shadow: 0 0 0 3px rgba(33, 181, 115, 0.1);
        outline: none;
    }
    
    .query-form button {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        background: linear-gradient(135deg, #21b573, #169c5f);
        border: none;
        border-radius: 10px;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(33, 181, 115, 0.3);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .query-form button:hover {
        background: linear-gradient(135deg, #169c5f, #0f7a4a);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(33, 181, 115, 0.4);
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        background: rgba(255, 255, 255, 0.9);
        color: #333;
        border: none;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
    }
    
    .slider-btn:hover {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
    
    .prev {
        left: 15px;
    }
    
    .next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        margin: 0 5px;
        background: rgba(255, 255, 255, 0.6);
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }
    
    .dot.active {
        background: #21b573;
        border-color: #21b573;
        transform: scale(1.2);
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 700px;
    }
    
    .slider-container {
        height: 55%;
    }
    
    .slide-content {
        bottom: 8%;
        left: 3%;
        right: 3%;
        padding: 1.2rem 0.8rem;
        border-radius: 10px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .query-form {
        width: 95%;
        padding: 1.5rem 1rem;
        margin: 0 auto 1.5rem auto;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .query-form h3 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .query-form form {
        gap: 1rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .query-form input,
    .query-form select {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .query-form button {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

@media (max-width: 360px) {
    .hero {
        height: 100vh;
        min-height: 650px;
    }
    
    .slide-content h2 {
        font-size: 1.6rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .query-form {
        width: 98%;
        padding: 1.2rem 0.8rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .query-form h3 {
        font-size: 1.3rem;
    }
    
    .query-form input,
    .query-form select {
        padding: 0.8rem 0.9rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .query-form button {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Additional mobile optimizations for hero section */
@media (max-width: 768px) {
    /* Improve touch targets */
    .slider-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .dot {
        min-width: 12px;
        min-height: 12px;
    }
    
    /* Better form accessibility */
    .query-form input,
    .query-form select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .query-form select {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
        padding-right: 40px;
    }
    
    /* Loading state for button */
    .query-form button:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none !important;
    }
    
    /* Success message styling */
    .query-form .alert {
        margin-top: 1rem;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .query-form .alert-success {
        background: rgba(33, 181, 115, 0.1);
        color: #21b573;
        border: 1px solid rgba(33, 181, 115, 0.2);
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .slider-container {
        height: 70%;
    }
    
    .query-form {
        margin: 1rem auto;
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .slide-content {
        bottom: 5%;
        padding: 1rem 0.8rem;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

/* Enhanced Mobile Responsive Styles for Livewire Components */

/* Requisites Section Mobile Responsive */
@media (max-width: 768px) {
    .requisites {
        padding: 2rem 1rem 1.5rem 1rem;
    }
    
    .requisites-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .requisite-card {
        flex-direction: column !important;
        text-align: center;
        padding: 1.5rem 1rem !important;
        gap: 1.5rem !important;
        align-items: center !important;
    }
    
    .requisite-illustration {
        margin: 0 auto !important;
        flex: 0 0 auto;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .requisite-illustration img {
        width: 120px !important;
        height: 120px !important;
        border-radius: 12px !important;
    }
    
    .requisite-content h2,
    .requisite-content h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    .requisite-content p,
    .requisite-content ul {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
    }
    
    .requisite-content ul {
        text-align: left;
        padding-left: 1.5rem;
    }
    
    .requisite-content li {
        margin-bottom: 0.5rem;
    }
    
    /* Override inline styles for mobile */
    .requisite-card[style*="display: flex"] {
        flex-direction: column !important;
    }
    
    .requisite-card[style*="align-items: flex-start"] {
        align-items: center !important;
    }
    
    .requisite-card[style*="gap: 24px"] {
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .requisites {
        padding: 1.5rem 0.8rem 1rem 0.8rem;
    }
    
    .requisites-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .requisite-card {
        padding: 1rem 0.8rem !important;
        gap: 1rem !important;
    }
    
    .requisite-illustration img {
        width: 100px !important;
        height: 100px !important;
    }
    
    .requisite-content h2,
    .requisite-content h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .requisite-content p,
    .requisite-content ul {
        font-size: 0.9rem;
    }
    
    .requisite-content ul {
        padding-left: 1.2rem;
    }
    
    /* Override inline styles for small mobile */
    .requisite-card[style*="gap: 24px"] {
        gap: 1rem !important;
    }
}

/* Why Us Section Mobile Responsive */
@media (max-width: 768px) {
    .why-us {
        padding: 2.5rem 1rem 2rem 1rem;
    }
    
    .whyus-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .whyus-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .whyus-illustration {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .whyus-illustration img {
        width: 100%;
        max-width: 250px;
    }
    
    .whyus-list {
        gap: 1.2rem;
    }
    
    .whyus-item {
        gap: 1rem;
    }
    
    .whyus-list-icon {
        font-size: 1.8rem;
    }
    
    .whyus-item strong {
        font-size: 1rem;
    }
    
    .whyus-item div {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .why-us {
        padding: 2rem 0.8rem 1.5rem 0.8rem;
    }
    
    .whyus-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .whyus-row {
        gap: 1.5rem;
    }
    
    .whyus-illustration {
        max-width: 220px;
    }
    
    .whyus-illustration img {
        max-width: 200px;
    }
    
    .whyus-list {
        gap: 1rem;
    }
    
    .whyus-item {
        gap: 0.8rem;
    }
    
    .whyus-list-icon {
        font-size: 1.5rem;
    }
    
    .whyus-item strong {
        font-size: 0.95rem;
    }
    
    .whyus-item div {
        font-size: 0.9rem;
    }
}

/* Approach Section Mobile Responsive */
@media (max-width: 768px) {
    .about-content {
        padding: 3rem 1rem;
    }
    
    .about-section {
        margin-bottom: 3rem;
    }
    
    .about-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-image {
        padding: 1rem;
        max-width: 280px;
    }
    
    .about-image img {
        max-width: 260px;
    }
    
    /* Smart Approach Section */
    .smart-approach {
        padding: 3rem 1rem;
    }
    
    .smart-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .smart-features {
        flex-direction: column !important;
        gap: 1.5rem;
        align-items: center !important;
    }
    
    .smart-card {
        min-width: 280px !important;
        max-width: 100% !important;
        padding: 1.5rem 1rem !important;
        flex: none !important;
    }
    
    .smart-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 1rem;
    }
    
    .smart-main {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .smart-sub {
        font-size: 0.9rem;
    }
    
    /* Override inline styles for mobile */
    .smart-features[style*="justify-content: center"] {
        flex-direction: column !important;
    }
    
    .smart-features[style*="align-items: center"] {
        align-items: center !important;
    }
    
    .smart-card[style*="flex: 1"] {
        flex: none !important;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 2rem 0.8rem;
    }
    
    .about-section {
        margin-bottom: 2rem;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    .about-image {
        padding: 0.8rem;
        max-width: 240px;
    }
    
    .about-image img {
        max-width: 220px;
    }
    
    /* Smart Approach Section */
    .smart-approach {
        padding: 2rem 0.8rem;
    }
    
    .smart-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .smart-features {
        gap: 1rem;
    }
    
    .smart-card {
        min-width: 250px !important;
        padding: 1.2rem 0.8rem !important;
    }
    
    .smart-icon {
        width: 45px !important;
        height: 45px !important;
        margin-bottom: 0.8rem;
    }
    
    .smart-main {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .smart-sub {
        font-size: 0.85rem;
    }
}

/* Testimonials Section Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-slider {
        padding: 2rem 1rem;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-slide {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .testimonial-img {
        width: 80px;
        height: 80px;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-content {
        padding-right: 0;
        align-items: center;
    }
    
    .testimonial-name {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .testimonial-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
        margin: 0 0.8rem;
    }
    
    .testimonial-dots {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-slider {
        padding: 1.5rem 0.8rem;
    }
    
    .testimonials-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-slide {
        padding: 1.2rem 0.8rem;
        gap: 0.8rem;
    }
    
    .testimonial-img {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
        margin: 0 0.5rem;
    }
}

/* Enhanced Stats Section Mobile Responsive */
@media (max-width: 768px) {
    .stats-cards {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem auto;
        padding: 0 1rem;
    }
    
    .stat-card {
        min-width: 100%;
        max-width: 100%;
        padding: 1.2rem 1rem;
        margin: 0;
    }
    
    .stat-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stats-cards {
        gap: 0.8rem;
        margin: 1rem auto;
        padding: 0 0.8rem;
    }
    
    .stat-card {
        padding: 1rem 0.8rem;
    }
    
    .stat-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

.hero-container {
    height: 100%;
    position: relative;
}

.slider-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.5rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.5);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: white;
}

.query-form {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.query-form h3 {
    color: #2ecc71;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.query-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.query-form input,
.query-form select {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.query-form button {
    background-color: #2ecc71;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.query-form button:hover {
    background-color: #27ae60;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 4rem 1rem;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Mobile responsive stats section */
@media (max-width: 768px) {
    .stats {
        padding: 2rem 1rem;
        gap: 1rem;
    }
    
    .stats-overlay {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-item {
        min-width: auto;
        padding: 0.5rem;
    }
    
    .stat-item h2 {
        font-size: 1.5rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .stats {
        padding: 1.5rem 0.5rem;
    }
    
    .stats-overlay {
        padding: 0.8rem;
    }
    
    .stat-item h2 {
        font-size: 1.3rem;
    }
    
    .stat-item p {
        font-size: 0.75rem;
    }
}

.stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 5;
    border-top: 2px solid rgba(46, 204, 113, 0.3);
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    flex: 1;
    min-width: 150px;
    color: white;
    padding: 0.5rem;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.5s; }
.stat-item:nth-child(4) { animation-delay: 0.7s; }

.stat-item h2 {
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 0.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-item p {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    background: #fff;
    padding: 4rem 1rem 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
}

.services-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    color: #222;
    letter-spacing: 0.01em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
}

.service-card {
    background: #1baedc;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    padding: 1.3rem 1.1rem 1.3rem 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    cursor: pointer;
    min-height: 160px;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.service-card:hover {
    box-shadow: 0 6px 24px rgba(27,174,220,0.18), 0 2px 8px rgba(0,0,0,0.10);
    transform: translateY(-4px) scale(1.04);
}
.service-icon {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.7rem;
}
.service-card h3 {
    font-size: 1.12rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
    margin-top: 0.1rem;
}
.service-card p {
    color: #fff;
    font-size: 0.97rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-card {
        padding: 1rem 0.7rem 1rem 0.7rem;
        min-height: 120px;
        min-width: 140px;
        max-width: 100vw;
    }
    .service-icon {
        font-size: 1.7rem;
    }
    .service-card h3 {
        font-size: 1rem;
    }
    .service-card p {
        font-size: 0.89rem;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 0.7rem 0.2rem 0.7rem 0.2rem;
        min-width: 100px;
        max-width: 100vw;
    }
    .service-icon {
        font-size: 1.3rem;
    }
    .service-card h3 {
        font-size: 0.93rem;
    }
    .service-card p {
        font-size: 0.8rem;
    }
}

/* Why Choose Us Section */
.why-us {
    background: #fff;
    padding: 3.5rem 1rem 2.5rem 1rem;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
}
.whyus-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    color: #222;
    letter-spacing: 0.01em;
}
.whyus-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.whyus-illustration {
    flex: 1 1 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    max-width: 420px;
}
.whyus-illustration img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
}
.whyus-list {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    min-width: 260px;
}
.whyus-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    font-size: 1.08rem;
}
.whyus-list-icon {
    color: #21b573;
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.1em;
}
.whyus-item strong {
    font-size: 1.08rem;
    color: #222;
    font-weight: bold;
}
.whyus-item div {
    color: #222;
    font-size: 1.01rem;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .whyus-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .whyus-illustration {
        max-width: 320px;
        margin: 0 auto;
    }
    .whyus-list {
        min-width: 0;
    }
}
@media (max-width: 600px) {
    .whyus-row {
        gap: 0.7rem;
    }
    .whyus-illustration {
        max-width: 200px;
    }
    .whyus-list {
        gap: 0.7rem;
    }
    .whyus-list-icon {
        font-size: 1.3rem;
    }
    .whyus-item strong {
        font-size: 0.98rem;
    }
    .whyus-item div {
        font-size: 0.89rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/contact-hero.jpg') center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-hero-content h1 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0 20px;
}

.contact-hero-content p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Contact Info Section */
.contact-info-section {
    margin-bottom: 50px;
}

.contact-info-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 40px;
    position: relative;
}

.contact-info-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #21b573 60%, #f1c40f 100%);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
    background: #f8f9fa;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: #21b573;
}

.info-content {
    flex-grow: 1;
}

.info-content h3 {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 5px 0;
    line-height: 1.4;
}

.info-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #21b573;
}

/* Contact Form Section */
.contact-form-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 50px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #222;
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #21b573;
    box-shadow: 0 0 0 3px rgba(33, 181, 115, 0.1);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #21b573;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s, transform 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #169c5f;
    transform: translateY(-2px);
}

.submit-btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-form-section {
        padding: 20px;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }

    .form-header p {
        font-size: 1rem;
    }

    .submit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Locations Section */
.locations-section {
    margin-bottom: 40px;
}

.locations-section h2 {
    color: #222;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.location-card h3 {
    color: #222;
    padding: 20px;
    margin: 0;
    font-size: 1.3rem;
    background: #f8f8f8;
}

.location-map {
    height: 200px;
    width: 100%;
}

.location-details {
    padding: 20px;
}

.location-details p {
    color: #666;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-details i {
    color: #21b573;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-hero-content p {
        font-size: 1rem;
    }

    .contact-form-section {
        padding: 20px;
    }

    .contact-form-section h2,
    .contact-info-section h2,
    .locations-section h2 {
        font-size: 1.8rem;
    }

    .contact-info-grid,
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-map {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 200px;
    }

    .contact-hero-content h1 {
        font-size: 1.8rem;
    }

    .contact-form-section {
        padding: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }

    .submit-btn {
        padding: 12px;
    }

    .location-card h3 {
        font-size: 1.2rem;
        padding: 15px;
    }

    .location-details {
        padding: 15px;
    }
    
    .contact-info-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-icon i {
        font-size: 1.2rem;
    }
    
    .info-content h3 {
        font-size: 1rem;
    }
    
    .info-content p {
        font-size: 0.85rem;
    }
}

/* Footer */
.site-footer {
    background: #222;
    color: #fff;
    padding: 3.5rem 1rem 1.5rem 1rem;
    font-size: 1rem;
}

.footer-content-wrapper {
    display: grid;
    /* Adjust grid to better balance space between left and right columns */
    grid-template-columns: 1.2fr 2.3fr; /* Adjusted grid for left and right */
    gap: 1.5rem; /* Moderate gap */
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    align-items: start;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Adjusted gap between logo/address and links */
    align-items: flex-start;
}

.footer-right {
    display: grid;
    /* Adjust column widths: Main Links, Services (increased width), Location, Social */
    grid-template-columns: 1fr 1.5fr 1.5fr 0.8fr; /* Increased width for Services and Location columns */
    gap: 1.5rem;
}

.footer-address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Inline Logo and Brand */
.footer-logo-inline {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo-img-inline {
    height: 50px; /* Adjust size as needed */
    width: auto;
    border-radius: 8px;
    background: #fff;
    padding: 3px;
}

.footer-brand-inline {
    font-size: 1.4rem; /* Adjust size as needed */
    font-weight: bold;
    color: #21b573;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

.footer-highlight-inline {
    color: #f1c40f;
}

.footer-address h3,
.footer-links-main h3,
.footer-links-services h3,
.footer-links-location h3,
.footer-social h3 {
    font-size: 1.2rem;
    color: #eee;
    margin-bottom: 1.2rem;
    font-weight: 600;
    position: relative;
    text-align: left;
}

.footer-address h3::after,
.footer-links-main h3::after,
.footer-links-services h3::after,
.footer-links-location h3::after,
.footer-social h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #f1c40f;
    margin-top: 8px;
    border-radius: 1px;
    margin-left: 0;
}

.footer-address p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    text-align: left;
}

.footer-address i {
    color: #21b573;
    margin-right: 8px;
}

.footer-links-main ul,
.footer-links-services ul,
.footer-links-location ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-links-main li,
.footer-links-services li,
.footer-links-location li {
    margin-bottom: 10px;
}

.footer-links-main a,
.footer-links-services a,
.footer-links-location a {
    color: #bbb;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links-main a:hover,
.footer-links-services a:hover,
.footer-links-location a:hover {
    color: #21b573;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.footer-social a {
    color: #bbb;
    font-size: 1.5rem;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #f1c40f;
}

.footer-bottom {
    text-align: center;
    color: #bbb;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .footer-content-wrapper {
         grid-template-columns: 1fr; /* Stack columns */
         gap: 2rem;
     }
    .footer-left,
    .footer-right {
        align-items: center; /* Center content when stacked */
        text-align: center;
    }
     .footer-right {
         grid-template-columns: 1fr; /* Stack sections within footer-right */
         gap: 2rem;
     }
    .footer-logo-inline {
        justify-content: center;
    }
    .footer-address,
    .footer-column {
        align-items: center; /* Center content when stacked */
    }
    .footer-address h3,
    .footer-links-main h3,
    .footer-links-services h3,
    .footer-links-location h3,
    .footer-social h3 {
        text-align: center;
    }
    .footer-address h3::after,
    .footer-links-main h3::after,
    .footer-links-services h3::after,
    .footer-links-location h3::after,
    .footer-social h3::after {
         margin: 8px auto 0 auto;
    }
     .footer-address p {
         text-align: center;
     }
     .footer-links-main ul,
     .footer-links-services ul,
     .footer-links-location ul {
         text-align: center;
     }
     .social-icons {
         justify-content: center;
     }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 1rem 1rem 1rem;
    }
    
    .footer-content-wrapper {
        gap: 1.5rem;
    }
    
    .footer-right {
        gap: 1.5rem;
    }
    
    .footer-address h3,
    .footer-links-main h3,
    .footer-links-services h3,
    .footer-links-location h3,
    .footer-social h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-address p,
    .footer-links-main a,
    .footer-links-services a,
    .footer-links-location a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 1.5rem 0.8rem 1rem 0.8rem;
    }
    
    .footer-content-wrapper {
        gap: 1rem;
    }
    
    .footer-right {
        gap: 1rem;
    }
    
    .footer-address h3,
    .footer-links-main h3,
    .footer-links-services h3,
    .footer-links-location h3,
    .footer-social h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-address p,
    .footer-links-main a,
    .footer-links-services a,
    .footer-links-location a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-logo-img-inline {
        height: 40px;
    }
    .footer-brand-inline {
        font-size: 1.2rem;
    }
    .footer-address p,
    .footer-links-main a,
    .footer-links-services a,
    .footer-links-location a,
    .footer-social a {
        font-size: 0.9rem;
    }
    .footer-social a {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .footer-logo-img-inline {
        height: 35px;
    }
    .footer-brand-inline {
        font-size: 1.1rem;
    }
    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 0.8rem;
    }
}

/* Stats Cards Section - Compact Modern Style */
.stats-cards {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    margin: -2.5rem auto 2.5rem auto;
    max-width: 1200px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    padding: 1.2rem 2.2rem 1.1rem 2.2rem;
    min-width: 200px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    margin-bottom: 0.5rem;
}

.stat-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 32px rgba(46,204,113,0.15), 0 2px 8px rgba(0,0,0,0.10);
}

.stat-icon {
    font-size: 2.3rem;
    color: #21b573;
    margin-bottom: 0.7rem;
    margin-top: 0.2rem;
}

.stat-number {
    font-size: 1.7rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}

.stat-label {
    font-size: 0.98rem;
    color: #555;
    font-weight: 400;
    text-align: center;
    margin-top: 0.2rem;
}

/* Responsive Design for Stats Cards */
@media (max-width: 1024px) {
    .stats-cards {
        gap: 1rem;
        margin: -1.5rem auto 2rem auto;
    }
    .stat-card {
        min-width: 160px;
        padding: 1rem 1.3rem 0.9rem 1.3rem;
    }
    .stat-number {
        font-size: 1.2rem;
    }
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .stats-cards {
        flex-wrap: wrap;
        gap: 0.7rem;
        margin: 1.2rem auto 1.2rem auto;
    }
    .stat-card {
        min-width: 60vw;
        max-width: 95vw;
        margin: 0 auto;
        padding: 0.8rem 1.2rem 0.7rem 1.2rem;
    }
    .stat-number {
        font-size: 1rem;
    }
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stats-cards {
        flex-direction: column;
        gap: 0.5rem;
        margin: 0.7rem auto 0.7rem auto;
    }
    .stat-card {
        min-width: 90vw;
        padding: 0.7rem 0.7rem 0.6rem 0.7rem;
    }
    .stat-number {
        font-size: 0.95rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Requisites Section - Pill Card Style */
.requisites {
    background: #fff;
    padding: 3.5rem 1rem 2.5rem 1rem;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
}

.requisites-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    color: #222;
    position: relative;
}
.requisites-title::after {
    content: '';
    display: block;
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, #2ecc71 60%, #f1c40f 100%);
    margin: 0.7rem auto 0 auto;
    border-radius: 2px;
}

.requisites-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 900px) {
    .requisites-cards {
        gap: 1.5rem;
    }
}

.requisite-card {
    background: #fff;
    border-radius: 60px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border: 3px solid #e5e5e5;
    display: flex;
    align-items: center;
    min-height: 120px;
    padding: 1.1rem 1.2rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}
.requisite-card:hover {
    box-shadow: 0 6px 32px rgba(46,204,113,0.13), 0 2px 8px rgba(0,0,0,0.10);
    transform: translateY(-4px) scale(1.01);
}

.requisite-illustration {
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2.5rem;
}
.requisite-illustration img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.requisite-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.requisite-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 0.7rem;
}
.requisite-content p {
    color: #444;
    font-size: 1.08rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .requisite-card {
        padding: 0.8rem 0.7rem;
        min-height: 90px;
    }
    .requisite-illustration {
        flex: 0 0 110px;
        margin-right: 1.2rem;
    }
    .requisite-illustration img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 700px) {
    .requisite-card {
        padding: 0.6rem 0.3rem;
        min-height: 0;
    }
    .requisite-illustration {
        margin: 0 0 0.7rem 0;
        width: 100%;
        justify-content: flex-start;
    }
    .requisite-illustration img {
        width: 70px;
        height: 70px;
    }
    .requisite-content h3 {
        font-size: 1.1rem;
    }
    .requisite-content p {
        font-size: 0.98rem;
    }
}

.yellow-card {
    background: #f1c40f !important;
    color: #222 !important;
}
.yellow-card .service-icon,
.yellow-card h3,
.yellow-card p {
    color: #222 !important;
}

.blue-card {
    background: #1baedc !important;
    color: #fff !important;
}
.blue-card .service-icon,
.blue-card h3,
.blue-card p {
    color: #fff !important;
}

.smart-approach {
    background: #fff;
    padding: 3.5rem 1rem 2.5rem 1rem;
    max-width: 1400px;
    margin: 0 auto 2rem auto;
}
.smart-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    color: #222;
    letter-spacing: 0.01em;
    position: relative;
}
.smart-title::after {
    content: '';
    display: block;
    width: 220px;
    height: 3px;
    background: linear-gradient(90deg, #f1c40f 60%, #21b573 100%);
    margin: 0.7rem auto 0 auto;
    border-radius: 2px;
}
.smart-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    justify-items: center;
}
.smart-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 160px;
    max-width: 220px;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}
.smart-card:hover {
    box-shadow: 0 8px 32px rgba(241,196,15,0.13), 0 2px 8px rgba(0,0,0,0.10);
    transform: translateY(-4px) scale(1.03);
}
.smart-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1.1rem;
    object-fit: contain;
}
.smart-main {
    font-size: 1.13rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 0.5rem;
    margin-top: 0.1rem;
}
.smart-sub {
    color: #888;
    font-size: 0.97rem;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 1200px) {
    .smart-features {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.1rem;
    }
}
@media (max-width: 900px) {
    .smart-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
    }
    .smart-card {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        min-width: 120px;
        max-width: 100vw;
    }
}
@media (max-width: 600px) {
    .smart-features {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .smart-card {
        padding: 0.7rem 0.3rem 0.7rem 0.3rem;
        min-width: 100px;
        max-width: 100vw;
    }
    .smart-icon {
        width: 36px;
        height: 36px;
    }
    .smart-main {
        font-size: 0.98rem;
    }
    .smart-sub {
        font-size: 0.85rem;
    }
}

.testimonials {
    background: #f8f8f8;
    padding: 3rem 1rem 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    border-radius: 18px;
}
.testimonials-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2.2rem;
    color: #222;
    letter-spacing: 0.01em;
}
.testimonials-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.testimonial-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    min-width: 220px;
    text-align: center;
}
.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #21b573;
}
.testimonial-name {
    font-weight: bold;
    color: #21b573;
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
}
.testimonial-text {
    color: #444;
    font-size: 1rem;
    font-style: italic;
}
@media (max-width: 900px) {
    .testimonials-row {
        gap: 1rem;
    }
    .testimonial-card {
        max-width: 100vw;
        min-width: 160px;
        padding: 1rem 0.7rem 1rem 0.7rem;
    }
}
@media (max-width: 600px) {
    .testimonials-row {
        flex-direction: column;
        gap: 0.7rem;
    }
}

.testimonials-slider {
    padding: 2rem 0 2rem 0;
    max-width: 100vw;
    margin: 0 auto 2rem auto;
    border-radius: 0;
    position: relative;
}

.testimonials-slider .testimonials-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2.2rem;
    color: #222;
    letter-spacing: 0.01em;
}

.testimonial-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.testimonial-slides {
    width: 100%;
    max-width: 900px;
    min-height: 120px;
    position: relative;
    overflow: hidden;
    display: flex;
}

.testimonial-slide {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 1.5rem 2rem;
    width: 100%;
    min-width: 100%;
    text-align: left;
    transition: opacity 0.4s;
    position: absolute;
    left: 0;
    top: 0;
    gap: 2rem;
}

.testimonial-slide.active {
    display: flex;
    position: relative;
    opacity: 1;
    z-index: 2;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #21b573;
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 1rem;
}

.testimonial-name {
    font-weight: bold;
    color: #21b573;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.testimonial-text {
    color: #444;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5;
}

.testimonial-arrow {
    background: #21b573;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
    cursor: pointer;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 3;
}

.testimonial-arrow:hover {
    background: #169c5f;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.testimonial-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bbb;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s;
}

.testimonial-dots .active {
    background: #21b573;
}

@media (max-width: 900px) {
    .testimonial-slide {
        padding: 1.2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .testimonial-img {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-name {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .testimonial-slide {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.2rem 1rem;
        gap: 1rem;
    }
    
    .testimonial-img {
        width: 70px;
        height: 70px;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-content {
        padding-right: 0;
        align-items: center;
    }
    
    .testimonial-name {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 2rem 0.8rem 1.5rem 0.8rem;
    }
    
    .testimonials-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-slide {
        padding: 1rem 0.8rem;
    }
    
    .testimonial-img {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
        margin: 0 0.5rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/about-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem;
    text-align: center;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-section {
    margin-bottom: 5rem;
}

.about-section h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.about-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #21b573 60%, #f1c40f 100%);
    margin: 0.7rem auto 0 auto;
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse .about-text {
    direction: ltr;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
}

.about-image img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid.reverse {
        direction: ltr;
    }
    
    .about-image {
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 6rem 1rem;
    }
    
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .about-content {
        padding: 3rem 1rem;
    }
    
    .about-section h2 {
        font-size: 1.8rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-image {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 4rem 0.8rem;
    }
    
    .about-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .about-content {
        padding: 2rem 0.8rem;
    }
    
    .about-section {
        margin-bottom: 3rem;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .about-image {
        padding: 0.5rem;
    }
}

/* Product Sections and Cards (About Page) */
.about-content:nth-of-type(odd) {
    /* background-color: #fff; */ /* White background for alternating sections */
}

.about-content:nth-of-type(even) {
    /* background-color: #f8f8f8; */ /* Light grey background for alternating sections */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.product-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #222;
}

/* Responsive adjustments for product grid */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    .product-card {
        padding: 1rem;
    }
    .product-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .product-card {
        padding: 0.7rem;
    }
    
    .product-name {
        font-size: 0.9rem;
    }
}

/* Service Page Styles */
.service-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1200') center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.service-hero-content h1 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0 20px;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.service-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.service-section {
    margin-bottom: 60px;
}

.service-section h2 {
    color: #1baedc;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.service-section > p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #555;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.service-list li:before {
    content: "•";
    color: #1baedc;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #1baedc;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.component-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.component-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.component-card i {
    font-size: 2.5rem;
    color: transparent;
    background: linear-gradient(45deg, #f1c40f, #21b573);
    -webkit-background-clip: text;
    background-clip: text;
    margin: 0;
}

.component-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
    margin: 0;
    filter: none;
}

.component-card .component-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.component-card .component-text h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: bold;
}

.component-card .component-text p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2rem;
    }

    .benefits-grid,
    .components-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-content {
        padding: 20px;
    }

    .component-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    .component-icon-wrapper {
        width: 40px;
        height: 40px;
    }

     .component-card i {
         font-size: 2rem;
     }

     .component-card img {
         width: 40px;
         height: 40px;
     }

     .component-card .component-text h3 {
         font-size: 1.1rem;
     }

     .component-card .component-text p {
         font-size: 0.9rem;
     }
}

@media (max-width: 480px) {
    .service-hero-content h1 {
        font-size: 1.6rem;
    }

    .service-content {
        padding: 15px;
    }

    .service-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .service-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .service-section > p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefit-card i {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .component-card {
        padding: 15px;
        gap: 10px;
    }

    .component-icon-wrapper {
        width: 35px;
        height: 35px;
    }

    .component-card i {
        font-size: 1.8rem;
    }

    .component-card img {
        width: 35px;
        height: 35px;
    }

    .component-card .component-text h3 {
        font-size: 1rem;
    }

    .component-card .component-text p {
        font-size: 0.85rem;
    }
}

/* Styles for the Energy Paths blocks */
.energy-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Two columns on larger screens */
    gap: 20px; /* Gap between cards */
    margin-top: 30px;
}

.energy-path-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0; /* Subtle border */
    padding: 20px; /* Padding inside the card */
    display: flex; /* Use flexbox for horizontal layout */
    align-items: flex-start; /* Align items to the top */
    gap: 15px; /* Space between icon and text */
}

.energy-path-icon {
    flex-shrink: 0;
    font-size: 2.5rem; /* Icon size */
    color: #21b573; /* Green color for icons */
    margin-top: 5px; /* Adjust icon vertical alignment */
}

.energy-path-text {
    flex-grow: 1; /* Allow text to take remaining space */
    font-size: 1rem; /* Text font size */
    line-height: 1.6; /* Line height for readability */
    color: #444; /* Text color */
}

@media (max-width: 768px) {
    .energy-paths {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        gap: 15px;
    }

    .energy-path-card {
        padding: 15px;
        gap: 10px;
    }

    .energy-path-icon {
        font-size: 2rem;
        margin-top: 3px;
    }

    .energy-path-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .energy-paths {
        gap: 10px;
    }

    .energy-path-card {
        padding: 12px;
        gap: 8px;
    }

    .energy-path-icon {
        font-size: 1.8rem;
        margin-top: 2px;
    }

    .energy-path-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Location Page Styles */
.location-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1200') center/cover; /* Placeholder background */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.location-hero-content h1 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0 20px;
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.location-section {
    margin-bottom: 40px;
}

.location-section h2 {
    color: #222;
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
    position: relative;
}

.location-section h2::after {
     content: '';
     display: block;
     width: 100px;
     height: 3px;
     background: linear-gradient(90deg, #21b573 60%, #f1c40f 100%);
     margin: 10px auto 0 auto;
     border-radius: 2px;
}

.location-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.location-section p:last-child {
    margin-bottom: 0;
}

/* Specific styles for Why Choose Us and What We Offer lists on location page */
.location-section .whyus-list .whyus-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px; /* Space between list items */
}

.location-section .whyus-list .whyus-list-icon i {
     font-size: 2rem;
     color: #21b573;
     flex-shrink: 0;
     margin-top: 5px;
}

.location-section .whyus-list .whyus-item strong {
    font-size: 1.1rem;
    color: #222;
    font-weight: bold;
}

.location-section .whyus-list .whyus-item div {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ Section Styles */
.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 15px;
}

.faq-item h3 {
    color: #222;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Connect Today Section Styles */
.connect-today i {
    color: #21b573;
    margin-right: 10px;
}

.connect-today p {
    margin-bottom: 10px;
}

/* Service Areas Section Styles */
.service-areas ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.service-areas li {
    background: #e9ecef;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1rem;
    color: #333;
}

@media (max-width: 768px) {
    .location-hero-content h1 {
        font-size: 2rem;
    }

    .location-content {
        padding: 20px;
    }

    .location-section h2 {
        font-size: 1.8rem;
    }

    .location-section p {
        font-size: 1rem;
    }

    .location-section .whyus-list .whyus-item {
        gap: 10px;
        margin-bottom: 15px;
    }

     .location-section .whyus-list .whyus-list-icon i {
         font-size: 1.8rem;
     }

     .location-section .whyus-list .whyus-item strong,
     .location-section .whyus-list .whyus-item div {
         font-size: 0.95rem;
     }

     .faq-item {
         padding: 15px;
     }

     .faq-item h3 {
         font-size: 1.1rem;
     }

     .faq-item p {
         font-size: 0.95rem;
     }

     .service-areas ul {
         gap: 10px;
     }

     .service-areas li {
         padding: 6px 12px;
         font-size: 0.95rem;
     }
}

@media (max-width: 480px) {
    .location-hero-content h1 {
        font-size: 1.6rem;
    }

    .location-content {
        padding: 15px;
    }

    .location-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .location-section p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .location-section .whyus-list .whyus-item {
        gap: 8px;
        margin-bottom: 12px;
    }

    .location-section .whyus-list .whyus-list-icon i {
        font-size: 1.5rem;
    }

    .location-section .whyus-list .whyus-item strong,
    .location-section .whyus-list .whyus-item div {
        font-size: 0.85rem;
    }

    .faq-item {
        padding: 12px;
        margin-bottom: 10px;
    }

    .faq-item h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .faq-item p {
        font-size: 0.85rem;
    }

    .service-areas ul {
        gap: 8px;
        margin-top: 15px;
    }

    .service-areas li {
        padding: 5px 10px;
        font-size: 0.85rem;
    }
}

/* Projects Page Styles */
.projects-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1200') center/cover; /* Placeholder background */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.projects-hero-content h1 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0 20px;
}

.projects-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Category Filter Styles */
.project-categories-filter {
    text-align: center;
    margin-bottom: 30px;
}

.category-button {
    background: #f1f1f1; /* Light gray background */
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.category-button:hover {
    background: #ddd; /* Darker gray on hover */
}

.category-button.active {
    background: #21b573; /* Green background for active button */
    color: white; /* White text for active button */
}

.project-category {
    margin-bottom: 40px;
}

.project-category h2 {
    color: #222;
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
    position: relative;
}

.project-category h2::after {
     content: '';
     display: block;
     width: 100px;
     height: 3px;
     background: linear-gradient(90deg, #21b573 60%, #f1c40f 100%);
     margin: 10px auto 0 auto;
     border-radius: 2px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-item {
    /* These styles are moved to project-item-inner */
}

.project-item-inner {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    text-decoration: none; /* Remove underline from anchor */
    display: block; /* Make the entire div clickable */
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    height: 100%; /* Ensure inner div takes full height */
}

.project-item-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.project-item img {
    display: block;
    width: 100%;
    height: 200px; /* Fixed height for images */
    object-fit: cover; /* Cover the area without distortion */
}

.project-info {
    padding: 15px;
    text-align: center;
}

.project-info h3 {
    color: #222;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.project-info p {
    color: #555;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/* Hide project categories by default, shown by JavaScript */
.project-category {
    display: none;
}

/* Show the active project category */
.project-category.active {
    display: block;
}

@media (max-width: 768px) {
    .projects-hero-content h1 {
        font-size: 2rem;
    }

    .projects-content {
        padding: 20px;
    }

    .project-category h2 {
        font-size: 1.8rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .project-item img {
        height: 180px;
    }

    .project-info h3 {
        font-size: 1.1rem;
    }

    .project-info p {
        font-size: 0.95rem;
    }

     .category-button {
         padding: 8px 15px;
         font-size: 0.9rem;
         margin: 0 3px;
     }
}

@media (max-width: 480px) {
    .projects-hero-content h1 {
        font-size: 1.6rem;
    }

    .projects-content {
        padding: 15px;
    }

    .project-category h2 {
        font-size: 1.5rem;
    }

    .project-grid {
        gap: 10px;
    }

    .project-item img {
        height: 160px;
    }

    .project-info {
        padding: 12px;
    }

    .project-info h3 {
        font-size: 1rem;
    }

    .project-info p {
        font-size: 0.85rem;
    }

    .category-button {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin: 0 2px;
    }
    
    .project-categories-filter {
        margin-bottom: 20px;
    }
} 

/*new for services*/


/* On Grid Solar Power Plant Page Styles */

/* Hero Introduction */
.hero-intro {
    background: #fff;
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #21b573;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.intro-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.intro-stats {
    display: flex;
    gap: 2rem;
}

.intro-stats .stat-item {
    text-align: center;
}

.intro-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f1c40f;
    line-height: 1;
}

.intro-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* System Diagram */
.system-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.diagram-step {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1rem;
}

.solar-icon {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.panel-icon {
    background: linear-gradient(135deg, #21b573, #27ae60);
}

.grid-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.diagram-arrow {
    font-size: 1.5rem;
    color: #f1c40f;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #21b573;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #f1c40f;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.feature-content h3 {
    font-size: 1.3rem;
    color: #21b573;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* System Overview */
.system-overview {
    background: #fff;
    padding: 4rem 0;
}

.overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #21b573;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.overview-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.system-components {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.component {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.component-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #21b573, #27ae60);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.component-details h4 {
    font-size: 1.1rem;
    color: #21b573;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.component-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.overview-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 2rem;
}

.overlay-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, #21b573, #27ae60);
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn.primary {
    background: #f1c40f;
    color: #333;
}

.cta-btn.primary:hover {
    background: #f39c12;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn.secondary:hover {
    background: #fff;
    color: #21b573;
    transform: translateY(-2px);
}

/* Off Grid Solar Power Plant Specific Styles */
.battery-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.working-process-section {
    padding: 4rem 0;
    background: #fff;
}

/* Improved Process Container */
.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.process-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Image Highlights */
.image-highlights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.highlight-point {
    position: absolute;
    animation: pulse 2s infinite;
}

.highlight-dot {
    width: 20px;
    height: 20px;
    background: #f1c40f;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.3);
    position: relative;
}

.highlight-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.highlight-label {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(33, 181, 115, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-left-color: #f1c40f;
    background: #fff;
}

.step-check {
    background: linear-gradient(135deg, #21b573, #27ae60);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(33, 181, 115, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover .step-check {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(33, 181, 115, 0.4);
}

.step-number {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #21b573;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Legacy styles for backward compatibility */
.process-flow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-flow .flow-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.process-flow .flow-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.process-flow .flow-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #21b573, #27ae60);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    flex-shrink: 0;
}

.process-flow .flow-content h3 {
    font-size: 1.4rem;
    color: #21b573;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-flow .flow-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Legacy styles for backward compatibility */
.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin: 2rem 0;
}

.features-image {
    text-align: center;
}

.features-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.features-content h2 {
    color: #21b573;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
}

.feature-bullet {
    color: #f1c40f;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-text h3 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h3 {
    color: #21b573;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-text p {
    color: #666;
    line-height: 1.6;
}

.flow-diagram {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem 0;
    text-align: center;
}

.flow-step {
    display: inline-block;
    margin: 0 1rem;
    vertical-align: top;
}

.flow-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1rem;
    position: relative;
}

.flow-icon.solar-energy {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.flow-icon.solar-panels {
    background: linear-gradient(135deg, #21b573, #27ae60);
}

.flow-icon.inverter {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.flow-icon.netmeter {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.flow-icon.utility-grid {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.flow-icon.home {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.flow-label {
    font-weight: bold;
    color: #333;
    font-size: 0.9rem;
}

.flow-arrow {
    display: inline-block;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    color: #f1c40f;
    vertical-align: middle;
}

.flow-arrows-split {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.flow-arrow-left,
.flow-arrow-right {
    font-size: 1.5rem;
    color: #f1c40f;
}

.flow-destinations {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
}

.working-process {
    margin: 2rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.step-number {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #21b573;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .intro-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .intro-text h2 {
        font-size: 2rem;
    }
    
    .intro-stats {
        justify-content: center;
    }
    
    .system-diagram {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .overview-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .process-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-image {
        order: 2;
    }
    
    .process-steps {
        order: 1;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .process-flow .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .process-flow .flow-icon {
        margin: 0 auto;
    }
    
    .features-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-image img {
        max-width: 100%;
    }
    
    .features-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }
}
    
    .feature-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    .flow-diagram {
        padding: 2rem 1rem;
    }
    
    .flow-step {
        margin: 0 0.5rem;
    }
    
    .flow-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .flow-label {
        font-size: 0.8rem;
    }
    
    .flow-arrow {
        font-size: 1.2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .flow-diagram {
        padding: 1.5rem 0.5rem;
    }
    
    .flow-step {
        margin: 0 0.25rem;
    }
    
    .flow-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .flow-label {
        font-size: 0.7rem;
    }
    
    .flow-arrow {
        font-size: 1rem;
    }
    
    .flow-destinations {
        flex-direction: column;
        gap: 1rem;
    }
}

.overview-container.single-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.overview-container.single-col .overview-content {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.overview-container.single-col .system-components {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 2.5rem 0 0 0;
    justify-items: center;
}

@media (max-width: 900px) {
  .overview-container.single-col .system-components {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .overview-container.single-col .system-components {
    grid-template-columns: 1fr;
  }
  .overview-container.single-col .component {
    min-height: 0;
    padding: 2rem 1rem 1.5rem 1rem;
  }
}

.overview-container.single-col .component {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem 1.5rem;
    margin: 0;
    width: 100%;
    max-width: 320px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.overview-container.single-col .component:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    z-index: 2;
}

.overview-container.single-col .component-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.overview-container.single-col .component:hover .component-icon {
    background: #e9ecef;
    transform: scale(1.05);
}

.overview-container.single-col .component-details h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.overview-container.single-col .component-details p {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

/* System Diagram */
.system-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.diagram-step {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1rem;
}

.solar-icon {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.panel-icon {
    background: linear-gradient(135deg, #21b573, #27ae60);
}

.grid-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.diagram-arrow {
    font-size: 1.5rem;
    color: #f1c40f;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #21b573;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #f1c40f;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.feature-content h3 {
    font-size: 1.3rem;
    color: #21b573;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* System Overview */
.system-overview {
    background: #fff;
    padding: 4rem 0;
}

.overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #21b573;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.overview-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.system-components {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.component {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.component-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #21b573, #27ae60);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.component-details h4 {
    font-size: 1.1rem;
    color: #21b573;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.component-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.overview-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 2rem;
}

.overlay-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, #21b573, #27ae60);
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn.primary {
    background: #f1c40f;
    color: #333;
}

.cta-btn.primary:hover {
    background: #f39c12;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn.secondary:hover {
    background: #fff;
    color: #21b573;
    transform: translateY(-2px);
}

/* Off Grid Solar Power Plant Specific Styles */
.battery-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.working-process-section {
    padding: 4rem 0;
    background: #fff;
}

/* Improved Process Container */
.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.process-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Image Highlights */
.image-highlights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.highlight-point {
    position: absolute;
    animation: pulse 2s infinite;
}

.highlight-dot {
    width: 20px;
    height: 20px;
    background: #f1c40f;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.3);
    position: relative;
}

.highlight-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.highlight-label {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(33, 181, 115, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-left-color: #f1c40f;
    background: #fff;
}

.step-check {
    background: linear-gradient(135deg, #21b573, #27ae60);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(33, 181, 115, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover .step-check {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(33, 181, 115, 0.4);
}

.step-number {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #21b573;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Legacy styles for backward compatibility */
.process-flow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-flow .flow-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.process-flow .flow-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.process-flow .flow-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #21b573, #27ae60);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    flex-shrink: 0;
}

.process-flow .flow-content h3 {
    font-size: 1.4rem;
    color: #21b573;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-flow .flow-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Legacy styles for backward compatibility */
.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin: 2rem 0;
}

.features-image {
    text-align: center;
}

.features-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.features-content h2 {
    color: #21b573;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
}

.feature-bullet {
    color: #f1c40f;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-text h3 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h3 {
    color: #21b573;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-text p {
    color: #666;
    line-height: 1.6;
}

.flow-diagram {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem 0;
    text-align: center;
}

.flow-step {
    display: inline-block;
    margin: 0 1rem;
    vertical-align: top;
}

.flow-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1rem;
    position: relative;
}

.flow-icon.solar-energy {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.flow-icon.solar-panels {
    background: linear-gradient(135deg, #21b573, #27ae60);
}

.flow-icon.inverter {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.flow-icon.netmeter {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.flow-icon.utility-grid {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.flow-icon.home {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.flow-label {
    font-weight: bold;
    color: #333;
    font-size: 0.9rem;
}

.flow-arrow {
    display: inline-block;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    color: #f1c40f;
    vertical-align: middle;
}

.flow-arrows-split {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.flow-arrow-left,
.flow-arrow-right {
    font-size: 1.5rem;
    color: #f1c40f;
}

.flow-destinations {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
}

.working-process {
    margin: 2rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.step-number {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #21b573;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .intro-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .intro-text h2 {
        font-size: 2rem;
    }
    
    .intro-stats {
        justify-content: center;
    }
    
    .system-diagram {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .overview-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .process-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-image {
        order: 2;
    }
    
    .process-steps {
        order: 1;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .process-flow .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .process-flow .flow-icon {
        margin: 0 auto;
    }
    
    .features-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-image img {
        max-width: 100%;
    }
    
    .features-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }
}
    
    .feature-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    .flow-diagram {
        padding: 2rem 1rem;
    }
    
    .flow-step {
        margin: 0 0.5rem;
    }
    
    .flow-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .flow-label {
        font-size: 0.8rem;
    }
    
    .flow-arrow {
        font-size: 1.2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .flow-diagram {
        padding: 1.5rem 0.5rem;
    }
    
    .flow-step {
        margin: 0 0.25rem;
    }
    
    .flow-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .flow-label {
        font-size: 0.7rem;
    }
    
    .flow-arrow {
        font-size: 1rem;
    }
    
    .flow-destinations {
        flex-direction: column;
        gap: 1rem;
    }
}

.overview-container.single-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.overview-container.single-col .overview-content {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.overview-container.single-col .system-components {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 2.5rem 0 0 0;
    justify-items: center;
}

@media (max-width: 900px) {
  .overview-container.single-col .system-components {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .overview-container.single-col .system-components {
    grid-template-columns: 1fr;
  }
  .overview-container.single-col .component {
    min-height: 0;
    padding: 2rem 1rem 1.5rem 1rem;
  }
}

.overview-container.single-col .component {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem 1.5rem;
    margin: 0;
    width: 100%;
    max-width: 320px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.overview-container.single-col .component:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    z-index: 2;
}

.overview-container.single-col .component-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.overview-container.single-col .component:hover .component-icon {
    background: #e9ecef;
    transform: scale(1.05);
}

.overview-container.single-col .component-details h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.overview-container.single-col .component-details p {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

/* New Interactive Flow Timeline Styles */
.process-flow-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.flow-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #e9ecef;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.flow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #21b573, #27ae60);
    transition: width 0.4s ease;
    z-index: 1;
}

.flow-step:hover::before,
.flow-step.active::before {
    width: 100%;
}

.flow-step:hover,
.flow-step.active {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(33, 181, 115, 0.15);
    border-left-color: #21b573;
}

.step-number {
    background: linear-gradient(135deg, #21b573, #27ae60);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 2;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #21b573;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.flow-step:hover .step-icon,
.flow-step.active .step-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(33, 181, 115, 0.3);
}

.step-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.step-content h3 {
    color: #21b573;
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.step-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.step-arrow {
    color: #21b573;
    font-size: 1.2rem;
    z-index: 2;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Flow Visual Section */
.flow-visual {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.visual-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.energy-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.flow-line {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, #21b573, #27ae60, #21b573);
    border-radius: 2px;
    animation: flowMove 3s linear infinite;
}

@keyframes flowMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.flow-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f1c40f;
    border-radius: 50%;
    animation: particleMove 4s linear infinite;
}

.particle:nth-child(1) {
    top: 45%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 50%;
    animation-delay: 1.3s;
}

.particle:nth-child(3) {
    top: 55%;
    animation-delay: 2.6s;
}

@keyframes particleMove {
    0% { left: 10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 90%; opacity: 0; }
}

.system-diagram {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 2;
    position: relative;
}

.diagram-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.diagram-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(33, 181, 115, 0.2);
}

.diagram-item i {
    font-size: 2rem;
    color: #21b573;
    margin-bottom: 0.5rem;
}

.diagram-item span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-flow-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .flow-visual {
        order: -1;
    }
    
    .visual-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .process-flow-container {
        padding: 1rem;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .system-diagram {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .diagram-item {
        flex: 1;
        min-width: 120px;
    }
    
    .visual-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .flow-step {
        padding: 1rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .system-diagram {
        flex-direction: column;
        gap: 1rem;
    }
    
    .diagram-item {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .diagram-item i {
        margin-bottom: 0;
    }
}