body {
    margin: 0;
    padding: 0;
    background-color: #000000; /* Background color for the body */
}

html {
    line-height: normal;
}

.popup{
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 4;

}

.popup-content{
    height: 250px;
    width: 500px;
    background: #fff;
    padding: 20px;
    border-radius:20px;
    position: relative;
  
}

.close{
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    box-shadow: 6px 6px 29px -4px rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

.message{
    font-family: "Betha";
    color: rgb(0, 0, 0);
    font-size: 20px;
    margin-top: 60px;
}

.logo-two{
    height: 60px;
    width: 60px;

}

* {
    margin: 0;
    padding: 0;
}

.container {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: 0; /* Content sits below the panel */
}

@font-face {
    font-family: "Betha";
    src: url("./Font/Betha.woff");
}

@font-face {
    font-family: "Anurati";
    src: url("./Font/hemi\ head\ bd\ it.otf");
}

.navbar .logo {
    position: absolute;
    width: 140px;
    cursor: pointer;
    z-index: 2; /* Logo is above the panel */
    margin-left: 20px; /* Adjust the margin as needed */
    margin-top: 5px;
}

.navbar p {
    position: absolute;
    display: inline-block;
    font-family: "Betha";
    color: rgb(255, 255, 255);
    font-size: 30px;
    margin-top: 30px;
    margin-left: 150px;
}

.navbar p br + .inline-space {
    margin-right: 80px; /* Adjust this value as needed */
}

.navbar p br + .inline-space1 {
    margin-right: 100px; /* Adjust this value as needed */
}

.navbar1 ul {
    float: right;
    list-style-type: none;
    z-index: 2; /* Navbar items are above the panel */
    margin-right: 100px;
}

.navbar1 ul li {
    display: inline-block;
    line-height: 80px;
    padding: 30px 40px;
}
    
.navbar1 ul li a {
    position: fixed;
    font-family: "Betha";
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    
}

.navbar {
    background-color: rgb(24, 70, 24);
    width: 100%;
    height: 150px;
    align-items: center;
    z-index: 2; /* Navbar is above the panel */
}

.navbar ul {
    float: right;
    list-style-type: none;
    z-index: 2; /* Navbar items are above the panel */
    margin-right: 40px;
}

.navbar ul li {
    display: inline-block;
    line-height: 80px;
    padding: 30px 40px;
}
    
.navbar ul li a {
    position: relative;
    font-family: "Betha";
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    
}

.custom-close{
    position: relative;
    top: 40px; /* Move the SVG 10px down from its original position */
    left: 40px; /* Move the SVG 20px to the right from its original position */
}

.custom-menu{
    position: relative;
    top: 12px; 
    left: 60px; 
    display: none;
}

.sidebar{
    position: fixed;
    top: 0;
    right: -100px;
    height: 100% ;/* Full height */
    width: 200px;
    z-index: 2;
    background-color: rgb(0, 0, 0);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(8, 230, 75, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
}

.sidebar li{
    width: 100%;
}

.sidebar a{
    width: 100%;
}

@media (max-width: 1310px) {
    .custom-menu {
        display: block;
    }

    .navbar ul{
        display: flex;
    }

    .hideOnMobile {
        display: none;
    }

    .new-section {
        position: absolute;
        flex-direction: column;
        padding-bottom: 400px;
    }
    
    .new-section section.left{
        
        flex-basis: 50%;
        min-width: 320px;
        border-right: none !important;
        height: 100%;
        width: 100%;
        border-bottom: solid 10px white;
    }
    
    .new-section section.right{
        flex-basis: 60%;
        padding-left: 15px;
    }
}

@media (max-width: 570px) {

    .new-section{
        position: absolute !important;
        width: 100%;
        height: 100%;
    }

    .navbar{
        position: absolute;
    }

    .container {
        height: 100% !important;
    }

    .navbar .logo {
        position: absolute;
        width: 140px;
        cursor: pointer;
        z-index: 2; /* Logo is above the panel */
        margin-left: -20px; /* Adjust the margin as needed */
        margin-top: 5px;
    }

    .navbar p {
        margin-left: 90px;
    }

    .navbar p br + .inline-space {
        margin-right: 0px; /* Adjust this value as needed */
    }
    
    .navbar p br + .inline-space1 {
        margin-right: 0px; /* Adjust this value as needed */
    }

    footer{
        top: 1250px !important;
    }

    .footerNav ul{
        flex-direction: column;
    } 

    .footerNav ul li{
        width:100%;
        text-align: center;
        margin: 10px 0px;
    }

}

@media (max-width: 320px) {
    .navbar {
        width: 400px;
    }

    .new-section {
        width: 400px;
    }

    footer{
        width: 400px !important;
    }
}


.navbar ul li a:hover{
    color: green;
    transition: .3s;
}

#icon {
    max-width: 100px;
    height: auto;
    cursor: pointer;
}

.new-section {
    position: relative;
    display: flex;
    justify-content: space-between;
    background-color: #000000;
    text-align: center; 
    height: 500px;
    z-index: 1;
    top: 270px;
}

footer{
    background-color: rgb(18, 80, 18);    
    position: relative;
    width: 100%;
    top: 405px;
}

.new-section section.col{
    display: flex;
    flex-direction: column;
}

.new-section section.left{
    background-color: rgb(24, 70, 24);
    flex-basis: 50%;
    min-width: 320px;
    margin-right: 20px;
    border-right: solid 10px rgb(255, 255, 255);
}

.new-section section.right{
    background-color: rgb(0, 0, 0);
    flex-basis: 50%;
    padding-right: 55px;
}

section.left .contactTitle h2{
    font-family: "Betha";
    position: relative;
    font-size: 25px;
    color: #ddd;
    display: inline-block;  
    margin-bottom: 40px;
    top: 30px;
    margin-left: 15px;
}

section.left .contactTitle h2::before{
    content: '';
    position: absolute;
    width: 25%;
    height: 3px;
    background-color: green;
    top: calc(120% - 1px);
    left: 0;
}

section.left .contactTitle p{
    font-family: "Anurati";
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1.2;
    padding-bottom: 22px;
    margin-top: 20px;
}

section.left .contactInfo{
    text-align: left;
}

.contactInfo .iconGroup{
    display: flex;
    align-items: center;
    margin: 50px 50px;
    margin-top: 25px;
}

.iconGroup .icon{
    width: 45px;
    height: 45px;
    border: 2px solid green;
    border-radius: 50%;
    position: absolute;
}

.iconGroup .icon i{
    font-size: 20px;
    color: #ddd;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.iconGroup .details span{
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #fdfdfd;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    margin-left: 60px;
    margin-top: 1px;
    margin-bottom: 2px;
}

.iconGroup .details span:nth-child(1){
    text-transform: uppercase;
    color: green;
    font-family: "Betha";
    font-size: 16px;
}

section.left .socialMedia{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: -30px 0px 20px;
    margin-left: 30px;
}

.socialMedia a{
    width: 35px;
    height: 35px;
    text-decoration: none;
    text-align: center;
    margin-right: 15px;
    border-radius: 5px;
    background-color: green;
    transition: 0.4s;
}

.socialMedia a i{
    color: rgb(255, 255, 255);
    font-size: 18px;
    line-height: 35px;
    border: 1px solid transparent;
    transition-delay: 0.4s;
}

.socialMedia a:hover{
    transform: translateY(-5px);
    background-color: #000000;
    color: green;
    border: 1px solid green;
}

.socialMedia a:hover i{
    color: green;
}

.new-section section.right .messageForm{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 60px;
    margin-right: -40px;
    padding-right: 50px;    
}

.new-section section.right .inputGroup{
    margin-bottom: 25px;
    position: relative;
    left: 22px;
}

.messageForm .halfWidth{
    flex-basis: 48%;
}

.messageForm .fullWidth{
    flex-basis: 100%;
}

.messageForm input{
    font-family: "Anurati";
    width: 100%;
    font-size: 18px;
    padding: 2px 0px;
    background-color: transparent;
    color: #ffffff;
    border-bottom: 2px solid #666;
    border-top: transparent;
    border-left: transparent;
    border-right: transparent;
}

.messageForm textarea{
    font-family: "Anurati";
    width: 100%;
    font-size: 18px;
    padding: 2px 0px;
    background-color: transparent;
    color: #ffffff;
    border-width: 2px;
    border-radius: 10px;
}

.messageForm textarea{
    resize: none;
    height: 220px;
    display: block;
}

textarea::-webkit-scrollbar{
    width: 5px;
}

textarea::-webkit-scrollbar-track{
    background-color: #1e1e1e;
    border-radius: 15px;
}

textarea::-webkit-scrollbar-thumb{
    background-color: green;
    border-radius: 15px;
}

.inputGroup label{
    font-family: "Betha";
    position: absolute;
    left: 10px;
    margin-top: 10px;
    color: #888;
    font-size: 15px;
    transition: 0.4s;
    pointer-events: none;
}

.inputGroup:nth-child(4) label{
    top: 2px;
}

.inputGroup input:focus ~ label,
.inputGroup input:valid ~ label,
.inputGroup textarea:focus ~ label,
.inputGroup textarea:valid ~ label,
.inputGroup input:placeholder-shown ~ label,
.inputGroup textarea:placeholder-shown ~ label {
    transform: translateY(-30px);
    font-size: 16px;
    color: green;
}

.inputGroup button{
    font-family: "Betha";
    padding: 8px 16px;
    font-size: 18px;
    background-color: rgb(255, 255, 255);
    color: #154e1c;
    border: 1px solid transparent;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

.inputGroup button:hover{
    background-color: #353333;
    color: rgb(25, 78, 25);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgb(18, 80, 18);
}

.footerContainer {
    width: 100%;
}

.footerNav{
    padding: 20px 0;
}

.footerNav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
}

.footerNav ul li a{
    color:white;
    margin: 20px;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.7;
    transition: 0.5s;
    font-family: "Betha";
}

.footerNav ul li a:hover{
    opacity: 1;
}

.footerBottom{
    background-color: #142e12;
    padding: 10px;
    text-align: center;
}

.footerBottom p{
    font-family: "Anurati";
    color: white;
    font-size: 15px;
}

