*{
    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: 70px;
    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:black;
    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;
    background-color: antiquewhite;
}

@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;
    }
} 

.wgall{
    margin: 30px;
    max-width: 1100px; 
}

@media(max-width:600px){
    .container .topcnt{
        margin-bottom: 170px;
        display: flex;
        flex-direction: row;
    }
    .pic{
        width: 280px;
    }
    
}

@media(max-width:400px){
    .pic{
        width: 240px;
    }
}


.nav2 .items{
    display: flex;
    max-width: 820px;
    width: 100%;
    justify-content: space-between;
}
.nav2 .items .item{
    padding: 7px 23px;
    font-size: larger;
    font-weight: 500;
    color: #007bff;
    border: 2px solid #007bff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.nav2 .items .item:hover{
    background-color: #007bff;
    color: white;
}
.nav2 .items .active,
.wgall .nav2{
    display: flex;
    justify-content: center;
}



.enroll{

    background-image: linear-gradient(rgba(4,9,30,0.6),rgba(4,9,30,0.6)),url(ftr.jpg);
    position: relative;
    background-size: cover;
    background-position: center;
    justify-content: center;
    /* width: 80%; */
    /* border: 3px solid black; */
    /* border-radius: 3rem; */
    text-align: center;
    margin: auto;
    padding-top: 60px;
    margin-top: 80px;
    height: 300px;
}
.enroll h1{
    color: #fff;
    font-size: xx-large;
}
.sub-footer{
    margin: auto;
    width: 80%;
    text-align: center;
    padding-top: 60px;
}
.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: 10px;
    font-size: x-large;
}
@media(max-width:600px){
    .enroll h1{
        font-size: large;
    }
    .first{
        width: 256px;
        justify-content: center;
        align-items: center;
    }
}

.banner-btn{
    background-color:orangered;
    text-decoration: none;
    display: inline-block;
    color: black;
    font-size: large;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    border: 1px solid black;
    padding: 6px 30px;
    margin-top: 15px;
    /* background: transparent; */
    cursor: pointer;
    position: relative;
    
}
.banner-btn:hover{
    border: 1px solid rgb(175, 173, 43);
    background-color: rgb(243, 96, 42);
    transition: 1s;
    transform: scale(1.1);
}

.sclmedia{
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}



.gallery-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #121212, #1e1e1e);
  color: #fff;
  text-align: center;
}

.gallery-section h2{
    color: orangered;
    border-bottom: 0.2px solid wheat;
    padding: 10px;
}

.filter-container{
    margin-top: 30px;
}

.filter-container select {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  font-size: 16px;
  margin-bottom: 20px;
}


.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-card {
  background: #222;
  padding: 15px;
  border-radius: 12px;
  transition: 0.4s;
  animation: fadeIn 0.5s ease-in-out;
}

.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px #ff6f00;
}

.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-card p {
  margin-top: 10px;
  color: #ffcc80;
  font-weight: bold;
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

.video-card video {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}








    

    
    .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;
}
