         @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

 @media (max-width: 800px) {
  html, body {
    overflow-x: hidden !important;
  }
}

  /* Navbar Styling */
       .tgp-main-navbar {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .tgp-navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .tgp-brand-section {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .tgp-brand-circles-wrapper {
            display: flex;
            align-items: center;
        }

        .tgp-circle-logo-image {
            width: 65px;
            height: 40px;
            object-fit: contain;
        }

        .tgp-text-logo-image {
            height: 35px;
            object-fit: contain;
        }

        .tgp-navigation-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
            margin-left: 50px;
        }

        .tgp-nav-menu-item {
            position: relative;
        }

        .tgp-nav-menu-link {
            text-decoration: none;
            color: #000000;
            font-weight: 500;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .tgp-nav-menu-link:hover {
            color: #4CAF50;
        }

        .tgp-dropdown-arrow-icon {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .tgp-nav-menu-item:hover .tgp-dropdown-arrow-icon {
            transform: rotate(180deg);
        }

        .tgp-dropdown-submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .tgp-nav-menu-item:hover .tgp-dropdown-submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .tgp-dropdown-submenu-link {
            display: block;
            padding: 12px 20px;
            color: #666;
            text-decoration: none;
            font-size: 13px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            border-bottom: 1px solid #f0f0f0;
        }

        .tgp-dropdown-submenu-link:last-child {
            border-bottom: none;
        }

        .tgp-dropdown-submenu-link:hover {
            background-color: #f8f9fa;
            color: #4CAF50;
            padding-left: 25px;
        }

        .tgp-mobile-hamburger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .tgp-hamburger-line {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        .tgp-mobile-hamburger-menu.tgp-hamburger-active .tgp-hamburger-line:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .tgp-mobile-hamburger-menu.tgp-hamburger-active .tgp-hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .tgp-mobile-hamburger-menu.tgp-hamburger-active .tgp-hamburger-line:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .tgp-navigation-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background-color: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
                gap: 0;
                height: calc(100vh - 80px);
                overflow-y: auto;
                margin-left: 0;
            }

            .tgp-navigation-menu.tgp-mobile-menu-active {
                left: 0;
            }

            .tgp-nav-menu-item {
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
            }

            .tgp-nav-menu-link {
                padding: 20px;
                justify-content: center;
                font-size: 18px;
            }

            .tgp-mobile-hamburger-menu {
                display: flex;
            }

            .tgp-dropdown-submenu {
                position: static;
                box-shadow: none;
                background-color: #f8f9fa;
                transform: none;
                opacity: 1;
                visibility: visible;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .tgp-nav-menu-item.tgp-mobile-dropdown-expanded .tgp-dropdown-submenu {
                max-height: 300px;
            }

            .tgp-dropdown-submenu-link {
                padding: 15px 20px;
                border-bottom: 1px solid #e9ecef;
            }

            .tgp-nav-menu-item:hover .tgp-dropdown-arrow-icon {
                transform: none;
            }

            .tgp-mobile-dropdown-expanded .tgp-dropdown-arrow-icon {
                transform: rotate(180deg);
            }
        }

        /* Demo content styles */
        .tgp-demo-content-section {
            padding: 50px 20px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .tgp-demo-content-section h1 {
            color: #333;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
        }

        .tgp-demo-content-section p {
            color: #666;
            line-height: 1.6;
            font-family: 'Poppins', sans-serif;
        }

/* ..............................................................nav section end.................................. */

*{
    margin: 0;
    padding: 0;
                box-sizing: border-box;

}

html {
  scroll-behavior: smooth;
}

.slide-content h1 .green{
   background: rgb(7, 87, 7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 5.5rem;
    
}



/* about-us section............................................................... */
   .about-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #19211a 0%, #083512 100%);
            min-height: 100vh;
        }

        /* .background-pattern {
            position: absolute;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
            background-image: 
                radial-gradient(circle at 25% 25%, #4847477e 2px, transparent 2px),
                radial-gradient(circle at 75% 75%, #2c2c2c76 1px, transparent 1px);
            background-size: 60px 60px, 40px 40px;
            animation: float 20s ease-in-out infinite;
            
        } */

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }

        .container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            z-index: 2;
        }

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: 100vh;
            padding: 4rem 0;
        }

        .text-content {
            color: white;
        }

        .section-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .main-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            text-align: justify;
            font-size: 1.25rem;
            font-weight: 400;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .description {
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.85;
            margin-bottom: 2rem;
        }

        .highlight {
            color: #fbbf24;
            font-weight: 600;
            text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2.5rem 0;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #fbbf24;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2.5rem;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #ffffff;
            color: #667eea;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            font-size: 1rem;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: #f8fafc;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            font-size: 1rem;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
        }

        .visual-content {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 400px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #66ea8e, #50893f);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #66ea8e, #50893f);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .feature-description {
            color: #6b7280;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: floatUp 15s infinite linear;
        }

        .floating-circle:nth-child(1) {
            width: 100px;
            height: 100px;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-circle:nth-child(2) {
            width: 60px;
            height: 60px;
            left: 80%;
            animation-delay: 5s;
        }

        .floating-circle:nth-child(3) {
            width: 80px;
            height: 80px;
            left: 60%;
            animation-delay: 10s;
        }

        @keyframes floatUp {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }

            .cta-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .content-wrapper {
                padding: 2rem 0;
                gap: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .feature-cards {
                max-width: 100%;
            }

            .feature-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1.1rem;
            }

            .description {
                font-size: 1rem;
            }

            .stat-item {
                padding: 1rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }
        }

        /* Loading Animation */
        .content-wrapper > * {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .text-content > *:nth-child(1) { animation-delay: 0.1s; }
        .text-content > *:nth-child(2) { animation-delay: 0.2s; }
        .text-content > *:nth-child(3) { animation-delay: 0.3s; }
        .text-content > *:nth-child(4) { animation-delay: 0.4s; }
        .text-content > *:nth-child(5) { animation-delay: 0.5s; }
        .text-content > *:nth-child(6) { animation-delay: 0.6s; }

        .visual-content { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

    

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            overflow-x: hidden;
            /* overflow: hidden; */
        
        }

        .hero-slider {
            z-index: 1;
            position: relative;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            perspective: 1000px;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
            will-change: transform, opacity;
        }

        .slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        .slide-1 {
            background-image: 
                linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(55, 65, 81, 0.6)),
                url('img/tgp-plant-img.jpeg');
        }

        .slide-2 {
            background-image: 
                linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(71, 85, 105, 0.6)),
                url('img/Industrial-pak-changing-img.jpg');
        }

        .slide-3 {
            background-image: 
                linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(51, 65, 85, 0.6)),
                url('img/new-gen-manufacturing\ .png');
        }

        .slide-4 {
            background-image: 
                linear-gradient(135deg, rgba(28, 25, 23, 0.8), rgba(68, 64, 60, 0.6)),
                url('img/VCI\ new\ edited_edited_edited.jpg');
        }

        /* Slide States */
        .slide.active {
            transform: translateX(0) scale(1) rotateY(0deg);
            opacity: 1;
            z-index: 5;
        }

        .slide.next {
            transform: translateX(100%) scale(0.9) rotateY(-10deg);
            opacity: 0.7;
            z-index: 3;
        }

        .slide.prev {
            transform: translateX(-100%) scale(0.9) rotateY(10deg);
            opacity: 0.7;
            z-index: 3;
        }

        .slide.hidden {
            transform: translateX(0) scale(0.8);
            opacity: 0;
            z-index: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            padding: 0 60px;
            text-align: left;
            color: white;
            font-family:  'Poppins', sans-serif;
        }

        .slide-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
            text-transform: uppercase;
        }

        .slide-content h1 {
            font-size: clamp(2.5rem, 5vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .slide-content p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            line-height: 1.6;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
            max-width: 600px;
        }

        .slide-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: #ffffff;
            color: #000000;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: #f1f5f9;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: transparent;
            color: #ffffff;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        /* Navigation */
        .nav-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .nav-controls.prev {
            left: 40px;
        }

        .nav-controls.next {
            right: 40px;
        }

        .nav-btn {
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(15px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
            transform: scale(1.05);
        }

        /* Slide Indicators */
        .slide-indicators {
            position: absolute;
            bottom: 40px;
            left: 60px;
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .indicator {
            width: 40px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .indicator.active {
            background: #ffffff;
            width: 60px;
        }

        /* Slide Counter */
        .slide-counter {
            position: absolute;
            bottom: 40px;
            right: 60px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            font-weight: 500;
            z-index: 10;
            font-family: 'Inter', monospace;
        }

        /* Content Animations */
        .slide.active .slide-badge {
            animation: slideInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
        }

        .slide.active .slide-content h1 {
            animation: slideInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.4s both;
        }

        .slide.active .slide-content p {
            animation: slideInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.6s both;
        }

        .slide.active .slide-actions {
            animation: slideInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.8s both;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Progress Bar */
        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: rgba(255, 255, 255, 0.3);
            width: 100%;
            z-index: 10;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #ffffff, #e2e8f0);
            width: 0%;
            transition: width 0.1s linear;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .slide-content {
                padding: 0 40px;
            }

            .nav-controls.prev {
                left: 20px;
            }

            .nav-controls.next {
                right: 20px;
            }

            .slide-indicators {
                left: 40px;
            }

            .slide-counter {
                right: 40px;
            }
        }

        @media (max-width: 768px) {
            .slide-content {
                padding: 0 24px;
                text-align: center;
            }

            .slide-content h1 {
                font-size: clamp(2.5rem, 8vw, 4rem);
            }

            .slide-actions {
                flex-direction: column;
                gap: 16px;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
                max-width: 280px;
            }

            .nav-btn {
                width: 48px;
                height: 48px;
                font-size: 18px;
            }

            .slide-indicators {
                left: 50%;
                transform: translateX(-50%);
            }

            .slide-counter {
                right: 24px;
                bottom: 120px;
            }

            .slide.next {
                transform: translateX(100%) scale(0.95);
            }

            .slide.prev {
                transform: translateX(-100%) scale(0.95);
            }
        }

        @media (max-width: 480px) {
            .slide-content {
                padding: 0 20px;
            }

            .nav-controls.prev {
                left: 16px;
            }

            .nav-controls.next {
                right: 16px;
            }

            .slide-indicators {
                bottom: 24px;
            }

            .slide-counter {
                right: 20px;
                bottom: 100px;
            }
        }

        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            .slide {
                transition: none;
            }
            
            .slide.active .slide-badge,
            .slide.active .slide-content h1,
            .slide.active .slide-content p,
            .slide.active .slide-actions {
                animation: none;
            }
        }
    /* prdtion.......................................................................................... */
            .content-grid {
                padding-top: 10%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            width: 100%;
            min-height: 100vh;
            position: relative;
        }

        /* Left Section - Text */
        .text-section {
            background: #f7f7f7;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 10;
        }

        .title {
            font-size: 3.2rem;
            font-weight: 800;
            color: #2E7D32;
            margin-bottom: 2rem;
            line-height: 1.1;
            letter-spacing: -2px;
        }

        .prdtion-description {
            text-align: justify;
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: #444;
            font-weight: 400;
        }

        .description-secondary {
            text-align: justify;
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            color: #555;
            font-weight: 400;
        }

        .read-more-btn {
            background: linear-gradient(135deg, #7CB342, #2E7D32);
            color: white;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 60px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            align-self: flex-start;
        }

        .read-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(46, 125, 50, 0.4);
            background: linear-gradient(135deg, #8BC34A, #388E3C);
        }

        /* Right Section - Video Background with Animation */
        .animation-section {
            position: relative;
            background: #333;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Video Background - Fixed in right section */
        .video-background {
            position: absolute;
            /* position: fixed; */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(46, 125, 50, 0.3));
            z-index: 2;
        }

        /* Circle Animation Container */
        .circle-animation {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 2rem;
        }

        .cycle-container {
            position: relative;
            width: 400px;
            height: 400px;
            margin-bottom: 2rem;
        }

        /* Main Circle */
        .nature-circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(
                from 0deg,
                #7CB342 0deg,
                #7CB342 var(--progress, 0deg),
                rgba(255, 255, 255, 0.2) var(--progress, 0deg)
            );
            position: relative;
            animation: progressAnimation 12s ease-in-out infinite;
            box-shadow: 0 0 60px rgba(124, 179, 66, 0.4);
            border: 3px solid rgba(255, 255, 255, 0.3);
        }

        .circle-inner {
            position: absolute;
            top: 25px;
            left: 25px;
            right: 25px;
            bottom: 25px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            border: 2px solid rgba(124, 179, 66, 0.3);
        }

        .circle-text {
            color: white;
            text-align: center;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .circle-subtext {
            color: #7CB342;
            font-size: 1rem;
            text-align: center;
            font-weight: 500;
        }

        /* Stage Indicators Around Circle */
        .stage-indicator {
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border: 3px solid rgba(255, 255, 255, 0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            transition: all 0.5s ease;
            cursor: pointer;
        }

        .stage-indicator.active {
            background: linear-gradient(135deg, #7CB342, #2E7D32);
            border-color: #7CB342;
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(124, 179, 66, 0.5);
        }

        .stage-indicator .icon {
            font-size: 1.5rem;
            margin-bottom: 0.2rem;
        }

        .stage-indicator .label {
            font-size: 0.7rem;
            text-align: center;
        }

        /* Position indicators around circle */
        .stage-1 { top: -40px; left: 50%; transform: translateX(-50%); }
        .stage-2 { top: 20%; right: -40px; }
        .stage-3 { bottom: 20%; right: -40px; }
        .stage-4 { bottom: -40px; left: 50%; transform: translateX(-50%); }
        .stage-5 { bottom: 20%; left: -40px; }
        .stage-6 { top: 20%; left: -40px; }

        /* Story Text */
        .story-text {
            text-align: center;
            color: white;
            max-width: 500px;
            margin-top: 2rem;
        }

        .story-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #7CB342;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .story-description {
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0;
            animation: fadeInOut 12s ease-in-out infinite;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        }

        /* Animations */
        @keyframes progressAnimation {
            0% { --progress: 0deg; }
            16.66% { --progress: 60deg; }
            33.33% { --progress: 120deg; }
            50% { --progress: 180deg; }
            66.66% { --progress: 240deg; }
            83.33% { --progress: 300deg; }
            100% { --progress: 360deg; }
        }

        @keyframes fadeInOut {
            0%, 16.66% { opacity: 1; }
            20%, 96.66% { opacity: 0; }
            100% { opacity: 1; }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .cycle-container {
                width: 350px;
                height: 350px;
            }
            
            .title {
                font-size: 3rem;
            }
        }

        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
            }
            
            .text-section {
                order: 1;
                min-height: 50vh;
                padding: 2rem;
            }
            
            .animation-section {
                order: 2;
                min-height: 50vh;
            }
            
            .cycle-container {
                width: 300px;
                height: 300px;
            }
            
            .title {
                font-size: 2.5rem;
                text-align: center;
            }
            
            .prdtion-description, .description-secondary {
                text-align: center;
            }
            
            .read-more-btn {
                align-self: center;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
          
            .logo-text {
                font-size: 1.5rem;
            }
            
            .text-section {
                padding: 1.5rem;
            }
            
            .title {
                font-size: 2rem;
            }
            
            .prdtion-description {
                font-size: 1.1rem;
            }
            
            .description-secondary {
                font-size: 1rem;
            }
            
            .cycle-container {
                width: 250px;
                height: 250px;
            }
            
            .stage-indicator {
                width: 60px;
                height: 60px;
            }
            
            .stage-indicator .icon {
                font-size: 1.2rem;
            }
            
            .stage-indicator .label {
                font-size: 0.6rem;
            }
        }

        @media (max-width: 480px) {
            .main-content {
                margin-top: 80px;
            }
            
            .text-section {
                padding: 1rem;
            }
            
            .title {
                font-size: 1.8rem;
            }
            
            .cycle-container {
                width: 200px;
                height: 200px;
            }
            
            .circle-text {
                font-size: 1.1rem;
            }
            
            .circle-subtext {
                font-size: 0.9rem;
            }
            
            .story-title {
                font-size: 1.4rem;
            }
            
            .story-description {
                font-size: 1rem;
            }
        }

        /* product section....................................................................... */
          .tgp-product-showcase {
            max-width: 1400px;
            margin: 0 auto;
        }

        .tgp-section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .tgp-main-title {
            font-size: 3rem;
            color: #2e7d32;
            font-weight: bold;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .tgp-section-description {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .tgp-slider-viewport {
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .tgp-product-carousel {
            display: flex;
            transition: transform 0.6s ease-in-out;
            width: 500%;
        }

        .tgp-product-card {
            width: 20%;
            height: 450px;
            position: relative;
        background-size: cover !important;
            background-position: center !important;
            margin: 0 10px;
            border-radius: 15px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .tgp-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.25);
        }

        .tgp-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        .tgp-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            color: white;
            z-index: 2;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
        }

        .tgp-product-title {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: #fff;
            text-align: center;
        }

        .tgp-product-details {
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            text-align: left;
        }

        .tgp-product-card:hover .tgp-product-details {
            opacity: 1;
            max-height: 300px;
        }

     

        .tgp-product-summary {
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 15px;
            color: #e0e0e0;
        }

        .tgp-feature-list {
            list-style: none;
        }

        .tgp-feature-item {
            font-size: 0.9rem;
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
            color: #f0f0f0;
        }

        .tgp-feature-item::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4caf50;
            font-weight: bold;
            font-size: 1rem;
        }

        .tgp-slider-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .tgp-nav-button {
            background: #2e7d32;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
        }

        .tgp-nav-button:hover {
            background: #1b5e20;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
        }

        .tgp-nav-button:active {
            transform: translateY(0);
        }

        .tgp-slide-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .tgp-indicator-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tgp-indicator-dot.tgp-active-dot {
            background: #2e7d32;
            transform: scale(1.2);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .tgp-product-showcase {
                padding: 0 10px;
            }

            .tgp-main-title {
                font-size: 2.2rem;
            }

            .tgp-section-description {
                font-size: 1rem;
                padding: 0 15px;
            }

            .tgp-product-card {
                height: 380px;
                margin: 0 5px;
            }

            .tgp-card-content {
                padding: 20px;
            }

            .tgp-product-title {
                font-size: 1.5rem;
            }

            .tgp-product-summary {
                font-size: 0.9rem;
            }

            .tgp-nav-button {
                padding: 12px 20px;
                font-size: 1rem;
            }

            .tgp-slider-controls {
                gap: 15px;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 480px) {
           

            .tgp-main-title {
                font-size: 1.8rem;
            }

            .tgp-product-card {
                height: 320px;
            }

            .tgp-product-title {
                font-size: 1.3rem;
            }

            .tgp-card-content {
                padding: 15px;
            }

            .tgp-nav-button {
                padding: 10px 18px;
                font-size: 0.9rem;
            }
        }

        /* award cointainer................................................................... */
        
        .awards-section {
            position: relative;
            padding: 80px 20px;
            background-image: url('img/award-background.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            overflow: hidden;
        }

        .awards-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
            z-index: 1;
        }

        .awards-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            color: white;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .awards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding: 0 20px;
            align-items: stretch;
        }

        .award-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 30px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .award-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .award-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.25);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .award-card:hover::before {
            opacity: 1;
        }

        .award-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        .award-card:hover .award-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .award-basic-info {
            transition: all 0.3s ease;
            z-index: 2;
            position: relative;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .award-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            margin-bottom: 8px;
            line-height: 1.4;
            text-align: center;
        }

        .award-date {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 400;
            text-align: center;
        }

        .award-details {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 30px;
            background: linear-gradient(135deg, rgba(223, 255, 234, 0.95), rgba(231, 255, 212, 0.9));
            color: white;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            border-radius: 20px;
            z-index: 3;
            overflow-y: auto;
        }

        .award-card:hover .award-details {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .award-card:hover .award-basic-info {
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
        }

        .award-full-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #031d06;
            line-height: 1.3;
        }

        .award-organization {
            font-size: 1rem;
            margin-bottom: 8px;
            color: #253128;
            font-weight: 500;
        }

        .award-description {
            font-size: 0.9rem;
            line-height: 1.5;
            color: rgba(35, 46, 34, 0.9);
            margin-bottom: 12px;
            flex-grow: 1;
        }

        .award-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 8px;
            margin-bottom: 10px;
        }

        .skill-tag {
            background: rgba(0, 138, 23, 0.2);
            color: #032305;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .award-date-full {
            font-size: 0.85rem;
            color: rgba(8, 33, 4, 0.7);
            margin-top: auto;
            padding-top: 10px;
            font-style: italic;
        }

        @media (max-width: 1024px) {
            .awards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .award-card {
                height: 220px;
            }
        }

        @media (max-width: 768px) {
            .awards-section {
                padding: 60px 15px;
                background-attachment: scroll;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .awards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 10px;
            }
            
            .award-card {
                padding: 25px;
                height: 200px;
            }
            
            .award-title {
                font-size: 1.2rem;
            }
            
            .award-full-title {
                font-size: 1.2rem;
            }
            
            .award-description {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .awards-section {
                padding: 40px 10px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .award-card {
                padding: 20px;
                height: 180px;
            }
            
            .award-details {
                padding: 20px;
            }
        }

        /* Smooth scrolling and animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .award-card {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .award-card:nth-child(1) { animation-delay: 0.1s; }
        .award-card:nth-child(2) { animation-delay: 0.2s; }
        .award-card:nth-child(3) { animation-delay: 0.3s; }
        .award-card:nth-child(4) { animation-delay: 0.4s; }

    /* calculator......................................................................................... */

       .calaulator-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15);
            overflow: hidden;
            max-width: 1200px;
            width: 90%;
            min-height: 600px;
            display: flex;
            transition: all 0.6s ease;
            border: 3px solid #e8f5e8;
        }

        .left-section {
            flex: 1;
            padding: 60px;
            background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 50%, #388e3c 100%);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: all 0.6s ease;
        }

        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
        }

        .logo-circles {
            display: flex;
            margin-right: 15px;
        }

        .circle {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            margin-right: -5px;
        }

        .circle1 { background: #888; }
        .circle2 { background: #4CAF50; }
        .circle3 { background: #2E7D32; }

        .logo-text {
            font-size: 24px;
            font-weight: bold;
        }

        .tagline {
            font-size: 14px;
            opacity: 0.9;
            margin-top: 5px;
        }

        .main-title {
            font-size: 48px;
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .plant-icon {
            font-size: 40px;
            color: #4CAF50;
            margin-left: 10px;
        }

        .description {
            font-size: 18px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .right-section {
            flex: 1;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
            font-size: 16px;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: #4CAF50;
            box-shadow: 0 0 10px rgba(76, 175, 80, 0.1);
        }

        .calculate-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .calculate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
        }

        .calculate-btn:active {
            transform: translateY(0);
        }

        /* Results styles */
        .results-section {
            display: none;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .results-section.active {
            display: flex;
        }

        .savings-display {
            background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin-bottom: 30px;
            box-shadow: 0 15px 30px rgba(76, 175, 80, 0.3);
        }

        .savings-amount {
            font-size: 64px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .savings-unit {
            font-size: 18px;
            opacity: 0.9;
        }

        .progress-container {
            width: 100%;
            height: 20px;
            background: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            margin: 30px 0;
        }

        .cal-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #4CAF50 0%, #2E7D32 100%);
            border-radius: 10px;
            transition: width 2s ease-in-out;
            width: 0%;
        }

        .impact-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .stat-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
        }

        .stat-number {
            font-size: 28px;
            font-weight: bold;
            color: #4CAF50;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 14px;
            color: #666;
        }

        .recalculate-btn {
            background: transparent;
            border: 2px solid #4CAF50;
            color: #4CAF50;
            padding: 12px 30px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .recalculate-btn:hover {
            background: #4CAF50;
            color: white;
        }

        .hidden {
            display: none !important;
        }

        @media (max-width: 768px) {
            .calaulator-container {
                flex-direction: column;
                max-width: 90%;
            }
            
            .left-section, .right-section {
                padding: 40px 30px;
            }
            
            .main-title {
                font-size: 36px;
            }
            
            .impact-stats {
                grid-template-columns: 1fr;
            }
        }

.maincalculator{
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10%;
    padding-bottom: 10%;
}
        
    /* blog section....................................................................................... */
        .blog-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            background: #f7f7f7;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 4rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #27ae60, #2ecc71);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
        }

        .blog-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .blog-image {
            width: 100%;
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .blog-card:nth-child(1) .blog-image {
            background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2327ae60;stop-opacity:1" /><stop offset="100%" style="stop-color:%232ecc71;stop-opacity:1" /></linearGradient></defs><rect width="400" height="300" fill="url(%23grad1)"/><circle cx="80" cy="80" r="30" fill="rgba(255,255,255,0.3)"/><circle cx="320" cy="60" r="25" fill="rgba(255,255,255,0.2)"/><circle cx="350" cy="200" r="40" fill="rgba(255,255,255,0.25)"/><circle cx="50" cy="250" r="20" fill="rgba(255,255,255,0.3)"/><path d="M0,200 Q100,150 200,180 T400,160 L400,300 L0,300 Z" fill="rgba(255,255,255,0.1)"/></svg>');
        }

        .blog-card:nth-child(2) .blog-image {
            background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%233498db;stop-opacity:1" /><stop offset="100%" style="stop-color:%232980b9;stop-opacity:1" /></linearGradient></defs><rect width="400" height="300" fill="url(%23grad2)"/><circle cx="100" cy="100" r="35" fill="rgba(255,255,255,0.2)"/><circle cx="300" cy="80" r="28" fill="rgba(255,255,255,0.25)"/><circle cx="70" cy="220" r="22" fill="rgba(255,255,255,0.3)"/><circle cx="330" cy="240" r="45" fill="rgba(255,255,255,0.15)"/><path d="M0,180 Q150,120 300,150 T400,140 L400,300 L0,300 Z" fill="rgba(255,255,255,0.1)"/></svg>');
        }

        .blog-card:nth-child(3) .blog-image {
            background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><linearGradient id="grad3" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23e74c3c;stop-opacity:1" /><stop offset="100%" style="stop-color:%23c0392b;stop-opacity:1" /></linearGradient></defs><rect width="400" height="300" fill="url(%23grad3)"/><circle cx="90" cy="70" r="32" fill="rgba(255,255,255,0.25)"/><circle cx="310" cy="90" r="27" fill="rgba(255,255,255,0.2)"/><circle cx="60" cy="200" r="25" fill="rgba(255,255,255,0.3)"/><circle cx="340" cy="220" r="38" fill="rgba(255,255,255,0.18)"/><path d="M0,190 Q120,140 250,170 T400,150 L400,300 L0,300 Z" fill="rgba(255,255,255,0.12)"/></svg>');
        }

        .blog-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255, 255, 255, 0.9);
            color: #2c3e50;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .blog-date {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 8px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            backdrop-filter: blur(10px);
        }

        .blog-content {
            padding: 25px;
            position: relative;
        }

        .blog-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .blog-card:hover .blog-title {
            color: #27ae60;
        }

        .blog-description {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .blog-card:hover .blog-description {
            opacity: 1;
            transform: translateY(0);
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #ecf0f1;
        }

        .read-time {
            color: #95a5a6;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }

        .read-more {
            color: #27ae60;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            color: #2ecc71;
            transform: translateX(5px);
        }

        .view-all-btn {
            display: block;
            width: fit-content;
            margin: 0 auto;
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }

        .view-all-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
            background: linear-gradient(135deg, #2ecc71, #27ae60);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .blog-section {
                padding: 40px 15px;
                margin: 10px;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .blog-card {
                margin: 0 10px;
            }

            .blog-image {
                height: 180px;
            }

            .blog-content {
                padding: 20px;
            }

            .blog-title {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .blog-card {
                margin: 0;
            }

            .view-all-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }
.blogcont{
    background-color: #f7f7f7;
    height: auto;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
}

/* testimonials .......................................................... */

.testi-cont{
    background-color: #f7f7f7;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10%;

}

  .custom-testimonials-main-wrapper {
            max-width: 1000px;
            width: 100%;
            position: relative;
            background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
            border-radius: 20px;
            padding: 60px 40px 40px 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }

        .custom-testimonials-main-title {
            text-align: center;
            color: white;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 50px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            letter-spacing: -0.5px;
        }

        .custom-testimonials-main-wrapper::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.1"/><circle cx="25" cy="25" r="0.3" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="0.4" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }

        .custom-testimonials-slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            width: 100%;
            height: auto;
        }

        .custom-testimonials-track-element {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
            width: 300%; /* 3 slides = 300% */
            height: 100%;
        }

        .custom-testimonial-single-slide {
            width: calc(100% / 3); /* Exact width for 3 slides */
            flex: 0 0 calc(100% / 3);
            padding: 40px;
            text-align: center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            margin-right: 0;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
        }

        .custom-testimonial-single-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #4CAF50, #66BB6A, #81C784, #A5D6A7);
            background-size: 300% 100%;
            animation: custom-shimmer-effect 3s ease-in-out infinite;
        }

        @keyframes custom-shimmer-effect {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .custom-testimonial-quote-symbol {
            font-size: 48px;
            color: #4CAF50;
            margin-bottom: 20px;
            opacity: 0.7;
        }

        .custom-testimonial-content-text {
            font-size: 22px;
            line-height: 1.6;
            color: #2c3e50;
            margin-bottom: 30px;
            font-style: italic;
            position: relative;
        }

        .custom-testimonial-author-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .custom-testimonial-author-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, #4CAF50, #2E7D32);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
            position: relative;
            overflow: hidden;
        }

        .custom-testimonial-author-circle::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: custom-shine-animation 2s infinite;
        }

        @keyframes custom-shine-animation {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .custom-testimonial-author-info h4 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .custom-testimonial-author-info p {
            color: #7f8c8d;
            font-size: 16px;
        }

        .custom-testimonials-navigation-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 40px;
        }

        .custom-testimonials-nav-button {
            width: 50px;
            height: 50px;
            border: none;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            color: #4CAF50;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .custom-testimonials-nav-button:hover {
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .custom-testimonials-nav-button:active {
            transform: translateY(0);
        }

        .custom-testimonials-dots-wrapper {
            display: flex;
            gap: 12px;
        }

        .custom-testimonials-dot-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .custom-testimonials-dot-indicator.custom-active-dot {
            background: white;
            transform: scale(1.2);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
        }

        .custom-testimonials-pause-control {
            display: none;
        }

        @media (max-width: 768px) {
            .custom-testimonials-main-wrapper {
                padding: 40px 20px;
            }

            .custom-testimonials-main-title {
                font-size: 32px;
                margin-bottom: 40px;
            }
            
            .custom-testimonial-single-slide {
                padding: 30px 20px;
            }
            
            .custom-testimonial-content-text {
                font-size: 18px;
            }
            
            .custom-testimonial-author-section {
                flex-direction: column;
                gap: 15px;
            }
            
            .custom-testimonials-navigation-wrapper {
                gap: 15px;
                margin-top: 30px;
            }
            
            .custom-testimonials-nav-button {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        .custom-testimonials-fade-in {
            animation: customFadeInUpAnimation 0.8s ease forwards;
        }

        @keyframes customFadeInUpAnimation {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* why tgp section ............................................................................... */
         .eco-benefits-hero {
            background: linear-gradient(135deg, #2e7d32, #113a14, #4390);
            /* linear-gradient(135deg, #2e7d32, #1b5e20, #4390) */
            background-size: 400% 400%;
            min-height: 100vh;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 80px 20px;
            animation: gradientShift 8s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .floating-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .why-particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatUp 15s infinite linear;
        }

        .why-particle:nth-child(1) { width: 8px; height: 8px; left: 10%; animation-delay: 0s; }
        .why-particle:nth-child(2) { width: 12px; height: 12px; left: 20%; animation-delay: 2s; }
        .why-particle:nth-child(3) { width: 6px; height: 6px; left: 30%; animation-delay: 4s; }
        .why-particle:nth-child(4) { width: 10px; height: 10px; left: 40%; animation-delay: 6s; }
        .why-particle:nth-child(5) { width: 14px; height: 14px; left: 50%; animation-delay: 8s; }
        .why-particle:nth-child(6) { width: 8px; height: 8px; left: 60%; animation-delay: 10s; }
        .why-particle:nth-child(7) { width: 12px; height: 12px; left: 70%; animation-delay: 12s; }
        .why-particle:nth-child(8) { width: 6px; height: 6px; left: 80%; animation-delay: 14s; }
        .why-particle:nth-child(9) { width: 10px; height: 10px; left: 90%; animation-delay: 1s; }
        .why-particle:nth-child(10) { width: 8px; height: 8px; left: 15%; animation-delay: 3s; }

        @keyframes floatUp {
            0% {
                opacity: 0;
                transform: translateY(100vh) rotate(0deg);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(-100px) rotate(360deg);
            }
        }

        .sustainability-title {
            font-size: clamp(3rem, 8vw, 8rem);
            font-weight: 900;
            color: #f0f9f4;
            text-align: center;
            margin-bottom: 80px;
            letter-spacing: -2px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            z-index: 2;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            animation: titleReveal 1.5s ease-out 0.5s forwards;
        }

        @keyframes titleReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .features-showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 40px;
            max-width: 1400px;
            width: 100%;
            z-index: 2;
            position: relative;
        }

        .eco-feature-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            transform: translateY(60px);
            animation: cardSlideUp 0.8s ease-out forwards;
        }

        .eco-feature-card:nth-child(1) { animation-delay: 0.8s; }
        .eco-feature-card:nth-child(2) { animation-delay: 1s; }
        .eco-feature-card:nth-child(3) { animation-delay: 1.2s; }
        .eco-feature-card:nth-child(4) { animation-delay: 1.4s; }

        @keyframes cardSlideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .eco-feature-card:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
        }

        .feature-icon-container {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: white;
            transition: all 0.3s ease;
        }

        .plant-safety-icon { background: linear-gradient(135deg, #22c55e, #16a34a); }
        .earthworm-safety-icon { background: linear-gradient(135deg, #f97316, #ea580c); }
        .ground-testing-icon { background: linear-gradient(135deg, #3b82f6, #2563eb); }
        .strength-durability-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

        .eco-feature-card:hover .feature-icon-container {
            transform: rotate(10deg) scale(1.1);
        }

        .feature-benefit-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .feature-benefit-description {
            /* text-align: left; */
            font-size: 1rem;
            line-height: 1.2;
            color: #6b7280;
            font-weight: 400;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .features-showcase-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                max-width: 800px;
            }
        }

        @media (max-width: 768px) {
            .eco-benefits-hero {
                padding: 60px 15px;
                min-height: 100vh;
            }

            .sustainability-title {
                margin-bottom: 50px;
            }

            .features-showcase-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                max-width: 100%;
                width: 100%;
            }

            .eco-feature-card {
                padding: 25px 20px;
                aspect-ratio: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                
            }

            .feature-icon-container {
                width: 60px;
                height: 60px;
                font-size: 28px;
                margin-bottom: 20px;
            }

            .feature-benefit-title {
                font-size: 1.3rem;
                margin-bottom: 12px;
            }

            .feature-benefit-description {
                font-size: 0.85rem;
                line-height: 1.5;
            }
        }

        @media (max-width: 640px) {
            .eco-benefits-hero {
                padding: 50px 12px;
            }

            .sustainability-title {
                margin-bottom: 40px;
            }

            .features-showcase-grid {
                gap: 15px;
            }

            .eco-feature-card {
                padding: 20px 15px;
                border-radius: 18px;
            }

            .feature-icon-container {
                width: 55px;
                height: 55px;
                font-size: 26px;
                margin-bottom: 15px;
            }

            .feature-benefit-title {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }

            .feature-benefit-description {
                font-size: 0.8rem;
                line-height: 1.4;
            }
        }

        @media (max-width: 480px) {
            .eco-benefits-hero {
                padding: 40px 10px;
            }

            .sustainability-title {
                margin-bottom: 35px;
            }

            .features-showcase-grid {
                gap: 12px;
            }

            .eco-feature-card {
                padding: 18px 12px;
                border-radius: 16px;
            }

            .feature-icon-container {
                width: 50px;
                height: 50px;
                font-size: 24px;
                margin-bottom: 12px;
                border-radius: 16px;
            }

            .feature-benefit-title {
                font-size: 1.1rem;
                margin-bottom: 8px;
            }

            .feature-benefit-description {
                font-size: 0.75rem;
                line-height: 1.3;
            }
        }

        @media (max-width: 360px) {
            .eco-benefits-hero {
                padding: 35px 8px;
            }

            .features-showcase-grid {
                gap: 10px;
            }

            .eco-feature-card {
                padding: 15px 10px;
                border-radius: 14px;
            }

            .feature-icon-container {
                width: 45px;
                height: 45px;
                font-size: 22px;
                margin-bottom: 10px;
                border-radius: 14px;
            }

            .feature-benefit-title {
                font-size: 1rem;
                margin-bottom: 6px;
            }

            .feature-benefit-description {
                font-size: 0.7rem;
                line-height: 1.2;
            }
        }

        /* Additional animation for icons */
        .feature-icon-container::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            background: inherit;
            opacity: 0.3;
            transform: scale(0);
            transition: transform 0.3s ease;
        }

        .eco-feature-card:hover .feature-icon-container::before {
            transform: scale(1.2);
        }

        /* clients list ................................................... */
        .clt-container {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 10%;
        }

        .clt-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .clt-header h1 {
            color: rgb(5, 25, 6);
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .clt-header p {
            color: rgba(32, 57, 38, 0.8);
            font-size: 1.1rem;
        }

        .clients-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .client-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            flex: 0 0 calc(20% - 24px);
            min-width: 200px;
        }

        /* Force 3-2 layout on medium screens */
        @media (max-width: 1200px) {
            .client-card {
                flex: 0 0 calc(33.333% - 20px);
                min-width: 180px;
            }
            
            .client-card:nth-child(4),
            .client-card:nth-child(5) {
                flex: 0 0 calc(50% - 15px);
                max-width: 300px;
            }
            
            .clients-row {
                gap: 25px;
            }
        }

        .client-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .client-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            border-radius: 15px;
            overflow: hidden;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .client-card:hover .client-logo {
            border-color: #28a745;
            box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
        }

        .client-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .client-card:hover .client-logo img {
            transform: scale(1.1);
        }

        .client-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .client-description {
            font-size: 0.9rem;
            color: #6c757d;
            line-height: 1.4;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .client-card {
                flex: 0 0 calc(33.333% - 15px);
                min-width: 160px;
                padding: 20px 15px;
            }
            
            .client-card:nth-child(4),
            .client-card:nth-child(5) {
                flex: 0 0 calc(50% - 10px);
                max-width: 250px;
            }
            
            .clients-row {
                gap: 20px;
            }
            
            .client-logo {
                width: 100px;
                height: 100px;
            }
            
            .client-name {
                font-size: 1.1rem;
            }
            
            .client-description {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            .client-card {
                flex: 0 0 calc(50% - 10px);
                min-width: 140px;
                padding: 15px 10px;
            }
            
            .client-card:nth-child(4),
            .client-card:nth-child(5) {
                flex: 0 0 calc(50% - 10px);
                max-width: none;
            }
            
            .clients-row {
                gap: 15px;
            }
            
            .client-logo {
                width: 80px;
                height: 80px;
                margin-bottom: 15px;
            }
            
            .client-name {
                font-size: 1rem;
                margin-bottom: 6px;
            }
            
            .client-description {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 576px) {
            .clt-header h1 {
                font-size: 2rem;
            }
            
           
            
            .client-card {
                flex: 0 0 calc(50% - 10px);
                min-width: 130px;
                padding: 18px 10px;
            }
            
            .client-card:nth-child(4),
            .client-card:nth-child(5) {
                flex: 0 0 calc(50% - 10px);
            }
            
            .clients-row {
                gap: 12px;
            }
            
            .client-logo {
                width: 70px;
                height: 70px;
            }
            
            .client-name {
                font-size: 0.9rem;
            }
            
            .client-description {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 400px) {
            .client-card {
                flex: 0 0 calc(100% - 10px);
                min-width: auto;
                padding: 20px 15px;
            }
            
            .client-card:nth-child(4),
            .client-card:nth-child(5) {
                flex: 0 0 calc(100% - 10px);
                max-width: none;
            }
            
            .clients-row {
                gap: 15px;
            }
            
            .client-logo {
                width: 90px;
                height: 90px;
            }
            
            .client-name {
                font-size: 1rem;
            }
            
            .client-description {
                font-size: 0.8rem;
            }
        }

        /* Loading animation for images */
        .client-logo img {
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Fallback for missing images */
        .client-logo::before {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #28a745, #20c997);
            border-radius: 10px;
            opacity: 0.1;
        }


/* tsp................................................................................. */
 .tps-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .tps-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .tps-header h1 {
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }

        .tps-header p {
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Benefits Section */
        .main-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid #f0f0f0;
        }

        .benefits-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .image-section {
            position: relative;
        }

        .thermoplastic-image {
            width: 100%;
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            background-image: url("img/tps.JPG");
            background-size: cover;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: #666;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            border: 1px solid #e8e8e8;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .thermoplastic-image:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }

        
        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 12px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .benefit-item:hover {
            background: #e8f5e8;
            border-left-color: #4CAF50;
            transform: translateX(8px);
        }

        .benefit-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .benefit-item:hover .benefit-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .benefit-text {
            font-size: 0.95rem;
            font-weight: 500;
            color: #2c2c2c;
        }

        /* Key Features Section */
        .features-section {
          
            margin-top: 40px;
        }

        .tps-section-title {
            font-size: clamp(1.4rem, 3vw, 1.8rem);
            font-weight: 600;
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }

        .tps-section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #4CAF50, #2E7D32);
            border-radius: 2px;
        }

        .features-grid {
            display: grid;
            justify-content: center;
            align-items: center;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
           
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.05), transparent);
            transition: left 0.6s ease;
        }

        .feature-card:hover::after {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
            border-color: #e8f5e8;
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.4rem;
            color: white;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(180deg) scale(1.1);
        }

        .feature-title {
            font-size: 1rem;
            font-weight: 600;
            color: #1a1a1a;
            margin: 0;
        }

        /* Stats Section */
        .stats-container {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid #f0f0f0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            border-radius: 12px;
            background: #f8f9fa;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .stat-item:hover {
            transform: translateY(-3px);
            background: #e8f5e8;
            border-color: #4CAF50;
        }

        .stat-number {
            font-size: clamp(1.8rem, 4vw, 2.2rem);
            font-weight: 700;
            color: #4CAF50;
            margin-bottom: 6px;
            display: block;
        }

        .stat-label {
            font-size: 0.85rem;
            color: #666;
            font-weight: 500;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) scale(1); 
                opacity: 0.6; 
            }
            50% { 
                transform: translateY(-12px) scale(1.1); 
                opacity: 1; 
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .tps-container {
                padding: 30px 16px;
            }

            .main-section {
                padding: 30px;
            }

            .benefits-showcase {
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .benefits-showcase {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .main-section {
                padding: 24px;
            }

            .stats-container {
                padding: 24px;
            }

            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                gap: 16px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }

        @media (max-width: 640px) {
            .tps-container {
                padding: 20px 12px;
            }

            .main-section {
                padding: 20px;
            }

            .benefit-item {
                padding: 16px;
                gap: 12px;
            }

            .benefit-icon {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }

            .benefit-text {
                font-size: 0.9rem;
            }

            .feature-card {
                padding: 24px 16px;
            }

            .stats-container {
                padding: 20px;
            }

            .stat-item {
                padding: 16px;
            }

            .stats-grid {
                gap: 12px;
            }
        }

        @media (max-width: 480px) {
            .features-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }


          /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
            color: white;
            margin-top: 30px;
            padding: 60px 0;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
            pointer-events: none;
        }

        .footer-container {
            max-width: 100%;
            width: 100%;
            padding: 0 20px; 
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .footer-left {
            text-align: center;
        }

        .footer-brand {
            font-size: 3.5rem;
            font-weight: 700;
            letter-spacing: 3px;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .footer-address {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            opacity: 0.9;
            font-weight: 300;
        }

        .footer-email {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 8px 16px;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .footer-email:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .social-links {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
            font-size: 1.5rem;
        }

        .social-link:hover {
           
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .linkedin {
            /* background: linear-gradient(45deg, #0077b5, #00a0dc); */
             background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOEAAADhCAMAAAAJbSJIAAAAllBMVEUMZMX///8AYcQAWcFDf8nL3PIAWrzQ3vMAYcI0eclZjtAucslAgsz6/v3x9/sgbclOhM8AX8QAYsAAX70AV70AWMLm7vgAXb4sdsw5fsoRbsVmltK6z+iUt+AMZcGDrN3c6fNvnddiltWqwuPA0+r0+vyOrt+lweR9pduuyueUst9Lh81pldd1mtYdbcunxOXO4u7Z4fGRyVlRAAAEKUlEQVR4nO3ce1faMBzG8SblEpSCiUUuQrkMhsCc+v7f3Ko4KjW/yLY0WXOez9mf4Ml3vSW1NYoAAAAAAAAAAAAAAAAAAAAAAAAAAADgYiriIsqU72FURcapGnXHk5aMue+xVCCT6n56x960Z2OpMt8jsozz+Xve0Xqc+h6SXbKzYOeSfex7UBap+J591lThHI3awPxw5KGcVFUj0RayaRrI6UaUj8GTpfA9NivknApkvTC2YdwjC9lc+h6dBWpFB7JFCIXx1FDIRr6HZ0Fq2EkZewjgXNMnLhVH34a+x/fPeMdYOK3/gchvTIFsXf/ZKR+bC+u/DcW1cS/d1f84jFobU+H3ANYXadNU2PU9PAvkd0Ngz/forMgMhU/1P5Xm4h0ZmHQCOAzz68WEPNdsg9iE+ZH4QATeBTApPYqf9PvoKIh99E2qOxQ3jVvf47JHDT5fMl5GAQW+3tNvnF/4N3shwrhJc8Ljw/Q0Q13MJ4GcRc8IORjP99vZfpWlQe2gH3EZx7Gs/4IJAADqQ3DJX/+FM38vqHyKlA5Hhx+Pj49X43468P34CheEiz9Z+pTMlrvFaQ6YbNrblRpKf6vNbHRNKX2yT/kwSVd5XluzGGs//Ew9NfIGS/RYs3X2yUGzp7dpnMYu+zPql1mbp46f+XxeSCkVxrpt8+bmWJgJOTPeYP7m5QkWi4Wye0d94t3m3sNmtFao5OyLvle7zPnRaKlQCb6+IDBfXvddJ1oq5BH5WE7JXd/xwWilUKnJpYGM9a7dPk5mpfCWP18cmO+okdOtaKVwYHxm5ZP1wOWNPBuFneUfBTK2dHkzyEbhwfirco3NxOF+aqPw8rPMbzuHV34bhX+h4e6q6KnQ4ZM6ngrZyNlG9FXo7hfMvgp7zt7o8FXIDq52U2+FznbTKgovmgAsalq4mB0mQqjJYfvler98o6sWhevuYPh2C5jz4WD1ReMPR4soi4W91dmtXy7MK469o7mpvcLn8nRaSWPi9PzH/++FCXvW3LuXpoXxi6MllK1tqHtGLBMd0zccLYNtFR60W8T0wkqv7yTQVuGTfpfLuvRXkms3sxo7hQlx/yy7NayOO3Uq3MXExY148PFY6OZyYafwihqsXNJfGteoMCGXQoYfzxo1KmxSO2kkJvTLcXUq3BreraFnp3UqNLwT3aJPpnUqPNBjTV+CKDScFVv0t+pUaLiytegXq1BoCQoLKNRDYfVQWEChHgqrh8ICCvVQWD0UFlCoh8LqobCAQj0UVg+FBRTqobB6KCygUA+F1UNhAYV6KKweCgso1ENh9VBYQKEeCquHwkKAhe1SIf2UoaFwSP+/dB29FtTvUsbnH+Q3VxTDmxOq+zffskqJiOtFpZda+OV/M6uQKepLof0NWAAAAAAAAAAAAAAAAAAAAAAAAAAAgAr8Aj5RWY0PDbn2AAAAAElFTkSuQmCC");
            background-size: cover;
        }
     
        .instagram {
           background-image: url("data:image/jpeg;base64,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");
           background-size: cover;
        }

        .footer-right {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Map Section */
        .map-section {
            margin-top: 4rem;
            height: 300px;
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .map-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .map-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            padding: 1rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            z-index: 100;
            max-width: 300px;
        }

        .map-overlay h3 {
            color: #333;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .map-overlay p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* Loading animation */
        .loading-animation {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1000;
            display: none;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #ecf0f1;
            border-top: 5px solid #27ae60;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .composting-types {
                flex-direction: column;
            }
            
            .product-card {
                max-width: 100%;
            }
            
            .slider-container {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .info-content {
                padding: 30px;
            }
            
            .info-content h2 {
                font-size: 1.8rem;
            }
            
            .selection-header h2, .slider-header h2 {
                font-size: 2rem;
            }
            
            .product-content {
                padding: 20px;
            }
            
            .product-content h3 {
                font-size: 1.4rem;
            }
            
            .slider-container {
                height: 350px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-brand {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 500px) {
            .info-content {
                padding: 20px;
            }
            
            .info-content h2 {
                font-size: 1.6rem;
            }
            
            .selection-header h2, .slider-header h2 {
                font-size: 1.8rem;
            }
            
            .slider-container {
                height: 300px;
            }
            
            .slide-caption h3 {
                font-size: 1.2rem;
            }
        }
