* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #1a2a1f;
            scroll-behavior: smooth;
        }
        
        .container { 
            margin: 0 auto;
            padding: 0 24px;
        }
        .container_main{
            margin-top: 100px;
            padding: 30px;
            min-height: 600px;
            height: 99%;
            width: 100%;
        }
        /* Glassmorphism Navbar */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            transition: all 0.3s ease;
            border-top:none;
            padding: 30px;
            padding-top:0px;
            padding-bottom:0px;
        }

        .header-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            flex-wrap: wrap;
        }

        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(46,125,50,0.92), rgba(27,94,32,0.88)), url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?w=1600') center/cover fixed;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 0;
            padding-top: 80px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.95;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .btn {
            display: inline-block;
            background: #ffeb3b;
            color: #2e7d32;
            padding: 14px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            animation: fadeInUp 1s ease 0.4s both;
        }

        .btn:hover {
            transform: translateY(-3px);
            background: #fdd835;
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
        }

        /* Section Styles */
        section {
            padding: 50px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #2e7d32, #66bb6a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Vision Mission Cards */
        .vm-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
            transition: all 0.4s;
            border: 1px solid rgba(46,125,66,0.2);
        }

        .glass-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 40px -15px rgba(46,125,64,0.2);
        }

        .card-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .glass-card h3 {
            font-size: 1.8rem;
            color: #2e7d32;
            margin-bottom: 1rem;
        }

        /* Values Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .value-item {
            background: linear-gradient(145deg, #f1f8e9, #e8f5e9);
            padding: 25px 15px;
            text-align: center;
            border-radius: 20px;
            font-weight: 600;
            transition: 0.3s;
            cursor: default;
        }

        .value-item:hover {
            transform: scale(1.03);
            background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #1b5e20, #2e7d32);
            color: white;
            border-radius: 40px;
            margin: 40px;
            padding: 60px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
        }

        /* Footer */
        footer {
            background: #0a2f0a;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        .social-links a {
            color: white;
            margin: 0 12px;
            font-size: 1.5rem;
            transition: 0.3s;
        }

        .social-links a:hover {
            color: #ffeb3b;
            transform: translateY(-3px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            
            .hero h2 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .container {
                padding: 0 20px;
            }
        } 
        /* logo css */
.logo {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0 1rem;
}

#logo {
  display: inline-flex;
  flex-shrink: 0;
  grid-row: span 2;
}

.logo_img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 20px;
}

.logo h1 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
  white-space: nowrap;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  margin-top: 6px;
}

.logo p {
  margin: 0;
  margin-top: 4px;
  font-size: 1rem;
  color: #558b2f;
  font-weight: 500;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  white-space: nowrap;
}

@media (max-width: 550px) {
  .logo_img {
    width: 50px;
    height: 50px;
  }
  
  .logo h1 {
    font-size: 1.0rem;
    white-space: normal;
  }
  
  .logo p {
    font-size: 0.85rem;
    white-space: normal;
  }
  
  .logo {
    gap: 0 0.5rem;
  }
}
/***  end****/

/***menu css*****/
/* Navigation Menu CSS */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: #2e7d32;
}

.hamburger-trigger {
    cursor: pointer;
    padding: 0.5rem 1rem;
    display: inline-block;
}

.hamburger-trigger i {
    font-size: 1.5rem;
    color: #2e7d32;
}

nav {
    position: relative;
}

#nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

#nav-menu li a {
    text-decoration: none;
    color: #2c3e2f;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: 0.3s;
    display: block;
}

#nav-menu li a:hover {
    color: #2e7d32;
}

/* Desktop Dropdown Styling */
.desktop-only-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    z-index: 100;
    list-style: none;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    padding: 0.6rem 1.2rem;
    white-space: nowrap;
}

.desktop-only-dropdown:hover .dropdown-menu {
    display: block;
}

/* 🔥 LARGE DEVICES (Desktop) */
@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
    
    #nav-menu {
        display: flex;
    }
    
    /* Home aur About visible */
    #nav-menu li:first-child,
    #nav-menu li:nth-child(2) {
        display: block;
    }
    
    /* Desktop dropdown trigger visible */
    .desktop-only-dropdown {
        display: block;
    }
    
    /* Mobile specific elements hide karo */
    .mobile-all-items {
        display: none;
    }
}

/* 🔥 SMALL DEVICES (Mobile) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .hamburger-trigger {
        display: none;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        border-radius: 12px;
        display: none;
        z-index: 200;
    }
    
    nav.active {
        display: block;
    }
    
    #nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        display: flex !important;
    }
    
    #nav-menu li {
        display: block !important;  /* ✅ Sabhi items dikhein */
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    #nav-menu li:last-child {
        border-bottom: none;
    }
    
    #nav-menu li a {
        padding: 0.8rem 1rem;
    }
    
    /* Dropdown menu mobile mein flat dikhega */
    .dropdown-menu {
        display: block !important;
        position: static;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: #f9f9f9;
    }
    
    .dropdown-menu li {
        padding-left: 1.5rem;
        border-bottom: none !important;
    }
    
    .dropdown-menu li a {
        padding: 0.6rem 1rem;
    }
    
    .desktop-only-dropdown {
        display: block;
        position: static;
    }
}
/* ========= CONTACT PAGE SPECIFIC STYLES ========= */
        .contact-hero {
            background: linear-gradient(105deg, #f0f7e8 0%, #e2f0da 100%);
            border-radius: 48px;
            padding: 48px 40px;
            margin-bottom: 48px;
            text-align: center;
            box-shadow: 0 10px 25px -12px rgba(0,0,0,0.1);
        }
        .contact-hero h2 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #236b27, #4caf50);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 12px;
        }
        .contact-hero p {
            font-size: 1.2rem;
            color: #2d4a2b;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            margin-bottom: 60px;
        }
        .info-card {
            background: #ffffff;
            border-radius: 36px;
            box-shadow: 0 20px 35px -12px rgba(0, 32, 0, 0.08);
            padding: 32px 28px;
            transition: transform 0.2s ease, box-shadow 0.2s;
            border: 1px solid rgba(76, 175, 80, 0.15);
        }
        .info-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 40px -16px rgba(46,125,64,0.2);
        }
        .info-section-title {
            font-size: 1.9rem;
            font-weight: 700;
            color: #1b4d1f;
            margin-bottom: 28px;
            border-left: 5px solid #4caf50;
            padding-left: 20px;
        }
        .contact-detail-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            margin-bottom: 32px;
        }
        .contact-icon {
            background: #eaf9e6;
            width: 54px;
            height: 54px;
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            color: #2e7d32;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
        }
        .contact-text h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1c3b1a;
            margin-bottom: 8px;
        }
        .contact-text p, .contact-text address {
            font-style: normal;
            color: #3e5a3b;
            line-height: 1.5;
            font-weight: 500;
        }
        .office-address {
            background: #f9fff7;
            padding: 12px 18px;
            border-radius: 24px;
            margin-top: 8px;
        }
        .map-placeholder {
            background: #eef4ea;
            border-radius: 32px;
            padding: 20px;
            margin-top: 28px;
            text-align: center;
            border: 1px dashed #9bc48f;
        }
        .social-follow {
            margin-top: 28px;
            padding-top: 20px;
            border-top: 2px dotted #cde2c7;
        }
        .social-follow h4 {
            font-size: 1.2rem;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .coming-soon-badge {
            background: #2e7d32;
            color: white;
            border-radius: 40px;
            padding: 4px 14px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .mini-social-icons {
            display: flex;
            gap: 18px;
            margin-top: 12px;
        }
        .mini-social-icons a {
            background: #eef3ec;
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 30px;
            color: #2e6b2a;
            font-size: 1.2rem;
            transition: 0.2s;
        }
        .mini-social-icons a:hover {
            background: #c8e6c9;
            transform: translateY(-3px);
            color: #145214;
        }
        .form-card {
            background: #ffffff;
            border-radius: 36px;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.06);
            padding: 32px 32px;
            border: 1px solid rgba(76, 175, 80, 0.2);
        }
        .form-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1b4d1f;
            margin-bottom: 8px;
        }
        .form-sub {
            color: #558b2f;
            margin-bottom: 28px;
            font-weight: 500;
        }
        .input-group {
            margin-bottom: 22px;
        }
        .input-group input, .input-group textarea {
            width: 100%;
            padding: 16px 20px;
            font-family: 'Inter', sans-serif;
            background: #fafef8;
            border: 1px solid #cfdfca;
            border-radius: 28px;
            font-size: 1rem;
            transition: 0.2s;
            outline: none;
        }
        .input-group input:focus, .input-group textarea:focus {
            border-color: #4caf50;
            box-shadow: 0 0 0 3px rgba(76,175,80,0.2);
            background: white;
        }
        .submit-btn {
            background: linear-gradient(105deg, #2e7d32, #439a46);
            border: none;
            color: white;
            font-weight: 700;
            font-size: 1rem;
            padding: 14px 32px;
            border-radius: 60px;
            cursor: pointer;
            width: 100%;
            transition: 0.2s;
            font-family: 'Inter', sans-serif;
            box-shadow: 0 6px 14px rgba(46,125,50,0.25);
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            background: linear-gradient(105deg, #1f6423, #327a36);
            box-shadow: 0 10px 20px rgba(46,125,50,0.3);
        }
        .note-msg {
            font-size: 0.75rem;
            text-align: center;
            margin-top: 18px;
            color: #6f8f6a;
        }
        .pan-india {
            background: #e9f3e4;
            border-radius: 28px;
            padding: 20px 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin-top: 25px;
        }
        .footer-note {
            text-align: center;
            margin-top: 25px;
        }
        @media (max-width: 900px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .contact-hero h2 {
                font-size: 2rem;
            }
            .container_main {
                padding: 25px 20px;
                margin-top: 100px;
            }
            .info-section-title {
                font-size: 1.6rem;
            }
        }
/***end`***/


