*{margin:0;padding:0;box-sizing:border-box;font-family:Segoe UI,Arial}
body{background:#f4f6f9;color:#333}
a{text-decoration:none}

/* HEADER */
/* blue header */
header{
   background: linear-gradient(90deg, #050A30, #0D1A4D);
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 8px rgba(0,0,0,.2);
}
.nav{width:90%;margin:auto;display:flex;justify-content:space-between;align-items:center;padding:14px 0}
.nav-links{list-style:none;display:flex;gap:22px}
.nav-links a{
  color:#fff;
  font-weight:600;
  /* padding:6px 12px;
  border-radius:6px; */
  transition:.3s;
}

.nav-links a:hover{
  color: #00ff59;
  /* background:rgba(255,255,255,.2); */
}

.nav-links a.active{
  /* display:inline-block;
  padding-bottom:3px; */
  border-bottom:3px solid #FF6C00; 
}

.menu-btn{display:none;font-size:28px;color:white;cursor:pointer}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:bold;
  font-size:20px;
  color: #fff;
}

.logo img{
  width:45px;
  height:45px;
  border-radius:50%;
  object-fit:cover;
}


/* SLIDER */
.slider{position:relative;overflow:hidden;height:70vh}
.slides{display:flex;height:100%;transition:transform .7s ease}
.slide{min-width:100%;background-size:100% 100%;background-position:center;display:flex;align-items:center}
.slide-content{background:rgba(0,0,0,.6);color:white;padding:40px;margin-left:5%;max-width:480px;border-radius:10px}
.slide-content h2{font-size:42px}
.btn{display:inline-block;margin-top:10px;background:#ffb703;color:#000;padding:10px 24px;border-radius:20px;font-weight:700}

/* arrows */
.arrow{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,.5);color:white;font-size:30px;padding:8px 14px;cursor:pointer}
.arrow.left{left:10px}
.arrow.right{right:10px}

/* SECTIONS */
section{padding-top:60px}
.container{width:90%;margin:auto}
.title{text-align:center;margin-bottom:40px}
.title h2, .welcome-text h2, .about-summary-content h2{font-size:34px;color:#050a30}

/* GRID */
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:25px}
.card{background:#fff;padding:22px;border-radius:12px;box-shadow:0 6px 15px rgba(0,0,0,.1);text-align:center}
.card img{width:100%;height:180px;object-fit:cover;border-radius:10px}

/* GALLERY */
.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px}
.gallery img{width:100%;border-radius:12px}

/* CONTACT */
.contact{display:grid;grid-template-columns:1fr 1fr;gap:30px}
.contact input,.contact textarea{width:100%;padding:12px;border-radius:8px;border:1px solid #ccc}
.contact button{background:#0b4aa2;color:white;border:none;padding:12px;border-radius:20px}

/* FOOTER */
footer{background:#02061f;color:white;text-align:center;padding:22px}

/* UNDERLINE */

.section-underline{
  display:inline-block;
  padding-bottom:6px;
  margin-bottom: 5px;
  border-bottom:3px solid #FF6C00; /* underline color */
}


/* MOBILE */
@media(max-width:900px){
  .contact{grid-template-columns:1fr}
}
@media(max-width:768px){
  .menu-btn{display:block}
  .nav-links{
    position:absolute;top:65px;left:0;background:#0b4aa2;width:100%;
    flex-direction:column;align-items:center;display:none;padding:20px 0
  }
  .nav-links.show{display:flex}
  .slide-content{margin:20px;padding:25px}
  .slide-content h2{font-size:30px}
  .slider{position:relative;overflow:hidden;height:35vh}
}


/* welcome section */

.welcome-section{
  background:#ffffff;
}

.welcome-flex{
  display:flex;
  /* align-items:center; */
  gap:30px;
}

#welcome-img-margin{
  margin-top: 50px;
}
.welcome-img{
 flex: 0 0 40%;
 
}

.welcome-text{
  flex: 0 0 60%;
}

.welcome-img img{
  width:100%;
  border-radius:12px;
  /* box-shadow:0 4px 10px rgba(0,0,0,.15); */
}



.welcome-text p{
  line-height:1.7;
  margin-bottom:10px;
}

@media(max-width:768px){
  .welcome-flex{
    flex-direction:column;
  }
}
/* 
.welcome-text h2{
  font-size:30px;
  margin-bottom:15px;
  position:relative;
  display:inline-block;
}

.welcome-text h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:3px;
  background:#1a73e8;
  border-radius:3px;
} */

/* What we offer */

.offer-section{
  background:#f7f9fd;
  text-align:center;
}

.offer-tabs{
  display:flex;
  justify-content:center;
  gap:35px;
  margin-bottom:25px;
  flex-wrap:wrap;
}

.offer-tab{
  padding:10px 50px;
  background:#f6f6f6;
  border-top-right-radius:10px;
  border-top-left-radius: 10px;
  cursor:pointer;
  font-weight:600;
  transition:.3s;
  border-bottom:4px solid transparent;
}

.offer-tab:hover{
  color: #FF6C00 ;
}

.offer-tab.active{
  background:#050a30;
  color:#fff;
  border-bottom:4px solid #FF6C00 ;
}

.offer-content{
  /* max-width:700px; */
  margin:auto;
  background:#fff;
  padding:30px;
  border-radius:14px;
  /* box-shadow:0 4px 12px rgba(0,0,0,.12); */
}

.offer-box{
  display:none;
  animation:fade .5s ease;
}

.offer-box.active{
  display:block;
}

.offer-box h3{
  margin-bottom:5px;
}

.offer-box small{
  color:#777;
}

.offer-box p{
  margin-top:12px;
  line-height:1.7;
}

.offer-inner{
  display:flex;
  /* align-items:center; */
  gap:25px;
}

.offer-text{
  flex:0 0 65%;
  text-align:left;
}
.offer-text h2{
  color: #FF6C00;
}

.offer-img{
  flex:0 0 35%;
}

.offer-img img{
  width:100%;
  height:240px;        /* ✅ control height */
  border-radius:12px;
  /* box-shadow:0 4px 10px rgba(0,0,0,.15); */
  object-fit:cover;   /* ✅ crop properly */
}


@media(max-width:768px){
  .offer-inner{
    flex-direction:column;
    text-align:center;
  }

  .offer-text{
    text-align:center;
  }

  .offer-tabs {
    flex-wrap: nowrap;        
    overflow-x: auto;         
    justify-content: flex-start;
    gap: 15px;
    padding: 10px 10px;
    scroll-snap-type: x mandatory;
    position: relative;
  }

  .offer-tab {
    flex: 0 0 90%;           
    max-width: 90%;
    text-align: center;
    scroll-snap-align: center;
    white-space: normal;      /* Allow text to wrap */
  }

  /* Hide scrollbar */
  .offer-tabs::-webkit-scrollbar {
    display: none;
  }

  .offer-tabs {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}



@keyframes fade{
  from{opacity:0; transform:translateY(10px);}
  to{opacity:1; transform:translateY(0);}
}

/* why Choose  */

.why-section{
  background:#ffffff;
  
  text-align:center;
}

.why-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
  gap:25px;
  margin-top:40px;
}

.why-card{
  background:#f8f8f8;
  padding:30px 20px;
  border-radius:14px;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  transition:.3s;
  border-top: 4px solid #050a30;
}

.why-card:hover{
  transform:translateY(-8px);
  box-shadow:0 8px 18px rgba(0,0,0,.15);
  color: #fff !important;
  background-color: #050a30;
  border-top: 4px solid #FF6C00;
}

.why-icon{
  font-size:40px;
  margin-bottom:15px;
  color: #FF6C00;
}

.why-card h3{
  margin-bottom:10px;
}

.why-card p{
  font-size:14px;
  line-height:1.6;
}
.why-card p:hover{
  color: #fff;
}
.why-card p,
.why-card h3 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}


/* ===== MOBILE HORIZONTAL SCROLL ===== */
@media (max-width: 768px) {

  .why-cards {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
  }

  .why-card {
    flex: 0 0 90%;
    max-width: 90%;
    scroll-snap-align: start;
  }

  .why-cards::-webkit-scrollbar {
    display: none;
  }

  .why-cards {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

}


/* campus section */

.campus-section{
  background:#f7f9fd;
}

.campus-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
  margin-top:35px;
}

.campus-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 12px 20px -10px rgba(0,0,0,0.35);
  transition:.3s;
}

.campus-card:hover{
  transform:translateY(-6px);
  border-right: 3px solid #050a30;
}

.campus-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.campus-info{
  padding:20px;
}

.campus-info h3{
  margin-bottom:8px;
}

.campus-info p{
  color:#555;
  line-height:1.6;
}

@media(max-width:768px){
  .campus-card img{
    height:180px;
  }
}


/* achivements */

.achievements-section{
  background:#f7f9fd;
   text-align:center;
}

.achieve-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px,1fr));
  gap:25px;
  margin-top:40px;
}

.achieve-card{
  background:#fff;
  padding:35px 20px;
  border-radius:14px;
  box-shadow:0 4px 12px rgba(0,0,0,.1);
  transition:.3s;
}

.achieve-card:hover{
  transform:scale(1.05);
}

.achieve-card h3{
  font-size:38px;
  color:#FF6C00;
  margin-bottom:10px;
}

.achieve-card p{
  font-weight:600;
  color:#444;
}

/* info section */

.info-section{
  background:#050a30;
  color:#fff;
  margin-top: 60px;
  padding-bottom: 60px;
}

.info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:35px;
}
.info-box hr{
  border:none;
  height:2px;
  width:100%;
  background:#FF6C00;
  margin:10px 0 15px;
}

.info-box h3{
  color: #FF6C00;
}

.info-box p{
  margin:8px 0;
  font-size:14px;
  padding-right: 50px;
}

.info-box ul{
  list-style:none;
  padding:0;
}

.info-box ul li{
  margin:8px 0;
}

.info-box a{
  color:#ddd;
  transition:.3s;
}

.quickLinks a:hover{
  color:#FF6C00;
}

.info-icons i{
  color: #FF6C00;
}

.social-icons{
  margin-top:15px;
}

.social-icons a{
  display:inline-block;
  width:35px;
  height:35px;
  line-height:35px;
  text-align:center;
  background:#333;
  color:#fff;
  border-radius:50%;
  margin-right:8px;
  transition:.3s;
}

.social-icons a:hover{
  background: #FF6C00;
  transform:translateY(-3px);
}


/* About img section */
.about-hero-box{
  position:relative;
  width:100%;
  height:70vh;
  overflow:hidden;
}

.about-hero-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Small content box */
.hero-content-box{
  position:absolute;
  top:50%;
  left:8%;
  transform:translateY(-50%);
  background:rgba(0,0,0,.6);
  padding:30px 35px;
  max-width:420px;
  border-radius:12px;
  box-shadow:0 8px 25px rgba(0,0,0,0.2);
}

.hero-content-box h2{
  font-size:28px;
  color:#fff;
  margin-bottom:10px;
}

.hero-content-box h3{
  font-size:20px;
  line-height:1.3;
  margin-bottom:10px;
  color:#FF6C00;
}

.hero-content-box p{
  font-weight:600;
  color:#fff;
}

/* Mobile */
@media(max-width:768px){
  .about-hero-box{
    height:35vh;
  }

  .hero-content-box{
    left:5%;
    right:5%;
    max-width:100%;
    padding:20px;
  }

  .hero-content-box h3{
    font-size:22px;
  }
}

/* about summary */
 /* same as welcome section using same class css */

 /* secretory section  some css same as welcome section */
 .section-title{
  text-align:center;
  margin-bottom:30px;
}

.section-title h2{
  font-size:34px;
  font-weight:700;
  color: #050a30;
}

/* leadership section */

.leadership-section {
  background: #f4f6fb;
  text-align: center;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.leader-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border-top: 4px solid #050a30;
}

.leader-card:hover {
  transform: translateY(-8px);
  border-top: 4px solid #FF6C00;
}

.leader-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
}

.leader-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  
}

.leader-info h3 {
  margin-bottom: 5px;
  color: #050a30;
}

.leader-info h4 {
  font-size: 14px;
  color: #FF6C00;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leader-info p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}


/* vission mission section */

.vm-section{
  background:#f7f9fd;
}

.vm-row{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}

.vm-card{
  background:#050a30;
  color: #fff;
  padding:25px;
  border-radius:16px;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  max-width:480px;
  /* text-align:center; */
  transition:.3s;
  border-top: 4px solid #FF6C00;
}

.vm-card:hover{
  transform:translateY(-6px);
}

.vm-icon{
  font-size:40px;
  margin-bottom:15px;
  color: #FF6C00;
}

.vm-card h3{
  font-size:28px;
  margin-bottom:10px;
}

.vm-card p{
  line-height:1.7;
  
}

@media(max-width:768px){
  .vm-row{
    flex-direction:column;
  }
}

/* history */

.journey-section{
  background:#ffffff;
}

.timeline{
  position:relative;
  margin-top:40px;
  padding-left:30px;
  border-left:3px solid #FF6C00;
}

.timeline-item{
  margin-bottom:40px;
  position:relative;
}

.timeline-item::before{
  content:"";
  position:absolute;
  left:-24px;
  top:3px;
  width:18px;
  height:18px;
  background:#FF6C00;
  border-radius:50%;
}

.timeline-year{
  font-weight:700;
  color:#050a30;
  margin-bottom:6px;
}

.timeline-content h3{
  margin-bottom:8px;
  color: #FF6C00;
}

.timeline-content p{
  color:#555;
  line-height:1.7;
}

@media(max-width:768px){
  .timeline{
    padding-left:20px;
  }
}


/* academics page start */
/* teaching methodology */
.academic-hero{
  background:url("../images/academics.jpg") center/cover no-repeat;
  height:60vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-overlay{
  background:rgba(0,0,0,0.55);
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-content{
  text-align:center;
  color:#fff;
}

.hero-content h1{
  font-size:48px;
  margin-bottom:15px;
  font-weight:700;
}

.hero-content p{
  font-size:20px;
  max-width:600px;
  margin:auto;
}

@media(max-width:768px){
  .hero-content h1{
    font-size:34px;
  }
  .academic-hero{
    height:40vh;
  }
}

/* methodology */
.method-section{
 background:#ffffff;
}

.method-wrapper{
  display:flex;
  gap:50px;
  align-items:center;
  margin-top:40px;
}

/* 40% Image */
.method-image{
  width:40%;
}

.method-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:12px;
}

/* 60% Content */
.method-content{
  width:60%;
}

.method-item{
  margin-bottom:25px;
  padding-left:15px;
  border-left:4px solid #ff7a00;
}

.method-item h3{
  margin-bottom:6px;
}

.method-item p{
  color:#555;
  line-height:1.6;
}

/* 📱 Responsive */
@media(max-width:768px){
  .method-wrapper{
    flex-direction:column;
  }

  .method-image,
  .method-content{
    width:100%;
  }
}

/* cirricular */
/* <!-- new design can use in other side website --> */
/* .co-section{
  background: #f1f1f1;
  margin-top: 40px;
  border-radius: 12px;
}

.co-wrapper{
  display:flex;
  gap:50px;
  align-items:center;
  margin-top:40px;
}


.co-left{
  width:45%;
}

.co-left img{
  width:100%;
  border-radius:12px;
}


.co-right{
  width:55%;
}

.co-item{
  display:flex;
  gap:20px;
  margin-bottom:35px;
  align-items:flex-start;
}

.co-item span{
  font-size:40px;
  font-weight:700;
  color:#ff7a00;
  min-width:60px;
}

.co-item h3{
  margin-bottom:6px;
}

.co-item p{
  color:#555;
  line-height:1.6;
}


@media(max-width:768px){
  .co-wrapper{
    flex-direction:column;
  }

  .co-left,
  .co-right{
    width:100%;
  }
} */

/* assessment & evaluation  */

.assessment-section {
  background: #f4f7fb;
}


.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #050a30;
}

.section-title p {
  font-size: 16px;
  color: #666;
}


.assessment-process {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}


.process-item {
  flex: 1;
  min-width: 240px;
  max-width: 260px;
}

/* BOX DESIGN */
.process-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  height: 100%;
  transition: 0.3s ease;
  box-shadow: 0 15px 25px -15px rgba(0, 0, 0, 0.3);
}


.process-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.4);
  border-right: 3px solid #050a30;
  border-left: 3px solid #050a30;
  background: #f1f1f1;
}


.process-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #FF6C00;
  margin-bottom: 10px;
}


.process-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #050a30;
}


.process-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}


.process-arrow {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #FF6C00;
}


@media (max-width: 992px) {
  .assessment-process {
    flex-direction: column;
    align-items: center;
  }

  .process-arrow {
    transform: rotate(90deg);
  }
}

/* admission section start */

#admission-hero {
  background:url('../images/admissionbg.jpg') center/cover no-repeat;
  /* height: 70vh;
  display: flex;
  align-items: center;
  position: relative; */
}

#admission-content,
#admission-content p{
  color: #fff;
  text-align: left;
  margin: 0%;
}
/* admission procedure */
.admission-procedure {
  padding: 70px 0;
  background: #ffffff;
  text-align: center;
}
.download-icon{
  margin-left:10px;
  display:inline-flex;
  align-items:center;
  gap:6px;
}


.procedure-text {
  max-width: 850px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* admission process */

.simple-admission {
  background: #f5f7fb;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.steps {
  max-width: 800px;
  margin: auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid #FF6C00;
  box-shadow: 0 10px 25px -15px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.step-item:hover {
  transform: translateX(5px);
  border-left: 4px solid #050a30;
}

.step-number {
  min-width: 50px;
  height: 50px;
  background: #FF6C00;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h4 {
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.completed-text {
  text-align: center;
  margin-top: 40px;
  font-weight: 600;
  color: #FF6C00;
}

/* Responsive */
@media (max-width: 768px) {
  .step-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    margin-bottom: 10px;
  }
}

.admission-title {
  font-size: 18px;
  padding-top: 25px;
  background: #fff;
}

.required-documents {
  padding: 80px 0;
  background: #f5f7fb;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.documents-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.document-card {
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 25px -15px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.document-card:hover {
  transform: translateY(-5px);
  border-left: 3px solid #050a30;
}

.doc-icon {
  width: 30px;
  height: 30px;
  background: #FF6C00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.document-card p {
  margin: 0;
  font-size: 15px;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .documents-grid {
    grid-template-columns: 1fr;
  }
}


.admission-lastline{
 padding: 25px;
 background: #fff;
 color: #050a30;
 text-align: center;
}

/* notice */

.notice-hero {
  padding: 80px 0;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('../images/notebg.jpeg') center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.notice-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* notice listing */

.notice-section {
  background: #f5f7fb;
}

.notice-card {
  display: flex;
  gap: 25px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px -15px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.notice-card:hover {
  transform: translateY(-5px);
  border-left: 4px solid #050a30;
}

.notice-date {
  min-width: 80px;
  background: #FF6C00;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 15px 10px;
}

.notice-date span {
  font-size: 22px;
  font-weight: 600;
  display: block;
}

.notice-date small {
  font-size: 12px;
}

.notice-content h4 {
  margin-bottom: 8px;
  color: #050a30;
}

.notice-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.notice-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #FF6C00;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

.notice-btn:hover {
  background: #FF6C00;
}
@media (max-width: 768px) {
  .notice-card {
    flex-direction: column;
  }

  .notice-date {
    width: 100%;
  }
}
.notice-firstline{
 padding: 25px;
 
 color: #050a30;
 text-align: center;
 font-size: 18px;
}

/* gallery */

.gallery-hero {
  padding: 80px 0;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('../images/gallerybg.jpeg') center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.gallery-section {
  padding: 80px 0;
  background: #f4f7fc;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 25px;
  font-size: 14px;
  transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #ff7a00;
  color: #fff;
  border-color: #ff7a00;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  opacity: 0;
  transition: 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* contact */

.contact-hero {
  padding: 100px 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../images/contactbg2.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.contact-msg{
  padding: 5px;
  color: #050a30 !important;
}
.contact-section,
#contact-msgsection {
  background: #f4f7fc;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT CARD */
.contact-details-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 35px -20px rgba(0,0,0,0.2);
}

.contact-details-card h2 {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;   /* Important */
}

.contact-item i {
  min-width: 45px;           /* Prevent shrinking */
  height: 45px;
  background: #FF6C00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;            /* VERY IMPORTANT */
  margin-top: 4px;           /* Slight top adjustment */
}


.contact-item h4 {
  margin-bottom: 5px;
  color: #050a30;
}

.contact-item p,
.contact-item a {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* RIGHT MAP */
.map-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px -20px rgba(0,0,0,0.2);
  min-height: 400px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 300px;
  }
}

/* contact form */

.contact-form-section {
  background: #f4f7fc;
}

.form-card {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 35px -20px rgba(0,0,0,0.2);
}

.form-card h2 {
  text-align: center !important;
  margin-bottom: 40px;
  color: #050A30;
  display: block  !important;;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #050A30;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  transition: 0.3s ease;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #FF6C00;
  box-shadow: 0 0 0 2px rgba(255,108,0,0.15);
}

.full-width {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.submit-btn {
  background: #050A30;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #FF6C00;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 25px;
  }
}

/* contact toast msg */

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #050A30;
  color: #fff;
  padding: 14px 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  transform: translateX(120%);
  transition: 0.4s ease;
  z-index: 9999;
}

.toast.show {
  transform: translateX(0);
}

.toast i {
  color: #FF6C00;
  font-size: 18px;
}




/* extra Section  */
/* board of members */

.board-section {
  background: #f4f6fb;
}

.board-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.board-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.board-table thead {
  background: #050a30;
  color: #fff;
}

.board-table th,
.board-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.board-table tbody tr:hover {
  background: #f1f5f9;
}

.board-table th {
  font-weight: 600;
}















.gallery-section {
  padding: 80px 0;
  text-align: center;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.album-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 15px;
}

.album-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

.album-card:hover img {
  transform: scale(1.1);
}

.album-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 85%;
  max-height: 80%;
}

.close,
.prev,
.next {
  position: absolute;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.close {
  top: 20px;
  right: 40px;
}

.prev {
  left: 40px;
}

.next {
  right: 40px;
}
