
        /* Global Styles */
        :root {
            --primary-color: #2e8b57;
            --secondary-color: #f5c542;
            --accent-color: #ff6b6b;
            --text-color: #333;
            --light-bg: #f9f9f9;
            --dark-bg: #333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Helvetica Neue', sans-serif;
        }
        
        body {
            color: var(--text-color);
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            margin-bottom: 50px;
            font-size: 2rem;
            font-weight: 500;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--dark-bg);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px;
        }
        
        .services-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .services-header h1 {
            color: #333;
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .services-header p {
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .service-card {
            background-color: #fff;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* .service-icon {
            font-size: 50px;
            color: #28a745;
            margin-bottom: 20px;
        } */
        
        .service-title {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .service-description {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .order-button {
            display: inline-block;
            background-color: transparent;
            color: #28a745;
            border: none;
            padding: 8px 20px;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .order-button:hover {
            color: #218838;
        }

        .service-icon {
            font-size: 50px;
            color: #28a745;
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 80px; /* Set a consistent height for all icon containers */
        }
        
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            
            .services-header h1 {
                font-size: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .service-card {
                padding: 20px;
            }
            
            .services-header h1 {
                font-size: 26px;
            }
        }
        
        .btn:hover {
            background-color: var(--primary-color);
        }
        
        .btn1 {
            display: inline-block;
            padding: 12px 28px;
            background-color: #2e8b57;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn1:hover {
            background-color: var(--dark-bg);
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
        
        

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        nav ul {
            display: flex;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--primary-color);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            padding: 150px 0 100px;
            background-color: var(--light-bg);
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        
        .hero-text {
            flex: 1;
        }
        
        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #666;
        }
        
        .hero-image {
            flex: 1;
            text-align: right;
        }
        
        .hero-image svg {
            max-width: 100%;
            height: auto;
        }
        
        .geometric-shapes {
            position: absolute;
            z-index: 0;
        }
        
        .circle1 {
            width: 200px;
            height: 200px;
            background-color: rgba(46, 139, 87, 0.2);
            border-radius: 50%;
            top: -50px;
            right: 10%;
        }
        
        .circle2 {
            width: 150px;
            height: 150px;
            background-color: rgba(245, 197, 66, 0.15);
            border-radius: 50%;
            bottom: -30px;
            left: 15%;
        }
        
        /* Brand Bar */
        .brand-bar {
            padding: 30px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        .brands {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .brands img {
            height: 30px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .brands img:hover {
            opacity: 1;
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        /* .service-icon {
            width: 100px;
            height: 100px;
            margin-bottom: 20px;
        } */
        
        .service-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .service-description {
            color: #666;
        }
        
        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
       .project-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
        }
        
        .project-image {
            width: 100%;
            height: 250px;
            background-color: #eee;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }
        
        /* Optional overlay for better text contrast if needed */
        .project-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.3) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .project-card:hover .project-image::after {
            opacity: 1;
        }
        
        .project-info {
            padding: 20px;
        }
        
        .project-title {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
        
        .project-category {
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 15px;
        }
        
        /* Experience Section */
        .experience-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline-line {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background-color: #eee;
        }
        
        .experience-item {
            display: flex;
            margin-bottom: 50px;
        }
        
        .experience-item:nth-child(odd) {
            flex-direction: row;
        }
        
        .experience-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .experience-content {
            width: 45%;
            padding: 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .year-badge {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 500;
        }
        
        .experience-title {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
        
        .experience-company {
            font-size: 1rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        /* Company Logo Styles */
        .company-logo {
            margin-bottom: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-image {
            max-width: 120px;
            max-height: 70px;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 4px;
            opacity: 0.9;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .logo-image:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        /* Certifications Section */
        .certifications {
            background-color: var(--light-bg);
        }

        .certifications-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .certifications-marquee {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 20px;
            padding: 20px 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .certifications-marquee::-webkit-scrollbar {
            display: none;
        }

        .certification-item {
            flex: 0 0 280px;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .certification-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .cert-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .certification-item:hover .cert-image {
            transform: scale(1.05);
        }

        .cert-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

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

        .cert-overlay h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .cert-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .cert-slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--primary-color);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cert-slider-btn:hover {
            background-color: var(--dark-bg);
            transform: translateY(-50%) scale(1.1);
        }

        .cert-prev {
            left: -25px;
        }

        .cert-next {
            right: -25px;
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: var(--light-bg);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            background-color: #eee;
        }
        
        .author-info h4 {
            font-weight: 500;
        }
        
        .author-info p {
            font-size: 0.9rem;
            color: #888;
        }
        
        .rating {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        /* Contact Section */
        .contact-content {
            display: flex;
            gap: 50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info p {
            margin-bottom: 30px;
            color: #666;
        }
        
        .contact-form {
            flex: 1;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .footer-col {
            flex: 1;
            margin-right: 40px;
        }
        
        .footer-col:last-child {
            margin-right: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links li a:hover {
            color: var(--primary-color);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--primary-color);
        }
        
        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Media Queries */
        @media (max-width: 1024px) {
            .hero-text h1 {
                font-size: 3rem;
            }
            
            .experience-timeline {
                padding: 0 20px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 15px 20px;
            }
            
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .hero-image {
                margin-top: 30px;
            }
            
            .timeline-line {
                left: 30px;
            }
            
            .experience-item {
                flex-direction: row !important;
                margin-left: 50px;
            }
            
            .experience-content {
                width: 100%;
            }
            
            .year-badge {
                left: 30px;
            }

            /* Mobile logo adjustments */
            .logo-image {
                max-width: 90px;
                max-height: 60px;
            }
            
            .contact-content {
                flex-direction: column;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-col {
                margin-right: 0;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                position: relative;
            }
            
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #fff;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                padding: 1rem 0;
                z-index: 1000;
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 0.5rem 0;
                text-align: center;
            }
            
            .mobile-menu-btn {
                display: block;
                background: none;
                border: none;
                font-size: 1.5rem;
                cursor: pointer;
            }
        }
        
        @media (min-width: 769px) {
            .mobile-menu-btn {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 120px 0 60px;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.5rem;
                margin-bottom: 30px;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            /* Extra small screens logo adjustments */
            .logo-image {
                max-width: 75px;
                max-height: 50px;
            }

            /* Mobile certification adjustments */
            .certification-item {
                flex: 0 0 250px;
            }

            .cert-slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .cert-prev {
                left: -20px;
            }

            .cert-next {
                right: -20px;
            }
        }
 
