.containers {
      display: flex;
      height: 100%;
      margin: 0;
      padding: 0;
    }
    h4{
     font-family: "Poppins", sans-serif;
      font-size: 12px;
      color: #877777;
      margin: 0 0 10px 20px;
    }
    .sidebar {
      width: 220px;
      background: #f6f9f6;
      padding: 20px 15px;
      border-right: 1px solid #eee;
      transition: transform 0.3s ease;
    }

    .sidebar .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 30px;
    }
    .sidebar .logo img{
      width: 50px;
      height: 50px;
      border-radius: 50%;
     
    }
     .sidebar .logo h3{
      font-family: "Poppins", sans-serif;
      color: #2d6a4f;
      font-size: 24px;
       font-weight: 400;
    }

    .sidebar nav ul {
      list-style: none;
      padding: 0;
    }
    .sidebar nav ul  a {
          text-decoration: none;
          color: inherit;
        } 
    .sidebar nav ul li {
      padding: 12px 5px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #2d6a4f;
      font-size: 15px;
      cursor: pointer;
    }
    .main-content {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
.icons {
      width: 30px;
      height: 30px;
      
    }
    .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      background: transparent;
      
    }

    .topbar .logo-inline {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin:auto;
    }
    .topbar .logo-inline img {
      width: 85px;
      height: 85px;
      border-radius: 50%;
    }
    
    .topbar .top-buttons button {
      margin-left: 10px;
      padding: 8px 14px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
    }

    .topbar .contact {
      background-color: #ffffff;
      border: 1px solid #ccc;
    }

    .topbar .buy {
      background-color: #38b000;
      color: white;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
   .hamburger img{
      width: 30px;
      height: 30px;
      display: block;
      margin: auto;
   }
/* --------------- */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8fffe;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Section */
        .header {
            background: linear-gradient(135deg, #22c55e, #16a34a);
            color: white;
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 1;
        }

        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.3s both;
            position: relative;
            z-index: 1;
        }

        /* Founders Section */
        .founders-section {
            padding: 80px 0;
            background: #f0fdf4;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #16a34a;
            margin-bottom: 3rem;
            animation: scaleIn 0.8s ease-out;
        }

        .founders-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .founder-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
            border: 2px solid #dcfce7;
            transition: all 0.4s ease;
            animation: slideInUp 0.8s ease-out;
            position: relative;
            overflow: hidden;
        }

        .founder-card:nth-child(1) { animation-delay: 0.2s; }
        .founder-card:nth-child(2) { animation-delay: 0.4s; }
        .founder-card:nth-child(3) { animation-delay: 0.6s; }

        .founder-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.05), transparent);
            transition: left 0.6s ease;
        }

        .founder-card:hover::before {
            left: 100%;
        }

        .founder-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
            border-color: #22c55e;
        }

        .founder-avatar {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: bounce 2s ease-in-out infinite;
            display: inline-block;
        }

        .founder-card:nth-child(2) .founder-avatar {
            animation-delay: 0.5s;
        }

        .founder-card:nth-child(3) .founder-avatar {
            animation-delay: 1s;
        }

        .founder-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: #16a34a;
            margin-bottom: 0.5rem;
        }

        .founder-role {
            font-size: 1rem;
            color: #059669;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .founder-education {
            font-size: 0.9rem;
            color: #6b7280;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .founder-bio {
            font-size: 0.95rem;
            color: #4b5563;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .founder-achievement {
            background: rgba(34, 197, 94, 0.1);
            padding: 0.8rem;
            border-radius: 8px;
            font-size: 0.9rem;
            color: #16a34a;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-info {
            animation: slideInLeft 0.8s ease-out;
        }

        .contact-form {
            animation: slideInRight 0.8s ease-out;
        }

        .contact-item {
            background: #f0fdf4;
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .contact-item:hover {
            transform: translateX(10px);
            border-color: #22c55e;
            box-shadow: 0 5px 15px rgba(34, 197, 94, 0.2);
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            color: #16a34a;
        }

        .contact-details h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #16a34a;
            margin-bottom: 0.2rem;
        }

        .contact-details p {
            color: #6b7280;
            font-size: 0.9rem;
        }

        .why-choose {
            background: rgba(34, 197, 94, 0.1);
            padding: 2rem;
            border-radius: 12px;
            margin-top: 2rem;
        }

        .why-choose h4 {
            color: #16a34a;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .why-choose ul {
            list-style: none;
        }

        .why-choose li {
            color: #4b5563;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: #374151;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #22c55e;
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
            transform: translateY(-2px);
        }

        .submit-btn {
            background: linear-gradient(135deg, #22c55e, #16a34a);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #16a34a, #22c55e);
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            animation: pulse 2s ease-in-out infinite;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 1rem 2rem;
            border: 2px solid white;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-btn.primary {
            background: white;
            color: #16a34a;
        }

        .cta-btn.secondary {
            background: transparent;
            color: white;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .cta-btn.primary:hover {
            background: #f0fdf4;
        }

        .cta-btn.secondary:hover {
            background: white;
            color: #16a34a;
        }

        /* Footer */
        .footer {
            background: #1f2937;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        .footer p {
            margin-bottom: 0.5rem;
        }

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

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }

            .header p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .founders-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .container {
                padding: 0 15px;
            }

            .founders-section,
            .contact-section {
                padding: 50px 0;
            }

            .founder-card {
                padding: 1.5rem;
            }

            .founder-avatar {
                font-size: 3rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-btn {
                width: 80%;
                text-align: center;
            }
        }

        @media (max-width: 730px) {
            .header {
                padding: 40px 0;
            }

            .header h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .founder-card {
                padding: 1rem;
            }

            .founder-name {
                font-size: 1.3rem;
            }

            .contact-item {
                padding: 1rem;
            }
            .containers {
        flex-direction: column;
      }

      .sidebar {
        position: absolute;
        height: 100vh;
        top: 0;
        left: 0;
        background: #f6f9f6;
        transform: translateX(-100%);
        z-index: 1000;
      }

      .sidebar.active {
        transform: translateX(0);
      }

      .topbar {
        flex-direction: row;
        justify-content: space-between;
      }

      .hamburger {
        display: flex;
      }
        }