:root {
  --primary-color: #166534;
  --secondary-color: #40724b;
  --text-light: #ffffff;
  --text-dark: #333333;
  --hover-color: #e9f3ec;
  --link-hover-color: #a2fcbd;
  --footer-bg: #166534;
  --footer-section-border: rgba(255, 255, 255, 0.2);
  --icon-bg-hover: rgba(255, 255, 255, 0.2);
  --facebook-color: #3b5998;
  --twitter-color: #0f1e27;
  --pinterest-color: #E60023;
  --youtube-color: #FF0000;
  --instagram-color: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  --linkedin-color: #0077B5;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background: #0f5937;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0 10px;
    border-bottom: 2px solid #215d0e;
}
.navc1 {
    display: flex;
    align-items: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    gap: 12px;
}
.navc1 img {
    width: 55px;
    margin: auto;
    border-radius: 50%;
}
.web-name {
    margin-top: 10px;
}
.web-name p {
    font-size: clamp(0.8rem, 2vw, 1rem);
    white-space: nowrap;
    margin-top: 2px;
}
.navc2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.navc2 a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    padding: 4px 5px;
}
.navc2 a:hover{
    color: #cfe604;
}
.material-icons {
    margin-top: 8px;
    font-size: medium;
}
.top-headder {
    position: fixed;
    top: 60px;
    width: 100%;
    height: 50px;
    background-color: white;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-bottom: 4px solid #0f5937;
}
.top-container {
    width: 80%;
    margin: auto;
}
.phone_div1 form {
    display: flex;
    justify-content: end;
    align-items: center;
}
.form-label-f {
    display: block;
    margin-bottom: 2px;
    color: #000000;
    font-size: 11px;
    font-weight: bold;
}
#menu-mobile {
    display: none;
}


.close-btn {
position: absolute;
    top: 10px;
    right: 0;
    background: transparent;
    border: none;
    font-size: 31px;
    color: var(--text-light);
    cursor: pointer;
    display: none;
}

.close-btn:hover {
    color: #f44336;
}
.form-control-f {
    width: auto;
    padding: 14px 21px;
    margin-bottom: 4px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-left: 6px;
    height: 5px;
    color: black;
    font-size: 12px;
}
.btn-submit-f {
    margin-left: 4px;
    width: auto;
    padding: 2px 9px;
    background-color: #094193;
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    border-width: thick;
    margin-bottom: 5px;
    font-size: 14px;
}
@media only screen and (max-width: 800px) {
    #content {
        display: none;
    }
}
@media (max-width: 768px) {
    .phone_div1 {
        margin-right: 2px;
        /* width: 350px; */
    }
        .form-label-f {
        font-size: 9px;
        font-weight: bold;
        display: none;
    }
    .form-control-f{
        margin-bottom: 2px;
    }
    #menu-mobile {
        width: auto;
        background: linear-gradient(45deg, #0b392c, var(--footer-bg));
        z-index: 1000;
        position: fixed;
        box-shadow: 3px 3px 3px rgb(9, 83, 9);
        padding: 10px 20px;
        right: 0;
        height: -webkit-fill-available;
        top: 0;
    }
    #menu-mobile p a {
        color: white;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        text-decoration: none;
        color: white;
    }
    #menu-mobile p {
        text-align: justify;
        padding: 14px 9px;
    }
    .material-icons.mobile-menu-icon {
        display: flex !important;
        margin: auto;
        font-size: 2rem;
        background-color: var(--text-light);
        padding: 0 0.3rem;
        border-radius: 5px;
        animation: high 2s ease-in-out infinite;
        margin-right: 0.8em;
        border: 1px solid;
    }
    .close-btn {
position: absolute;
    top: 10px;
    right: 0;
    background: transparent;
    border: none;
    font-size: 31px;
    color: var(--text-light);
    cursor: pointer;
    display: block;
}

.close-btn:hover {
    color: #f44336;
}
}