*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, Arial, sans-serif;
}

.nav-container{
  border-bottom: 1px solid #b6dde7;
  background-color: white;

}

@media Screen and (max-width:992px) {
  .nav-container,.nav2container{
  display: none; 
  }
}

#bnav{
  display: none;
}

@media Screen and (max-width:992px) {
 #bnav{
  display: block;
 }
  
}

.topnav{
  display: flex;
  max-width: 1200px;
  margin: 0px auto;
  padding: 20px;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.topchild{
  display: flex;
  align-items: center;
  font-size: 14px;
}

.topchild img{
  margin-right: 10px;
}

.topchild p{
  margin: 0;
  color: rgb(114, 114, 114);
}
.topchild span{
  color: rgb(196, 196, 196);
}

/* the styling of the second nav satrts here */

.nav2container{
  font-size: 14px;
  background-color: rgb(3, 110, 30);
  padding: 0px;
  margin: 0px;
  /* background-color: white; */
  /* position:sticky; */
 
}
.nav2{
  display: flex;
  max-width: 1100px;
  margin: 0px auto;
  align-items: center;
  padding: 5px 0px;

}

.nav2list{
  display: flex;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.nav2list li {
  position: relative;
}

.nav2list li a{
  color:rgb(78, 78, 78);
  text-decoration: none;
  color: white;
padding: 15px;
}

.drop-container{
  display: none;
  box-shadow: 0px 7px 30px -20px;
}

.dropdowne{
  position: absolute;
  background-color: rgb(3, 163, 88);
  z-index: 999;
  top: 30px;
  list-style-type: none;
  animation: drop .5s linear ;
  border-radius: 5px;
} 

@keyframes drop{
  0%{
    margin-top: 30px;
  }
  25%{
    margin-top: 15px;
  }
  50%{
    margin-top: 0px;
  }
}

.dropdowne ul{
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.dropdowne li{
  padding: 0px;
  width: 200px;
}

.dropdowne li a{
  color: rgb(255, 255, 255);
  padding: 10px 15px;
  display: block;
border-bottom: 1px solid #f1f1f1;

}

.dropdowne li a:hover{
  background-color: #d2e1f5;
}

.enroll{
  margin-left: auto;
}

.nav2list li:hover .drop-container{
  display: block;
}

.about{
  position: absolute;
  background-color: white;

  display: flex;
  border-top: 2px solid white;
  border-radius: 10px;
  top: 33px;
  animation: drop .5s linear ;
  display: none;
  box-shadow: 0px 7px 30px -20px;
  padding: 20px;
  z-index: 999;
}

@keyframes drop{
  0%{
    margin-top: 30px;
  }
  25%{
    margin-top: 15px;
  }
  50%{
    margin-top: 0px;
  }
}

.about-con{
  display: flex;
}

.ab-left{
  width: 300px;
  padding: 20px;
}


.ab-left h1{
font-weight: lighter;
font-size: 24px;
}

.pee{
  color: #c0c0c0;
  margin-top: 30px;
  font-size: 13px;
  line-height: 1.7;
}

#learn-more {
    display:block;
  color:rgb(0, 167, 75) ;
  border: 1px solid rgb(0, 167, 75);
  width: 70%;
  margin-top: 5px;
}

.ab-right{
width: 700px;
}

.ab-right img{
  width: 100%;
  border-radius: 10px;
}


.nav2list li:hover .about{
  display: block;
}

.enroll button{
  border: none;
  padding: 10px 15px;
  background-color: rgb(0, 0, 0);
  border-radius: 5px;
}

.enroll button a{
  text-decoration: none;
  color: rgb(255, 255, 255);
}


/* side navigation bar starts here */

/* MOBILE HEADER */

.mobile-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    background:white;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.mobile-logo{
    width:180px;
}

.menu-btn{
    font-size:32px;
    cursor:pointer;
    color:#036e1e;
}

/* OVERLAY */

#overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    display:none;
    z-index:998;
}

/* SIDEBAR */

#sidebar{
    position:fixed;
    top:0;
    left:-320px;
    width:320px;
    height:100vh;
    background:white;
    z-index:999;
    transition:.4s;
    overflow-y:auto;
    box-shadow:5px 0 30px rgba(0,0,0,.15);
}

#sidebar.active{
    left:0;
}

.sidebar-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom:1px solid #eee;
}

.sidebar-top span{
    font-size:28px;
    cursor:pointer;
}

.sidebar-menu{
    list-style:none;
    padding:20px;
}

.sidebar-menu li{
    margin-bottom:10px;
}

.sidebar-menu a{
    display:block;
    text-decoration:none;
    color:#333;
    padding:12px 0;
    font-size:15px;
}

.sidebar-menu a:hover{
    color:#036e1e;
}

.sidebar-menu details{
    border-bottom:1px solid #f1f1f1;
    padding-bottom:10px;
}

.sidebar-menu summary{
    list-style:none;
    cursor:pointer;
    padding:12px 0;
    font-weight:600;
    color:#222;
}

.sidebar-menu summary::-webkit-details-marker{
    display:none;
}

.sidebar-menu details a{
    padding-left:15px;
    color:#666;
    font-size:14px;
}

.sidebar-btn{
    padding:20px;
}

.sidebar-btn a{
    display:block;
    background:#036e1e;
    color:white;
    text-align:center;
    text-decoration:none;
    padding:15px;
    border-radius:6px;
    font-weight:bold;
}

.sidebar-btn a:hover{
    background:#024d15;
}

/* SHOW ONLY MOBILE */

@media(min-width:993px){
    .mobile-header,
    #sidebar,
    #overlay{
        display:none;
        z-index: 999;
    }
}


/* the main body section begins here */

/*============================
        CONTACT HERO
=============================*/

.contact-hero{

    position:relative;

    height:75vh;

    background:url("pics/earth\ moving.jpg") center center/cover;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.contact-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to right,
    rgba(2,28,18,.92),
    rgba(3,110,30,.72),
    rgba(0,0,0,.45));

}

.contact-content{

    position:relative;

    z-index:10;

    max-width:700px;

    padding:20px;

    color:white;

    text-align:center;

}

.contact-tag{

    display:inline-block;

    padding:8px 18px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.2);

    border-radius:50px;

    letter-spacing:2px;

    font-size:12px;

    margin-bottom:25px;

}

.contact-content h1{

    font-size:60px;

    line-height:1.15;

    margin-bottom:25px;

}

.contact-content p{

    font-size:14px;

    line-height:1.6;

    opacity:.92;

    margin-bottom:10px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    justify-content:center;

    flex-wrap:wrap;

}

.btn-primary{

    background:#f97316;

    color:white;

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    transition:.4s;

    font-weight:600;

}

.btn-primary:hover{

    transform:translateY(-5px);

    background:#e35f00;

}

.btn-secondary{

    border:1px solid rgba(255,255,255,.3);

    color:white;

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    transition:.4s;

}

.btn-secondary:hover{

    background:white;

    color:#036E1E;

}

/* Mobile */

@media(max-width:768px){

.contact-hero{

height:65vh;

}

.contact-content h1{

font-size:38px;

}

.contact-content p{

font-size:15px;

line-height:1.7;

}

}


/* the next section begins here */

/*==========================
      CONTACT SECTION
===========================*/

.contact-section{

padding:110px 20px;

background:#f8fafc;

}

.contact-container{

max-width:1100px;

margin:auto;

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:start;

}

.contact-info h2{

font-size:35px;

margin:20px 0;

color:#0f172a;

}

.contact-info>p{

line-height:1.9;

margin-bottom:40px;

color:#64748b;

}

.info-card{

display:flex;

gap:20px;

align-items:flex-start;

padding:25px;

margin-bottom:10px;

background:white;

border-radius:18px;

box-shadow:0 10px 35px rgba(0,0,0,.06);

transition:.35s;

}

.info-card:hover{

transform:translateX(8px);

}

.info-icon{

width:65px;

height:65px;

border-radius:50%;

background:#036E1E;

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

color:white;

flex-shrink:0;

}

.info-card h4{

margin-bottom:10px;

color:#0f172a;

}

.info-card p{

color:#64748b;

line-height:1.7;

}

.contact-form{

background:white;

padding:45px;

border-radius:25px;

box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.contact-form h3{

font-size:25px;

margin-bottom:30px;

color:#0f172a;

}

.contact-form form{

display:flex;

flex-direction:column;

gap:18px;

}

.contact-form input,

.contact-form textarea,

.contact-form select{

padding:18px;

border:1px solid #d9d9d9;

border-radius:12px;

font-size:15px;

outline:none;

transition:.3s;

}

.contact-form input:focus,

.contact-form textarea:focus,

.contact-form select:focus{

border-color:#036E1E;

}

.contact-form button{

padding:18px;

background:#036E1E;

color:white;

border:none;

border-radius:12px;

font-size:16px;

cursor:pointer;

transition:.35s;

}

.contact-form button:hover{

background:#f97316;

}

/* Responsive */

@media(max-width:900px){

.contact-container{

grid-template-columns:1fr;

}

.contact-info h2{

font-size:36px;

}

.contact-form{

padding:30px;

}

}


/* the next section begins here */

/*==============================
        OFFICE SECTION
===============================*/

.office-section{

    padding:110px 20px;

    background:#ffffff;

}

.office-header{

    max-width:750px;

    margin:auto;

    text-align:center;

    margin-bottom:60px;

}

.office-header h2{

    font-size:48px;

    color:#0f172a;

    margin:20px 0;

}

.office-header p{

    color:#64748b;

    line-height:1.9;

    font-size:17px;

}

.office-container{

    max-width:1100px;

    margin:auto;

    display:grid;

    grid-template-columns:Auto;

    gap:40px;

}

.office-map{

    height:520px;
    width: 100%;

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.office-map iframe{

    width:100%;

    height:100%;

}

.office-details{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.office-card{

    display:flex;

    gap:20px;

    align-items:flex-start;

    padding:28px;

    background:#f8fafc;

    border-radius:18px;

    transition:.35s;

}

.office-card:hover{

    transform:translateX(8px);

    background:white;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.office-icon{

    width:70px;

    height:70px;

    background:#036E1E;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:26px;

    flex-shrink:0;

}

.office-card h3{

    color:#0f172a;

    margin-bottom:8px;

}

.office-card p{

    color:#64748b;

    line-height:1.8;

}

@media(max-width:992px){

.office-container{

grid-template-columns:1fr;

}

.office-map{

height:400px;

}

.office-header h2{

font-size:36px;

}

}

@media(max-width:768px){

.office-section{

padding:80px 20px;

}

.office-header h2{

font-size:30px;

}

.office-header p{

font-size:15px;

}

.office-map{

height:320px;

}

.office-card{

padding:22px;

}

}


/* #################################################################### */

/* =========================
   GLOBALCONS FOOTER
========================= */
.global-footer{
    background: #0b1620;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}



.footer-top{
    padding: 90px 20px 55px;
    position: relative;
    z-index: 2;
}

.footer-container{
    max-width: 1320px;
    margin: auto;
    Padding: 30px 50px 30px 50px;
}

.footer-top .footer-container{
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 45px;
}

.footer-col h3{
    font-size: 20px;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52px;
    height: 3px;
    background: #00a331;
    border-radius: 20px;
}

.footer-brand .footer-logo{
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand .footer-logo img{
    max-width: 210px;
    height: auto;
    display: block;
}

.footer-brand p{
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.9;
    max-width: 360px;
    margin-bottom: 24px;
}

.footer-socials{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials a{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: 0.35s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-socials a:hover{
    background: #009338;
    transform: translateY(-4px);
}

.footer-links,
.footer-contact{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin-bottom: 14px;
}

.footer-links a{
    color: rgba(255,255,255,0.74);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
    display: inline-block;
}

.footer-links a:hover{
    color: #009f25;
    transform: translateX(4px);
}

.footer-contact li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.74);
    font-size: 15px;
    line-height: 1.7;
}

.footer-contact a{
    color: rgba(255,255,255,0.74);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-contact a:hover{
    color: #008c28;
}

.footer-icon{
    font-size: 16px;
    margin-top: 2px;
    min-width: 18px;
}

/* Bottom bar */
.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 20px;
    background: #081018;
}

.footer-bottom-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p{
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
}

.footer-credit{
    color: #f97316;
    font-weight: 500;
}

/* subtle background accent */
.global-footer::before{
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(249,115,22,0.18), transparent 65%);
    border-radius: 50%;
    z-index: 0;
}

.global-footer::after{
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(34,197,94,0.12), transparent 65%);
    border-radius: 50%;
    z-index: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px){
    .footer-container{
        width: 100%;
    }
}

@media (max-width: 1100px){
    .footer-top .footer-container{
        grid-template-columns: auto auto;
        gap: 40px 30px;
    }
}

@media (max-width: 768px){
    .footer-top{
        padding: 70px 16px 40px;
    }

    .footer-top .footer-container{
        grid-template-columns: auto auto;
        gap: 35px;
        padding-bottom: 0px 30px ;
    }

    .footer-col h3{
        font-size: 18px;
    }

    .footer-brand p,
    .footer-links a,
    .footer-contact li,
    .footer-contact a{
        font-size: 14px;
    }

    .footer-bottom{
        padding: 18px 16px;
    }

    .footer-bottom-wrap{
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom p{
        font-size: 13px;
    }
}

