*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: sans-serif;
}

/* nav... */
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2% 6%;
    /* position: relative; */
}
nav img{
    width: 50px;
    height: auto;
    /* margin-top: -2px; */
    border-radius: 4rem;
    background: transparent;
}
.nav-links{
    flex: 1;
    text-align: right;
    color: red;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 7px 11px;
    position: relative;
}
.nav-links ul li a{
    flex-wrap: nowrap;
    text-decoration: none;
    font-size: large;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.nav-links ul li::after{
    content: '';
    position: relative;
    height: 3px;
    width: 0%;
    bottom: -3px;
    background-color: orangered;
    display: block;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}
nav .fa{
    display: none;
}
.header{
    position: relative;;
}

@media(max-width:600px){
    .header{
        overflow: hidden;
    }
    .header-content h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links ul li a{
        color: black;
    }
    .nav-links{
        position: absolute;
        height: 100vh;
        width: 200px;
        top: 0%;
        right: -200px;
        text-align:left;
        z-index: 2;
        background-color:burlywood;
        transition: 0.5s;
    }
    nav .fa{
        display: block;
        margin: 10px;
        color: orangered;
        font-size: 38px;
        font-weight: bolder;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 32px;
    }
    nav img{
        width: 50px;
        height: auto;
        border-radius: 4rem;
        background: transparent;
    }
}
body{
    background-image: linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)),url(p1.jpg);

}
/* .contactus{
    position: relative;
    width: 100%;
    padding: 25px 25px;
}
.contactus .title{
    display: flex;
    justify-content: center;
    text-align: center;
}
.title h2{
    color: orangered;
    font-weight: bold;
}

.form{
    grid-area: form;
}
.info{
    grid-area: info;
}
.map{
    grid-area: map;
}
.contact{
    margin-top: 20px;
    padding: 10px;
    background-color:  rgb(126, 171, 213);
    box-shadow: 0 6px 35px rgba(0, 0, 0, 0.20);
}
.box{
    position: relative;
    display: grid;
    grid-template-columns: 2fr, 1fr;
    grid-template-rows: 5fr, 4fr;
    grid-template-areas: "form info" "form map" ;
    grid-gap: 10px;
}
.contact h3{
    color:black;
    font-weight: 800;
}

.formbox{
    position: relative;
    width: 100%;
}
.formbox .row{
    display: flex;
    gap: 20px;
}
.inpt{
    display: flex; 
    flex-direction: column;
    width: 50%;
    margin-bottom: 2px;
}
.formbox .row1 .inpt{
    width: 100%;
    height: auto;
}
.inpt span{
    color: rgb(20, 20, 75);
    margin: 3px 3px;
    font-weight: 600;
}
.inpt input{
    padding: 6px;
    font-size: medium;
    outline: none;
    border: 1.3px solid rgb(67, 56, 56);
}

.inpt textarea{
    padding: 6px;
    font-size: medium;
    outline: none;
    border: 1px solid rgb(67, 56, 58);
    resize: none;
    min-height: 200px;
}
.inpt input[type="submit"]{
    background-color: rgb(218, 221, 228);
    color: darkblue;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1.4px;
    max-width: 120px;
    border:none ;
    margin-top: 10px;
    padding: 10px;
    cursor: pointer;
    border: 1px solid darkblue;
    border-radius: 1rem;
}

.inpt input[type="submit"]:hover{
    color:blue;
    background-color:rgb(168, 168, 177);
}
/* contact info.... */
.info{
    background-color: rgb(63, 61, 115);
    
}
.info h3{
    color: white;
}
.infobox div{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.infobox div span{
    min-height: 40px;
    height: 40px;
    /* color: white; */
    /* background-color: rgb(26, 17, 14); */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    /* border-radius: 100%; */
    /* margin: 4px; */
    color: white;
} 

/* social media.... */
.sclmedia{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sclmedia ul{
    margin-top: -49px;
    display: flex;
    flex-direction: row;
}
.sclmedia ul li a{
    color: white;
}

.sclmedia ul li{
    padding: 10px;
    list-style-type: none;
    text-decoration: none;
    font-size: x-large;

} 
.infobox p{
    color: white;
    font-size: large;

}
.wh a{
    color: white;
    font-size: large;
    text-decoration: none;

}
.map{
    padding: 0%;
}
.map iframe{
    width: 100%;
    height: 100%;
}
/* responsive.... */

@media(max-width:600px){
    .contactus{
        overflow: hidden;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    .box{
        grid-template-columns:1fr;
        grid-template-rows: auto;
        grid-template-areas: "form" "info" "map" ;
        grid-gap: 10px;
    }
    .map{
        min-height: 300px;
    }
    .formbox .row{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .inpt{
        width: 100%;
    }
} 

.enroll{
    background-image:linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)),url(../home/ftr.jpg);
    background-position: center;
    background-size: cover;
    border: 1px orangered solid;
    /* border-radius: 3rem; */
    width: 100%;
    text-align: center;
    margin: auto;
    padding-top: 60px;
    margin-top: 100px;
    height: 300px;
}
.enroll h1{
    color: orangered;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}
.sub-footer{
    margin: auto;
    width: 80%;
    text-align: center;
    padding-top: 60px;
}
.icons{
    display: flex;
    justify-content: center;
    /* justify-content: space-between; */
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: larger;
    padding: 1px;
}
.icons img{
    width: 20px;
}
.enroll .banner-btn{
    background-color: rgb(221, 99, 54);
    text-decoration: none;
    display: inline-block;
    color: black;
    border: 1px solid #000;
    padding: 6px 30px;
    margin-top: 15px;
    font-weight: bold;
    /* background: transparent; */
    cursor: pointer;
    position: relative;
}
.banner-btn:hover{
    border: 1px solid orangered;
    background-color: rgb(243, 96, 42);
    transition: 1s;
}
@media(max-width:600px){
    .enroll h1{
        color: orangered;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-size:larger;
    }
}
.icons{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    padding: 1px;

}

.icons ul{
    display: flex;
    flex-direction: row;
    text-decoration: none;
}  
.icons ul li{
    text-decoration: none;
    list-style: none;
    padding: 6px;
    font-size: x-large;
}

.fill{
    margin: 4px;
    background-color: rgb(245, 201, 201);
    padding: 10px;
    color: red;
    
}
.fills{
    margin: 4px;
    background-color: rgb(245, 201, 201);
    padding: 10px;
    color: black;
}


  
  .contact-section {
    padding: 50px 20px;
    text-align: center;
  }
  
  .contact-section h2 {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 30px;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .contact-form, .contact-info {
    flex: 1;
    min-width: 300px;
    background: #323131;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    animation: fadeIn 1.5s ease;
  }
  
  .input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .input-group input {
    width: 50%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: rgb(196, 193, 193);
  }
  
  textarea {
    background-color: rgb(196, 193, 193);  
    width: 100%;
    height: 120px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
    margin-bottom: 15px;
  }
  
  .btn {
    width: 100%;
    background: #a4c0b1;
    color: rgb(4, 4, 4);
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #b08a27;
  }
  
  .contact-info{
  
    background-color: #333;
    color: #f9f9f9;
  }
  
  .contact-info h3 {
    margin-bottom: 10px;
    color: #e8e3e3;
  }
  
  .contact-info p {
    margin: 5px 0;
    color: #eae7e7;
    font-size: 15px;
    text-align: left;
  }
  
  .map-container {
    margin-top: 20px;
  }
  
  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
  }
  
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  }
  
  
  
  
    

    
    .footer {
  background: linear-gradient(to right, #1f1c2c, #928dab);
  color: #fff;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-about h2 {
  color: #ffd54f;
  margin-bottom: 10px;
}

.footer-about p {
  font-size: 14px;
  color: #ddd;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  margin-bottom: 12px;
  color: #ffd54f;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #eee;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ffd54f;
}

.footer-contact p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 8px;
}

.footer-social .social-icons a {
  font-size: 20px;
  color: #fff;
  margin-right: 15px;
  transition: 0.3s;
}

.footer-social .social-icons a:hover {
  color: #ffd54f;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
}
