 <style>
                      :root{
      --green:#006400;
      --green-2:#006d00;
      --green-3:#004d00;
      --accent:#ffd700;
      --accent-2:#ffe600;
      --bg:#f7f7f7;
    }
      
        /* body */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            background-color: white;
            color: #004d26;
        }

        .contact-head {
            background: #008751;
            color: white;
            padding: 2rem 1rem;
            text-align: center;
            animation: fadeInDown 1s ease-in-out;
        }

       .contact-head h1 {
            margin: 0;
            font-size: 2.2rem;
        }

        .contact-head p {
            margin-top: 0.5rem;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            padding: 2rem;
            max-width: 1400px;
            margin: auto;
        }

        .contact-info {
            flex: 1 1 350px;
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border: 2px solid #008751;
            animation: fadeInLeft 1.2s ease-in-out;
        }

        .contact-info h2 {
            margin-bottom: 1rem;
            color: #008751;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1rem 0;
            font-size: 1.05rem;
        }

        .info-item i {
            background: #008751;
            color: white;
            padding: 0.8rem;
            border-radius: 50%;
            font-size: 1.2rem;
        }

        .map-container {
            flex: 1 1 350px;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid #008751;
            animation: fadeInRight 1.2s ease-in-out;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 350px;
            border: none;
        }

        /* Animations */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        footer {
            background-color: #0a6b3e;
            color: white;
            text-align: center;
            padding: 1rem;
            font-size: 0.9rem;
        }

        /* ==========Responsive============ */
        @media (max-width: 768px){
      .nav-toggle{ display:block; }
      .menu{
        position:absolute; 
        left:0; right:0; 
        top:5%;
        flex-direction:column; 
        align-items:stretch;
         gap:0;
        background:var(--green);
         padding:.5rem;
        max-height:0; 
        overflow:hidden; 
        transition:max-height .35s ease;
        z-index:2;
      }
      .menu.open{
         max-height:80vh; 
        }
      .menu > li > a{ 
        border-radius:8px; 
      }
      .menu > li:hover > .submenu{
         max-height:0; 
         opacity:0;
          pointer-events:none;
         }
        }
        /* Mobile: Make map full width below */
        
        @media (max-width: 768px) {
            .contact-container {
                flex-direction: column;
            }
            .map-container {
                order: 2;
                width: 100%;
            }
            .contact-info {
                order: 1;
            }
        }

        /* Extra large screen adjustments */
        @media (min-width: 1600px) {
            header h1 {
                font-size: 2.8rem;
            }
            .contact-info {
                font-size: 1.2rem;
                padding: 3rem;
            }
        }
    </style>