 @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

         body {
            font-family: "Lato", sans-serif;
            overflow-x: hidden;
            
            line-height: 1.7em;
        }
h1, h2, h3, h4, h5, h6 {font-family: "Montserrat", sans-serif;line-height: 1.3em;}
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: bold;
            color: #2d5016;
        }

        .logo img {
            transition:0.2s ease all;
            transform-origin: center center;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #2ba031;
        }

        .cta-btn {
            background: #2ba031;
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            letter-spacing:1px;
        }

        .cta-btn:hover {
            background: #2ba031;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
        }

        /* Hero Section */
        .hero {
          padding-top:100px;
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero .hero-background {position:absolute;width:100%;}
        .hero .hero-background video {width:100%; z-index: 1;}
        .hero:before {content:'';position:absolute;height:100%; width:100%; background-color: transparent;
    --background-overlay: '';
    background-image:linear-gradient(180deg, #180E0D 25%, #2C2827 127%);z-index:2;opacity: 0.81; }
        .hero-content, .hero-stats {z-index: 4;}

        .hero-content {
            max-width: 700px;
            color: white;
            animation: fadeInUp 1s ease-out;
            z-index: 2;
                padding: 0 5%;
        }

        .hero-label {
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .btn-primary {
            background: #f0da4b;
            color: #000;
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing:1px;
        }

        .btn-primary:hover {
            background: #2ba031;
            color:#ffffff;
            transform: translateY(-3px);
           
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid white;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing:1px;
        }

        .btn-secondary:hover {
            background: white;
            color: #333;
            transform: translateY(-3px);
        }

        .hero-stats {
            padding:0 0 2rem 0;
            margin:0 auto;
            color: white;
            letter-spacing: 1px;
            text-align: center;
        }

        .stat-text {
            font-size: 0.9rem;
            text-align: center;
        }

        /* Logo Carousel */
        .logo-carousel {
            background: #014369;
            padding: 2rem 0;
            overflow: hidden;
        }

        .logo-track {
            display: flex;
            gap: 4rem;
            animation: scroll 20s linear infinite;
        }

        .logo-item {
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: bold;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* About Section */
        .about {
            padding: 5rem 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .about-img {
            background: #e5e7eb;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s;
            position: relative;
        }

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

        .img-placeholder {
            width: 100%;
            padding-bottom: 100%;
            
        }

        .img-large {
            grid-row: span 2;
            
        }

        .stat-box {
            background: #2ba031;
            color: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
        }

        .stat-box h3 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .team-box {
            background: #014369;
            color: white;
            padding: 2rem;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            font-size:1.5rem;
            font-weight: 600;
        }

        .about-content h3 {
            color: #2ba031;
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .about-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .features-list {
            list-style: none;
        }

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

        .features-list li::before {
            content: "✓";
            color: #2ba031;
            font-weight: bold;
        }

        /* Services Section */
        .services {
            background: #f9fafb;
            padding: 5rem 5%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h3 {
            color: #2ba031;
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #1a1a1a;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: #0d456c;
            color: white;
            padding: 2.5rem;
            border-radius: 20px;
            transition: all 0.3s;
            cursor: pointer;
        }

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

        .service-icon {
            width: 100px;
            height: 100px;
            background: #f0da4b;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            padding:0.5rem;
        }
        .service-icon img {fill:#2ba031;}

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #f9f9f9;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .learn-more {
            color: #2ba031;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s;
        }

        .learn-more:hover {
            gap: 1rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('background01.webp');background-size:cover; background-repeat: no-repeat;background-position:center;background-attachment: fixed;
            background-size: cover;
            background-position: center;
            padding: 6rem 5%;
            text-align: center;
            color: white;
        }

        .cta-section h3 {
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background: #014369;
            color: white;
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .footer-brand h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-brand p {
            color: #f9f9f9;
            margin-bottom: 2rem;
        }

       
        .footer-links h4 {
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: #f9f9f9;
            text-decoration: none;
            display: block;
            padding: 0.3rem 0;
            transition: color 0.3s;
        }
        .footer-links {text-align: center;}
        .footer-links a:hover {
            color: #2ba031;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            justify-content: center;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: #ECDA5D;
            color:#000000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: #2ba031;
            color:#ffffff;
            transform: translateY(-3px);
        }

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

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

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