* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Header Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-bottom: 1px solid #eee;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: bold;
            font-size: 1.2rem;
            color: #4CAF50;
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 30px;
            position: relative;
            overflow: hidden;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }


        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            margin: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #7B1FA2;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #7B1FA2;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 50%, #0f172a 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-subtitle {
            color: #4ade80;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            animation: fadeInUp 0.8s ease;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-description {
            font-size: 1.1rem;
            color: #cbd5e1;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .btn-primary {
            background: linear-gradient(45deg, #4ade80, #22c55e);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 222, 128, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: white;
            color: #1e3a2e;
            transform: translateY(-2px);
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease 0.8s both;
        }

        .hero-img {
            width: 100%;
            height: 500px;
            background: url('../media/servicesMain.png') center/cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            position: relative;
        }

        .hero-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 20px;
        }

        .hero-img span {
            position: relative;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #4ade80, #22c55e);
            border-radius: 50%;
            opacity: 0.8;
            animation: float 3s ease-in-out infinite;
        }

        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            background: linear-gradient(45deg, #4ade80, #22c55e);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 5%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 100px;
            height: 100px;
            top: 50%;
            right: 30%;
            animation-delay: 4s;
        }

        /* NEW: Residential & Commercial Service Cards Section */
        .service-cards-section {
            padding: 80px 0;
            background: #f5f5f5;
        }

        .service-cards-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .service-cards-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .service-cards-title {
            font-size: 2.7rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #4D2A65;
            font-family: 'Inria Sans', sans-serif;
        }

        .service-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
        }

        .service-card-new {
            position: relative;
            padding: 40px 30px;
            border-radius: 25px;
            color: white;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .service-card-new::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            transform: rotate(45deg);
            pointer-events: none;
        }

        .service-card-new::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            pointer-events: none;
        }

        .service-card-new:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .residential-card {
            background: linear-gradient(135deg, #2d5a3d 0%, #1e3a2e 100%);
        }

        .commercial-card {
            background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
        }

        .service-icon-new {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .service-icon-new svg {
            width: 40px;
            height: 40px;
            fill: white;
        }

        .service-title-new {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .service-description-new {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .service-features-new {
            list-style: none;
            position: relative;
            z-index: 2;
        }

        .service-features-new li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.95rem;
            opacity: 0.95;
        }

        .service-features-new li::before {
            content: '✓';
            width: 24px;
            height: 24px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-weight: bold;
            font-size: 14px;
            flex-shrink: 0;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .decorative-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            pointer-events: none;
        }

        .shape-new-1 {
            width: 150px;
            height: 150px;
            top: -75px;
            right: -75px;
        }

        .shape-new-2 {
            width: 100px;
            height: 100px;
            bottom: -50px;
            right: 20px;
        }

        .shape-new-3 {
            width: 80px;
            height: 80px;
            top: 50%;
            left: -40px;
        }

        /* Products section */
        .products-section {
            background: #f5f5f5;
            padding: 100px 0;
        }

        .product-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            margin-bottom: 120px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .product-row:last-child {
            margin-bottom: 0;
        }

        .product-content h2 {
            font-size: 2.2rem;
            color: #4D2A65;
            font-family: 'Inria Sans', sans-serif;
            margin-bottom: 25px;
            font-weight: bold;
        }

        .product-content p {
            font-size: 1.1rem;
            color: #333;
            line-height: 1.7;
            text-align: justify;
        }

        /* Product Images */
        .product-images {
            position: relative;
            height: 300px;
            width: 100%;
        }

        .product-image {
            position: absolute;
            border-radius: 50%;
            width: 190px;
            height: 190px;
            object-fit: cover;
            border: 3px solid #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-image:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        /* Image Positioning - First Row (Agro-Products) */
        .product-row:first-child .product-image.top-right {
            top: 0;
            right: 0;
        }

        .product-row:first-child .product-image.bottom-left {
            bottom: 80px;
            left: 20px;
        }

        .product-row:first-child .product-image.bottom-right {
            top: 170px;
            right: 90px;
        }

        /* Image Positioning - Second Row (Agricultural Machinery) */
        .product-row.reverse .product-image.top-left {
            top: 10px;
            left: 0;
        }

        .product-row.reverse .product-image.top-right {
            top: -10px;
            right: 0;
        }

        .product-row.reverse .product-image.bottom-center {
            bottom: -10px;
            left: 160px;
            /* transform: translateX(-50%); */
        }

        /* Reverse layout for alternating rows */
        .product-row.reverse {
            direction: rtl;
        }

        .product-row.reverse .product-content {
            direction: ltr;
        }

        /* Footer section*/
        .footer {
            background: #333;
            color: white;
            padding: 60px 0 30px 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #8BC34A;
        }

        .footer-section p,
        .footer-section li {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #8BC34A;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #8BC34A;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            transition: background 0.3s ease;
        }

        .social-links a:hover {
            background: #7CB342;
        }

        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 30px;
            text-align: center;
            color: #999;
        }

        .footer-bottom p {
            margin-bottom: 10px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            /* navbar */
            .navbar {
                padding: 10px 0;
            }

            .nav-container {
                padding: 0 10px;
            }

            .logo {
                font-size: 0.6rem;
                gap: 10px;
            }

            .logo-icon {
                width: 26px;
                height: 22px;
            }

            .nav-links {
                gap: 11px;
            }

            .nav-links a {
                font-size: 0.6rem;
                font-weight: 600;
            }
            
            .nav-menu {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-img {
                width: 100%;
                height: 250px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }

            .about-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            /* NEW: Responsive for service cards */
            .service-cards-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .service-card-new {
                padding: 30px 25px;
                min-height: 350px;
            }

            .service-cards-title {
                font-size: 2.5rem;
            }

            .service-title-new {
                font-size: 1.75rem;
            }

            .product-row,
            .product-row.reverse {
                grid-template-columns: 1fr;
                gap: 40px;
                direction: ltr;
                margin-bottom: 80px;
            }

            .product-images {
                height: 300px;
                order: -1;
            }

            .product-image {
                width: 150px;
                height: 150px;
            }
            
            .product-row:first-child .product-image.bottom-right {
                top: 100px;
                right: 90px;
            }

            .product-content h2 {
                font-size: 1.8rem;
            }

            .product-content p {
                font-size: 1rem;
            }
        }
        
        

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 10px;
            }

            .logo {
                font-size: 0.8rem;
                gap: 4px;
            }

            .logo-icon {
                width: 24px;
                height: 18px;
            }

            .nav-links {
                gap: 10px;
            }

            .nav-links a {
                font-size: 0.65rem;
                font-weight: 700;
            }
            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .service-cards-title {
                font-size: 2rem;
            }

            .service-title-new {
                font-size: 1.5rem;
            }

            .service-card-new {
                padding: 25px 20px;
            }
        }