     .image-section {
      width: 100%;
      height: 500px;
      background-image: url("assets/img/bannar.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    
    /* about us*/
    
    .marquee-wrapper {
  background:#d2e5dd;
  overflow:hidden;
  white-space:nowrap;
  padding:10px 0;
}

.marquee {
  display:inline-block;
  padding-left:100%;
  animation: scroll-left 70s linear infinite;
  font-size:16px;
  font-weight:500;
  color:#222;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/*end*/



/* About us */

/* Section Background */
.creative-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}



/* Image Styling */
.image-box {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.image-box img {
    width: 100%;
    transition: transform 0.5s ease;
}

.image-box:hover img {
    transform: scale(1.1);
}

.creative-section .section-title{
  position:relative;
  display:inline-block;
  font-size:28px;
  font-weight:700;
  margin-bottom:15px;
}

.creative-section .section-title::after{
  content:"";
  display:block;
  width:70px;          /* underline length */
  height:4px;          /* thickness */
  background:#f5b400;  /* yellow color */
  margin:8px 0 0;      /* left aligned */
  border-radius:2px;
}

/* Span Creative Design */
.section-title span {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 18px;
    font-size: 25px;
    font-weight: 600;
    color: #508730;
    background: rgba(13, 110, 253, 0.1);
    border-left: 4px solid #6faf67;
    border-radius: 4px;
}

/* Paragraph */
.content-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Button */
.btn-custom {
    background: #db7105;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 500;
}

.btn-custom:hover {
    background: #508730;
    color: #fff;
}

/*end*/

/* message chairmen*/

.background-section {
  position: relative;
  background: url('assets/img/bannar.jpg') no-repeat center center;
  background-size: cover;
  min-height: 350px;
  padding: 2rem;
  color: #000;
}

.message-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 0.5rem;
    max-width: 800px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.message-box h3{
  font-size:28px;
  font-weight:700;
  position:relative;
  display:inline-block;
  margin-bottom:12px;
}

.message-box h3::after{
  content:"";
  display:block;
  width:70px;          /* underline length */
  height:4px;          /* thickness */
  background:#f5b400;  /* yellow color */
  margin:8px auto 0;   /* center aligned */
  border-radius:2px;
}


@media (max-width: 576px) {
  .background-section {
    padding: 1rem;
    min-height: 300px;
  }
  .message-box {
    padding: 1rem;
    max-width: 100%;
  }
}

/*end*/


/*notice board*/
.vt-notice-section {
  padding: 40px 0;
}

.vt-image-col img {
  width: 100%;
  border-radius: 6px;
}

.notice-heading {
  font-size: 31px;
  margin-bottom: 15px;
  font-weight: 800;
  color: #ff2900;
}

.notice-board {
  width: 100%;
  height: auto;
  overflow: hidden;
  border: 1px solid #ddd;
  padding: 15px 15px 45px;
  background: #fff4c8; /* light background */
  position: relative;
  border-radius: 6px;
}

/* NOTICE ITEMS */
.notice-item {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  padding: 5px 5px;
  background: #f8f9fa; /* light item background */
  border-left: 4px solid red;
  color: red;
  text-decoration: none;
  animation: blinkBorder 1s infinite;
}

/* BLINKING BORDER ANIMATION */
@keyframes blinkBorder {
  0%   { border-left-color: red; }
  50%  { border-left-color: transparent; }
  100% { border-left-color: red; }
}

.notice-item:hover {
  background: #eef1f4;
  color: #0d6efd;
}

/* Footer */
.notice-footer {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  text-align: right;
  background: #ffffff;
  padding: 8px 15px;
  border-top: 1px solid #ddd;
}

.notice-more-btn {
  font-size: 13px;
  font-weight: 600;
  color: #ff2900;
  text-decoration: none;
}


/*end*/

/* academoc achievement*/

     .academic-achievement {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.academic-achievement h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
  position: relative;
  display: inline-block;
}

.academic-achievement h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #f5b400; /* yellow underline (UltraTech style) */
  margin: 8px auto 25px;
  border-radius: 2px;
}


.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  align-items: center;
}

.logo-grid img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
  padding: 10px;
  background: #fff;
  border: 2px solid #f5b400;
  animation: blinkBorder 1.2s infinite;
}

@keyframes blinkBorder {
  0% {
    border-color: #f5b400;
  }
  50% {
    border-color: transparent;
  }
  100% {
    border-color: #f5b400;
  }
}

/*end*/



/*certificates*/

/* SECTION */
.cert-section{
  padding:0px 0;
  text-align:center;
}

.cert-section h2{
  font-size:32px;
  font-weight:700;
  position:relative;
  display:inline-block;
  margin-bottom:20px;
}

.cert-section h2::after{
  content:"";
  display:block;
  width:80px;          /* underline length */
  height:4px;          /* underline thickness */
  background:#f5b400;  /* yellow color */
  margin:8px auto 0;
  border-radius:2px;
}


/* SLIDER */
.cert-slider{
  width:100%;
  overflow:hidden;
}

.cert-track{
  display:flex;
  animation: certScroll 28s linear infinite;
  cursor:pointer;
}

.cert-track:hover{
  animation-play-state: paused;
}

.cert-item{
  flex:0 0 calc(100% / 6);
  padding:0 10px;
  cursor:pointer;
}

.cert-item img{
  width:100%;
  height:auto;
  display:block;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,.2);
}

/* MOBILE */
@media (max-width:768px){
  .cert-item{
    flex:0 0 calc(100% / 2);
  }
}

/* INFINITE */
@keyframes certScroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* LIGHTBOX */
.cert-lightbox{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.9);
  justify-content:center;
  align-items:center;
  z-index:999;
}

.cert-lightbox img{
  max-width:90%;
  max-height:85%;
}

.cert-lightbox span{
  position:absolute;
  color:#fff;
  font-size:40px;
  cursor:pointer;
  user-select:none;
}

.cert-lightbox .close{top:20px; right:30px;}
.cert-lightbox .prev{left:30px;}
.cert-lightbox .next{right:30px;}

/*end*/


/*our strength*/
    .fact-section-title{
  font-size:32px;
  font-weight:700;
  position:relative;
  display:inline-block;
  margin-bottom:15px;
}

.fact-section-title::after{
  content:"";
  display:block;
  width:80px;          /* underline length */
  height:4px;          /* thickness */
  background:#f5b400;  /* yellow color */
  margin:8px 0 0;      /* left aligned */
  border-radius:2px;
}

/*end*/


/*recognization*/

.recognition-affiliation {
  /*padding: 60px 20px;*/
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.recognition-affiliation .container {
  text-align: center;
}

.recognition-affiliation h2 {
  font-size: 32px;
  color: #1f2937;
  margin-bottom: 40px;
  margin-bottom: 20px;
  padding-top: 10px;
  position: relative;
  display: inline-block;
}

/* Yellow underline */
.recognition-affiliation h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background-color: #f4b400; /* yellow */
  margin: 12px auto 0;
  border-radius: 2px;
}


.ra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.ra-card {
    background: white;
    border-radius: 14px;
    padding: 9px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.ra-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #0f172a;
}

.ra-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ROW STYLE */
.ra-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.ra-item:last-child {
  border-bottom: none;
}

.ra-item img {
    width:95PX;
    /* height: 80px; */
    object-fit: contain;
    flex-shrink: 0;
}

.ra-item span {
  font-size: 16px;
  color: #374151;
  text-align: left;
}

/* MOBILE RESPONSIVE */
@media (max-width: 576px) {
  .ra-item {
    flex-direction: column;
    text-align: center;
  }
}




/*end*/



/*principle message*/


  .goal-title{
  font-size:32px;
  font-weight:700;
  position:relative;
  display:inline-block;
  margin-bottom:15px;
}

.goal-title::after{
  content:"";
  display:block;
  width:80px;          /* underline length */
  height:4px;          /* thickness */
  background:#f5b400;  /* yellow color */
  margin:8px 0 0;      /* left aligned underline */
  border-radius:2px;
}

/*end*/



/* history css*/
.history-section {
  padding: 18px 0;
  background: #f8f9fd;
}

.history-tag {
  display: inline-block;
  padding: 6px 18px;
  background: #003f88;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.history-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
}

.history-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.history-location {
  margin-top: 20px;
  font-weight: 600;
  color: #003f88;
}

.history-image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
 
}

.history-image-box img {
  width: 100%;
  transition: transform 0.5s ease;
   
}

.history-image-box:hover img {
  transform: scale(1.07);
}

.image-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
}

.image-caption h4 {
  margin: 0;
  font-size: 20px;
}


/*end*/




/*principal message */

.principal-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8f9ff, #eef3ff);
}

.principal-tag {
  display: inline-block;
  padding: 6px 18px;
  background: #003f88;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}

.principal-title {
  font-size: 38px;
  font-weight: 700;
  color: #111;
}

.principal-title span {
  color: #003f88;
}

.principal-divider {
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #003f88, #00b4d8);
  border-radius: 20px;
  margin: 15px 0 25px;
}

.principal-greeting {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #003f88;
}

.principal-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.principal-wishes {
  font-weight: 600;
  color: #003f88;
}

.principal-name {
  margin-top: 25px;
}

.principal-name h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
}

.principal-name span {
  font-size: 14px;
  color: #666;
}

/* Image */
.principal-image {
  text-align: center;
}

.principal-image img {
  width: 100%;
  max-width: 260px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.principal-image img:hover {
  transform: scale(1.05);
}


/*end*/


/*chairman message*/
.leader-message {
  padding: 90px 0;
}

.president-message {
  background: linear-gradient(135deg, #f8f9ff, #eef3ff);
}

.chairman-message {
  background: #ffffff;
}

.leader-tag {
  display: inline-block;
  padding: 6px 18px;
  background: #003f88;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}

.leader-title {
  font-size: 38px;
  font-weight: 700;
  color: #111;
}

.leader-title span {
  color: #003f88;
}

.leader-divider {
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #003f88, #00b4d8);
  border-radius: 20px;
  margin: 15px 0 25px;
}

.leader-greeting {
  font-size: 20px;
  font-weight: 600;
  color: #003f88;
  margin-bottom: 10px;
}

.leader-message p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.leader-blessing {
  font-weight: 600;
  color: #003f88;
  margin-top: 20px;
}

/* Image */
.leader-image {
  text-align: center;
}

.leader-image img {
  width: 100%;
  max-width: 260px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


/*end*/


/*infrastruture */

.infrastructure {
  padding: 70px 10%;
  background: linear-gradient(135deg, #141e30, #243b55);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.infrastructure h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 10px;
}

.infrastructure h2 i {
  color: #ffd369;
}

.subtitle {
  text-align: center;
  font-size: 16px;
  color: #dcdcdc;
  margin-bottom: 50px;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.infra-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.infra-card:hover {
  transform: translateY(-12px) scale(1.03);
}

.infra-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ffd369;
}

.infra-card h3 i {
  margin-right: 8px;
}

.infra-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #eaeaea;
}

.infra-card ul {
  padding-left: 0;
  list-style: none;
}

.infra-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.infra-card ul li i {
  color: #00ffd5;
  margin-right: 6px;
}

.infra-card span {
  display: inline-block;
  margin-top: 15px;
  font-size: 13px;
  color: #9ee7ff;
}

.infra-card.highlight {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  color: #222;
}

.infra-card.highlight h3,
.infra-card.highlight li,
.infra-card.highlight p {
  color: #222;
}

/*end*/



.team-section {
  background: #f8f9fa;
  padding: 60px 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #212529;
  font-weight: 700;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
  padding: 25px 15px 35px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.team-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  /*border: 3px solid #0d6efd;*/
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #db7105;
}

.team-card p {
  font-size: 14px;
  color: #555;
  font-weight: 600;
}

@media (max-width: 768px) {
  .team-section {
    padding: 40px 10px;
  }
  
  .team-card {
    padding: 20px 12px 30px;
  }

  .team-card img {
    width: 90px;
    height: 90px;
    margin-bottom: 14px;
  }

  .team-card h3 {
    font-size: 18px;
  }

  .team-card p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-title {
    font-size: 28px;
  }
}

