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


p {
  text-align: justify;
  font-size: 18px;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

/* TOP BAR */
.top-bar {
    background: #258E55;
    color: #fff;
    font-size: 18px;
    height: 50px;
    
}

.top-bar a {
  color: #fff;
  text-decoration: none;

  
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    
}

.top-bar-inner span {
  padding-top: 10px;
}

/* LOGOS */
.logo-strip {
    background: #f8f9fa;
    padding: 15px 0;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logos img {
    height: 78px;
    width: 900px;
}

@media (max-width: 768px) {
 .logos img {
   
    width: 480px;
  }
 
}


/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background:#f1f5f9;
  z-index: 900;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-top: 2px solid #258E55;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 105px;
}

.logo h2 {
  color: #258E55;
  font-size: 22px;
}

.logo small {
  color: #666;
}

/* DESKTOP NAV */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;

  margin-left: auto;     /* pushes nav right */
  margin-right: 100px;
  font-size: 20px;    /* pulls it back left */
}

.desktop-nav a.active {
    color: #DA0E10 !important;
}

.desktop-nav a,
.desktop-nav span {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  cursor: pointer;
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #333;
}

.dropdown-menu a:hover {
  background: #f1f5ff;
  color: #258E55;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #fff;
  padding: 20px;
  box-shadow: -5px 0 20px rgba(0,0,0,0.25);
  transition: 0.35s;
  z-index: 1000;
}

.mobile-menu.active {
  right: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 18px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
}

/* MOBILE DROPDOWN */
.mobile-dropdown span {
  display: block;
  padding: 12px 0;
  font-weight: 600;
}

.mobile-submenu a {
  padding-left: 15px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

/* CONTACT US NAV BUTTON */
.nav-cta {
  padding: 10px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #258E55, #084298);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(11, 94, 215, 0.35);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(11, 94, 215, 0.45);
  background: linear-gradient(135deg, #084298, #258E55);
}

/* Optional glow ripple */
.nav-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: 0.6s;
}

.nav-cta:hover::after {
  width: 300px;
  height: 300px;
}



/* BANNER SLIDER */
.banner {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.15) 70%,
        rgba(0,0,0,0) 100%
    );
    z-index: 1;
    pointer-events: none; /* ✅ ADD THIS */
}
.banner .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 28px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 3; /* ✅ ADD THIS */
}


/* Caption */
.caption {
    position: absolute;
    bottom: 22%;
    left: 8%;
    max-width: 1200px;
    padding: 24px 28px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    color: #fff;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* Left accent strip */
.caption::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    height: 76%;
    width: 6px;
    background: #309255; /* your theme green */
    border-radius: 6px;
}


.caption h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.caption p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}



/* Slider Buttons */
.banner .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 28px;
    padding: 10px 15px;
    cursor: pointer;
}

.banner .prev { left: 20px; }
.banner .next { right: 20px; }

/* Responsive */
@media (max-width: 768px) {
    .banner {
        height: 45vh;
    }

    .caption h1 {
        font-size: 26px;
    }

    .caption p {
        font-size: 14px;
    }
}


/* COURSES SECTION */
.courses {
    padding: 80px 20px;
    background: #f8f9fb;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1f2d3d;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.course-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 5px solid #257a45;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* IMAGE */
.course-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* CONTENT */
.course-content {
    padding: 25px;
    text-align: center;
}

.course-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0d6efd;
}

.course-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.course-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #309255;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.course-btn:hover {
    background: #257a45;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .course-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .course-card img {
        height: 200px;
    }
}


/* MODERN ABOUT SECTION */
.about-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.about-modern-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* IMAGE LIKE VIDEO FRAME */
.about-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* TRANSPARENT GLASS OVERLAY */
.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11,94,215,0.15),
        rgba(0,0,0,0.35)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* HOVER EFFECT */
.about-media:hover img {
    transform: scale(1.08);
}

.about-media:hover .media-overlay {
    opacity: 1;
}

/* CONTENT */
.about-text .sub-title {
    color: #258E55;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

.about-text h2 {
    font-size: 36px;
    margin: 15px 0 20px;
    color: #222;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 34px;
    background: #258E55;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #084298;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-modern-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text h2 {
        font-size: 28px;
    }
}

.news-events-section {
  padding: 60px 20px;
  background: #f8f9fb;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.news-events-grid {
  display: grid;
  grid-template-columns:4fr 1fr;
  gap: 30px;
}

/* SECTION TITLE */
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title h2 {
  font-size: 26px;
  color: #1f2d3d;
}

.view-all {
  font-size: 14px;
  color: #e63946;
  text-decoration: none;
}

/* EVENTS */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.event-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
}

.event-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.event-info {
  padding: 12px;
}

.event-date {
  color: #e63946;
  font-weight: bold;
  font-size: 14px;
}

.event-info h4 {
  font-size: 15px;
  margin-top: 6px;
  color: #333;
}

/* ANNOUNCEMENTS */
.announcement-box {
  background: #fff7cc;
  padding: 20px;
  border-radius: 12px;
}

.announcement-box h2 {
  background: #d64545;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.announcement-item {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.announcement-item p {
  font-size: 14px;
  color: #333;
}

.announcement-item small {
  color: #666;
}

/* TAGS */
.tag {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  color: #fff;
}

.tag.new {
  background: #28a745;
}

.tag.circular {
  background: #ff9800;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .news-events-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }
}
.staff-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f8f9fb, #eef2f7);
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 32px;
  color: #1f2d3d;
  margin-bottom: 10px;
}

.section-heading p {
  color: #555;
  font-size: 15px;
}

/* GRID */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.staff-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  border: 2px solid #257a45; 
}

.staff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* STAFF IMAGE WRAPPER */
.staff-img {
  display: flex;
  justify-content: center;  
  align-items: center;       
  padding: 20px;      
       
}

/* IMAGE */
.staff-img img {
  width: 200px;            
  height: 200px;
  border-radius: 50%;      
  object-fit: cover;         
  display: block;
  transition: transform 0.4s ease;
  border: 5px solid #257a45; 
}

/* Optional hover effect */
.staff-img img:hover {
  transform: scale(1.05);
}

.staff-card:hover img {
  transform: scale(1.08);
}

/* INFO */
.staff-info {
  padding: 22px;
  text-align: center;
}

.staff-info h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 6px;
}

.staff-info span {
  display: block;
  color: #e63946;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.staff-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }

  .staff-img img {
    height: 240px;
  }
}


/* GALLERY SECTION */
.gallery-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1f4037, #99f2c8);
}

.section-heading.light h2,
.section-heading.light p {
  color: #fff;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
 
  
}

/* ITEM */
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  cursor: pointer;
   
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
  border: 5px solid #258E55;
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img {
    height: 350px;
     border: 5px solid #258E55;
     object-position: top;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 350px;
  }
}


/* PARTNERS SECTION */
.partners-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fb, #eef3f9);
}

.partners-section .section-heading {
  max-width: 850px;
  margin: 0 auto 45px;
  text-align: center;
}

.partners-section .section-heading h2 {
  font-size: 32px;
  color: #1f2d3d;
  margin-bottom: 10px;
}

.partners-section .section-heading p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* SLIDER */
.partners-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: slidePartners 30s linear infinite;
}

/* LOGO BOX */
.partner-logo {
  min-width: 180px;
  height: 100px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  border: 5px solid #258E55;
}

.partner-logo img {
  max-width: 80%;
  max-height: 90%;
  object-fit: contain;
  
  transition: filter 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-6px);
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

/* ANIMATION */
@keyframes slidePartners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .partner-logo {
    min-width: 140px;
    height: 85px;
  }

  .partners-track {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .partner-logo {
    min-width: 120px;
    height: 75px;
  }
}
/* FOOTER */
.site-footer {
  background: linear-gradient(135deg, #0f2027, #258E55 , #2c5364);
  color: #ddd;
  padding: 70px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 35px;
}

/* BOX */
.footer-box h3,
.footer-box h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 22px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
}

.footer-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;

}

/* LINKS */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s ease, padding-left 0.3s ease;
  font-weight: bold;
  text-decoration: none;
}

.footer-box ul li a:hover {
  color: #DA0E10 ;
  padding-left: 6px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #258E55 ;
  transform: translateY(-4px);
}

/* CONTACT */
.footer-contact li {
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: bold;
  width: 100%;
  max-width: 420px;   /* Increase horizontal width */
  line-height: 1.8;
}

.footer-contact i {
  color: #fff;
  font-size: 20px;
  min-width: 22px;
  margin-top: 4px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 45px;
  padding-top: 15px;
  text-align: center;
}

.footer-bottom p {
  font-size: 18px;
  color: #fff;
}

.footer-bottom  a {
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-social {
    justify-content: left;
  }

  .footer-contact li {
    justify-content: left;
  }
}

/* GLASS EFFECT FOR FOOTER LOGO BOX */
.glass-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 28px;
  width: 250px;
  height: 310px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.glass-box p {
  text-align: left;
}
.glass-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
/* DROPDOWN WRAPPER */
.nav-dropdown {
    position: relative;
}

/* MAIN BUTTON */
.drop-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* DROPDOWN MENU */
.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s ease;
    z-index: 999;
}

/* SHOW ON HOVER */
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* DROPDOWN LINKS */
.dropdown-menu a {
    display: block;
    padding: 12px 22px;
    font-size: 14px;
    color: #333;
    transition: background 0.3s ease, padding-left 0.3s ease;
}

/* HOVER EFFECT */
.dropdown-menu a:hover {
    background: #f1f5f9;
    padding-left: 28px;
    color: #e63946;
}

/* ICON ROTATE */
.nav-dropdown:hover .drop-btn i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}


/* ABOUT MAIN SECTION */
.about-main-section {
  padding: 80px 20px;
  background: #ffffff;
}

.about-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.about-main-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.about-main-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
  border: 5px solid #257a45;
}

.about-main-image:hover img {
  transform: scale(1.08);
}


/* MOBILE VIEW */
@media (max-width: 768px) {
  .about-main-grid {
    grid-template-columns: 1fr;
  }

  .about-main-image {
    order: 1;
  }

  .about-main-content {
    order: 2;
    text-align: center;
  }
}
/* CONTENT */
.about-main-content h2 {
  font-size: 34px;
  color: #1f2d3d;
  margin-bottom: 18px;
}

.about-main-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* VISION MISSION OVERLAY SECTION */
.vmp-overlay-section {
  position: relative;
  background: url("https://images.unsplash.com/photo-1581091870627-3c1a4c07efef")
    center/cover no-repeat;
}

.vmp-overlay {
  position: relative;
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 20px;
  overflow: hidden;
}

/* Blur + Dark Overlay */
.vmp-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);   /* black overlay */
       
  z-index: 0;
}

/* Make content stay above overlay */
.vmp-overlay > * {
  position: relative;
  z-index: 1;
}

/* LAYOUT */
.vmp-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

/* FULL WIDTH BOX */
.vmp-item.full-width {
  grid-column: span 2;
  max-width: 60%;
}

/* ITEM */
.vmp-item {
  color: #fff;
}

/* TITLE */
.vmp-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.vmp-title i {
  font-size: 28px;
  opacity: 0.95;
}

.vmp-title h3 {
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* TEXT */
.vmp-item p {
  font-size: 15px;
  line-height: 1.9;
  color: #fdfdfd;
  max-width: 95%;
}

/* SECTION */
.gallery-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f8f9fb, #eef2f7);
}

.gallery-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.gallery-title {
    text-align: center;
    font-size: 38px;
    color: #2d3e50;
    margin-bottom: 10px;
}

.gallery-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 50px;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    
}

/* IMAGE CARD */
.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transition: 0.4s ease;
    position: relative;
     border: 5px solid #258E55;
}

.gallery-img:hover {
    transform: scale(1.06);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* ABOUT COLLEGE SECTION */
.about-college {
  padding: 80px 0;
  background: linear-gradient(135deg, #f6f9ff, #ffffff);
}

.about-college-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.about-college-content .section-tag {
  display: inline-block;
  background: rgba(11, 94, 215, 0.1);
  color: #258E55;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.about-college-content h2 {
  font-size: 36px;
  line-height: 1.25;
  color: #1f2b3a;
  margin-bottom: 18px;
}

.about-college-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* POINT LIST */
.about-points {
  list-style: none;
  margin-top: 20px;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
}

.about-points i {
  color: #258E55;
  font-size: 18px;
}

/* RIGHT IMAGE */
.about-college-image {
  position: relative;
}

.about-college-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* IMAGE HOVER EFFECT */
.about-college-image img:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-college-wrap {
    grid-template-columns: 1fr;
  }

  .about-college-content h2 {
    font-size: 32px;
  }

  .about-college {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .about-college-content h2 {
    font-size: 26px;
  }

  .about-college-content p,
  .about-points li {
    font-size: 15px;
  }

  .about-college {
    padding: 50px 0;
  }
}


/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 16px;
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

/* CLOSE */
.lightbox .close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 38px;
    color: #fff;
    cursor: pointer;
}

/* ARROWS */
.lightbox .nav {
    position: absolute;
    top: 50%;
    font-size: 42px;
    color: #fff;
    cursor: pointer;
    padding: 12px;
    transform: translateY(-50%);
    opacity: 0.85;
}

.lightbox .nav:hover {
    opacity: 1;
}

.prev { left: 30px; }
.next { right: 30px; }

/* MOBILE */
@media (max-width: 768px) {

    .gallery-title {
        font-size: 28px;
    }

    .gallery-img {
        height: 220px;
    }

    .prev { left: 10px; }
    .next { right: 10px; }
}
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
}

.contact-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

/* FORM BOX */
.contact-form-box {
  background: rgba(255,255,255,0.85);
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border: 2px solid #257a45;
}

.contact-form-box h2 {
  color: #258E55;
  margin-bottom: 10px;
}

.contact-form-box p {
  color: #555;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #257a45;
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #258E55;
}

.error {
  font-size: 12px;
  color: red;
}

/* CAPTCHA */
.recaptcha-box {
  margin: 15px 0;
}

/* SUBMIT BUTTON */
.btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #258E55, #3b82f6);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11,94,215,0.4);
}

/* RIGHT INFO */
.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: rgba(255,255,255,0.85);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  border: 3px solid #257a45;
}

.info-card i {
  font-size: 28px;
  color: #258E55;
  margin-bottom: 10px;
}

.info-card a {
  text-decoration: none;
  color: #000;
}

.info-card h4 {
  margin-bottom: 5px;
}

/* MAP */
.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-box {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-card {
    flex: 1 1 100%;
  }
}


