        @import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Merriweather','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 1);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            color: black;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo i {
            color: #90EE90;
            font-size: 2rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: black;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link:hover {
            color: #90EE90;
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #90EE90;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .bar {
            width: 25px;
            height: 3px;
            background: black;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background-image: url('banner.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"><animate attributeName="r" values="2;4;2" dur="3s" repeatCount="indefinite"/></circle></svg>') repeat;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            z-index: 2;
            position: relative;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-text h1 span {
            color: #90EE90;
            display: block;
            font-size: 2.5rem;
            margin-top: 0.5rem;
        }

        .hero-text p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
            line-height: 1.5;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: linear-gradient(45deg, #32CD32, #228B22);
            color: white;
            box-shadow: 0 10px 30px rgba(50, 205, 50, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(50, 205, 50, 0.6);
            background: linear-gradient(45deg, #228B22, #32CD32);
        }

        .btn-outline {
            border: 2px solid white;
            color: white;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
        }

        .btn-outline:hover {
            background: white;
            color: #228B22;
            transform: translateY(-3px);
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .stats-card {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255,255,255,0.2);
            text-align: center;
            transform: rotate(-5deg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .stats-number {
            font-size: 3rem;
            font-weight: bold;
            color: #90EE90;
            display: block;
        }

        .stats-label {
            color: white;
            font-size: 1rem;
            margin-top: 0.5rem;
            opacity: 0.9;
        }

        /* About Section */
        .about {
            padding: 6rem 0;
            background: linear-gradient(to bottom, #f8f9fa, white);
            font-family: 'Merriweather','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #32CD32, #228B22);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text, .about-text2 p {
            margin-bottom: 1.5rem;
            color: #555;
            font-size: 1.1rem;
            line-height: 1.7;
            text-align: justify;
        }
        
        
        .about-text2{
            margin-top: 3rem;
        }
        

        .certifications {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .cert-card {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
            border: 2px solid transparent;
        }

        .cert-card:hover {
            transform: translateY(-5px);
            border-color: #32CD32;
        }

        .cert-icon {
            font-size: 2.5rem;
            color: #32CD32;
            margin-bottom: 1rem;
        }

        /* Services Section */
        .services {
            padding: 6rem 0;
            background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
            /*color: white;*/
            color: #393737;
            font-size: 1.1rem;
            line-height: 1.5;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: rgba(255,255,255,1);
            backdrop-filter: blur(15px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.8);
        }

        .service-icon {
            font-size: 3rem;
            color: #90EE90;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        /* Clients Section */
        .clients {
            padding: 6rem 0;
            background: #f8f9fa;
        }

        .client-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .client-category {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            text-align: center;
        }

        .client-category h3 {
            color: #228B22;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

         .client-logos img {
        transition: transform 0.3s ease;
    }
    
    .client-logos img:hover {
            transform: scale(1.1);
        }
        @media (max-width: 768px) {
            .client-logos {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            }
            .client-logos img {
                max-width: 120px;
                height: 80px;
            }
            
            .about-text, .about-text2 p {
                  line-height: 1.5;
            }
            
            .hero-text h1 span{
                font-size: 2.0rem;
            }
            .hero-text h1{
                font-size: 2.0rem;
                margin-top: 14rem;
            }
            .client-logos{
               display: grid;
               grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
               gap: 30px;
               padding: 20px;
               justify-items: center;"
            }
            
        }
        @media (max-width: 480px) {
            .client-logos {
                grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            }
            .client-logos img {
                max-width: 80px;
                height: 60px;
            }
            .about-text, .about-text2 p {
                  line-height: 1.5;
            }
            ..nav-container img{
                height: 45px;
            }
            .logo{
                font-size: 1.3rem;
            }
            .client-logos{
               display: grid;
               grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
               gap: 30px;
               padding: 20px;
               justify-items: center;"
            }
            
        }
        /*.client-logos {*/
        /*    display: flex;*/
        /*    flex-wrap: wrap;*/
        /*    justify-content: center;*/
        /*    gap: 1rem;*/
        /*}*/

        .client-logo {
            width: 80px;
            height: 60px;
            background: #f8f9fa;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #228B22;
            font-weight: bold;
            font-size: 0.8rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .client-logo:hover {
            background: #228B22;
            color: white;
            transform: scale(1.1);
        }

        /* Contact Section */
        .contact {
            padding: 6rem 0;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .contact-info h3 {
            color: #90EE90;
            font-size: 1.8rem;
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-item i {
            color: #32CD32;
            font-size: 1.5rem;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(15px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 10px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }

        .form-control::placeholder {
            color: rgba(255,255,255,0.7);
        }

        .form-control:focus {
            outline: none;
            border-color: #32CD32;
            background: rgba(255,255,255,0.15);
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: rgba(34, 139, 34, 0.95);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 2rem 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            /*.hero-text h1 {*/
            /*    font-size: 2.5rem;*/
            /*}*/

            .about-grid,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                justify-content: center;
            }

            .certifications {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 1s ease forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease 0.5s forwards;
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            animation: slideInRight 1s ease 0.7s forwards;
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
    

        .vision-card img, .mission-card img{
            height: 200px;
            padding: 1rem;
        }

        .vision-card{
            display: flex;
            align-items: center;
        }

        .mission-card{
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
        }

        .vision-mission{
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            padding-top: 2rem;
            background-color: #e8f8e8;
            color: #555;
            font-size: 1.1rem;
            line-height: 1.5;
        }
        .vision-card h1, .mission-card h1{
            margin: 1rem 0;
        }


        @media (max-width: 768px) {
            .vision-card,
            .mission-card {
                flex-direction: column !important;
                align-items: flex-start;
                text-align: left;
            }

            .vision-card img,
            .mission-card img {
                height: 140px;
                width: 100%;
                object-fit: contain;
                margin-bottom: 1rem;
            }
        }


        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            background-color: rgba(34, 139, 34, 0.95);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            list-style: none;
            color: white;
            padding: 0;
            margin: 0;
            width: max-content;
            z-index: 1000;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-item {
            padding: 0.5rem 1rem;
            text-decoration: none;
            color: white;
            display: block;
        }

        .dropdown-item:hover {
            background-color: #2f6e2f;
        }

        /* Keep hover for desktop */
        @media (min-width: 768px) {
            .dropdown:hover .dropdown-menu {
                display: block;
            }
        }

        /* Arrow styling */
        .dropdown-toggle i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .dropdown.active .dropdown-toggle i {
            transform: rotate(180deg);
        }


        .nav-container img{
            height: 70px;
            margin-right: 10px;
        }
        
        
        
        @media (min-width:800px){
            .client-logos{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;padding: 20px;
            justify-items: center;
        }
        }
