* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;


}
:root {
    --primary-color: #0b7899;
    --secondary-color: #f1faee;
    --accent-color:  #e6b800;
    --text-light: #f1faee;
    --thirdary-color: rgb(0, 119, 204);

}
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    background-color: #007bff;
    color: white;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: background-color 0.3s, transform 0.3s;
}

#scrollTopBtn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

body{
     min-height: 100vh;
}
body, .header-top, .main-nav {
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;

}

.main-nav .nav-list > li > a,
.main-nav .dropdown-menu li a {
    font-size: 14px;
}

/* Header Top */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--thirdary-color);;
    padding: 10px 20px;
    color: #fff;
}

.logo-name {
    display: flex;
    align-items: center;
}

.logo-name .logo {
    height: 50px;
    margin-right: 10px;
}

.logo-name .college-name {
    font-size: 20px;
    font-weight: bold;
}

/* Social Icons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffcc00;
}

/* Admission Button */
.admission-btn {
    background-color: #ffcc00;
    color: #000;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.admission-btn:hover {
    background-color: #e6b800;
}

/* Navigation Menu */
.main-nav {
    background-color: var(--thirdary-color);;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.nav-list > li > a:hover {
    background-color: var(--thirdary-color);
}

/* Dropdown Styles */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color:var(--thirdary-color);
    min-width: 200px;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
    /* border-bottom: #fff 1px solid; */
    border-top: #fff 1px solid;
}

.dropdown-menu li a:hover {
    background-color: #fff;
    color: var(--thirdary-color);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}
.main-nav .dropdown-menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
/* FOOTER STYLES */
.site-footer {
    background-color: var(--thirdary-color);
    color: var(--text-light);
    font-family: 'Segoe UI', sans-serif;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left, .footer-middle, .footer-right {
    flex: 1 1 300px;
    margin: 20px;
}

.footer-logo {
    width: 60px;
    margin-bottom: 10px;
}

.footer-left h2 {
    font-size: 22px;
    margin: 10px 0;
    color: var(--secondary-color);
}

.footer-left p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-middle h3, .footer-right h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-middle ul {
    list-style: none;
    padding: 0;
}

.footer-middle ul li {
    margin-bottom: 8px;
}

.footer-middle ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-middle ul li a:hover {
    color: var(--accent-color);
}

.social-icons a {
    color: var(--text-light);
    margin-right: 12px;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background-color: var(--thirdary-color);
    font-size: 14px;
    color: #ccc;
}
/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-slider img.slide {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider img.active {
    opacity: 1;
    z-index: 1;
}

/* News & Events Scrolling Box */
.news-events-box {
    position: absolute;
    top: 65%;
    right: 2rem;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.65);
    padding: 1.5rem;
    border: 2px solid #fff;
    color: #fff;
    width: 400px;
    height: 300px;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    z-index: 2;
}

.news-events-box h3 {
    color:var(--accent-color);
    font-size: 16px;
    margin-bottom: 1rem;
}

.news-scroll {
    margin-top: 5%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.news-items {
    display: flex;
    flex-direction: column;
    animation: scroll-up 10s linear infinite;
}
.news-items:hover {
    animation-play-state: paused;
}
.news-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #fff;
    margin-bottom: 10px;
}

.news-item .date {
    background-color:var(--thirdary-color);
    color: #fff;
    padding: 5px 8px;
    font-weight: bold;
    font-size: 12px;
    min-width: 60px;
    text-align: center;
}

.news-item .text {
    font-size: 13px;
    color: #fff;
}

.news-item .text a {
    color: var(--accent-color);
    font-style: italic;
    margin-left: 5px;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-100%);
    }
}
.news-ticker {
    /* position: absolute; */
    margin-top: 0%;
    bottom: 0;
    width: 100%;
    background-color: var(--thirdary-color);
    color: #fff;
    font-size: 0.9rem;
    padding: 0.5rem;
    z-index: 2;
}

.news-ticker marquee span {
    margin-right: 2rem;
}
/* course section*/
.courses-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--thirdary-color);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.course-card {
    width: 100%;
    max-width: 350px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.course-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.course-image-wrapper {
    position: relative;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.course-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.course-overlay {
    position: absolute;
    top: 10px; /* respect padding */
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(0, 119, 204, 0.75);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
}

.course-image-wrapper:hover .course-overlay {
    opacity: 1;
}

.course-title {
    padding: 15px;
    font-weight: bold;
    font-size: 16px;
    /* background-color: #f9f9f9; */
    color: var(--thirdary-color);
    width: 100%;
    text-align: center;
    /* border-top: 1px solid #eee; */
}

.course-overlay h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.read-more {
    background-color: #fff;
    color: #003366;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.read-more:hover {
    background-color: #003366;
    color: #fff;
}



/* learn beyond */

.learn-beyond {
  text-align: center;
  padding: 60px 20px;
}

.learn-beyond h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--thirdary-color);
  margin-bottom: 10px;
}

.learn-beyond p {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

.learn-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.learn-item {
  text-align: center;
  text-decoration: none;
  color: #c00;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.learn-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #c00;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learn-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.learn-item span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

/* Education Excellence Section */
.education-excellence {
  background-color: #fcfcfc;
  text-align: center;
  padding: 60px 20px;
}

.education-excellence .title {
  font-size: 22px;
  color: var(--thirdary-color);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.education-excellence .subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.education-excellence .features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.education-excellence .feature {
  max-width: 220px;
  text-align: center;
}

.education-excellence .feature img {
  width: 50px;
  height: 50px;
  margin-left: 70px;
  margin-bottom: 15px;
}

.education-excellence .feature p {
  font-size: 18px;
  color: #222;
  line-height: 1.5;
  font-weight: 500;
}

/* Add this CSS to your main CSS file */

.simple-stats-section {
  position: relative;
  height: 45vh; /* reduced static height */
  overflow: hidden;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('/images/IMG_1006.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(11, 120, 153, 0.50);
  z-index: 2;
}

.content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-row {
  display: flex;
  gap: 3rem;
  padding: 1rem 2rem;
  white-space: nowrap;
}

.stat-item {
  color: white;
  text-align: center;
  transition: transform 0.3s ease;
  min-width: 150px;
}

.stat-item:hover {
  transform: translateY(-8px);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
}

.stat-label {
  font-size: 0.9rem;
  color: #ccc;
}
/*RECRUITERS*/

.recruiters-section {
  padding: 40px 0;
  text-align: center;
}

.section-title {
  margin-bottom: 30px;
  font-size: 24px;
  color: var(--thirdary-color);
  font-weight: bold;
}

.carousel-wrapper {
  display: flex;
  align-items: center; /* Align buttons and logos in the same line */
  justify-content: center;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.carousel-item {
  flex: 0 0 200px;
  height: 100px;
  object-fit: contain;
  margin: 0 10px;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item:hover {
  border: 2px solid var(--thirdary-color);
  box-shadow: 0 0 10px rgba(0, 86, 179, 0.4);
}

.carousel-button {
  background: white;
  border: 2px solid #ccc;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  padding: 10px 15px;
  transition: background 0.3s ease;
}

.carousel-button:hover {
  background: var(--thirdary-color);
  color: white;
  border-color: var(--thirdary-color);
}
 /* Testimonial Section */

 .testimonial-section {
  background: #fff1de;
  text-align: center;
  padding: 50px 20px;
  font-family: sans-serif;
  overflow: hidden;
}

.testimonial-section h2 {
  color: var(--thirdary-color);
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 28px;
}

.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-track-wrapper {
  width: 600px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0 10px;
}

.testimonial-slide img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.testimonial-author {
  font-weight: bold;
  color: #333;
}

.testimonial-btn {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-btn:hover {
  background: #eee;
}

/* Contact Widget */
.contact-widget {
  position: fixed;
  top: 65%;
  right: 0;
  z-index: 9999;
}

.contact-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: var(--thirdary-color);
  border-radius: 30px 0 0 30px;
  width: 50px;
  height: 50px;
  overflow: hidden;
  transition: width 0.5s ease-in-out, height 0.4s ease-in-out;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-toggle:hover,
.contact-toggle:focus-within {
  width: 250px;
  height: auto;
  padding: 12px;
}

.main-icon {
  padding: 10px;
  font-size: 1.2rem;
  background-color: var(--thirdary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  flex-shrink: 0;
  border-radius: 30px 0 0 30px;
  color: #ffffff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin-left: 10px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transform: translateX(-10px);
  white-space: nowrap;
}

.contact-toggle:hover .contact-info,
.contact-toggle:focus-within .contact-info {
  opacity: 1;
  transform: translateX(0);
}

.contact-info a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  transform: translateX(5px);
  color: #e6b800;
}

.contact-info i {
  font-size: 1rem;
}

/* all about drop down*/
.page-section {
    padding: 50px 0;
    background: #f9f9f9;
}
.page-section h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}
.page-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}
.container {
    max-width: 1000px;
    margin: auto;
    padding: 0 15px;
}


/* Mission and Vision Section */
/* HERO SECTION */
.custom-hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
}

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

.custom-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 64, 128, 0.4); /* dark blue overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.custom-hero-content h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.custom-hero-content p {
    font-size: 1.2rem;
    color: #e6f0ff;
}

/* MISSION & VISION SECTION */
.mission-vision {
    background: linear-gradient(to left, #e8f2ff, #ffffff);
    padding: 50px 20px;
}

.mission-vision .container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    gap: 30px;
}

.mission-vision-item p {
    color: #333;
    line-height: 1.6;
}

/* Section Headings with Underline */
.section-heading {
    font-size: 2rem;
    color: #004080;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 6px;
    display: inline-block;
}

.section-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--thirdary-color);
    border-radius: 2px;
}
.mission-vision p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
    text-align: justify;
}

/*about us start*/
/* Hero Section */
.hero-section2 {
    position: relative;
    height: 45vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay1 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-btn {
    padding: 10px 25px;
    font-size: 15px;
    background: linear-gradient(135deg, #e63946, #d62828);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #d62828, #b71c1c);
    transform: scale(1.05);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}

.fade-in-up.delay-1 { animation-delay: 0.3s; }
.fade-in-up.delay-2 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    height: 3px;
    width: 60px;
    background: var(--thirdary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}
/*  Section */
#about-content {
    background: linear-gradient(to right, #e8f2ff, #ffffff);
    padding: 60px 0;
    overflow: hidden;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    animation: fadeInLeft 0.8s ease forwards;
    opacity: 0;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0077cc;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #0077cc;
    border-radius: 2px;
}

/* Styled Paragraphs */
.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #444;
    background: rgba(0, 119, 204, 0.05);
    padding: 12px 15px;
    border-left: 4px solid #0077cc;
    border-radius: 5px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.about-text p:hover {
    background: rgba(0, 119, 204, 0.1);
    transform: translateX(5px);
}

.about-image {
    flex: 1;
    animation: fadeInRight 0.8s ease forwards;
    opacity: 0;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 119, 204, 0.3);
}

/* Animations */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
    }
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-text p {
        text-align: left;
    }
}


/* Stylish List Section */
.zigzag-tree {
    position: relative;
    width: 80%;
    margin: auto;
    padding: 40px 0;
    background: linear-gradient(to left, #e8f2ff, #ffffff);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
}

/* Vertical center line with subtle gradient + shadow */
.zigzag-tree::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom,rgb(0, 119, 204));
    box-shadow: 0 0 8px rgba(74, 108, 247, 0.5);
    border-radius: 2px;
}

/* Remove vertical connectors (bullets) */
.zigzag-item::before {
    content: none;
}

.zigzag-item {
    width: 50%;
    padding: 10px 30px;
    position: relative;
    opacity: 0;
    transform: translateY(60px);
    animation: fadeSlide 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.zigzag-item:nth-child(1) { animation-delay: 0.15s; }
.zigzag-item:nth-child(2) { animation-delay: 0.35s; }
.zigzag-item:nth-child(3) { animation-delay: 0.55s; }
.zigzag-item:nth-child(4) { animation-delay: 0.75s; }
.zigzag-item:nth-child(5) { animation-delay: 0.95s; }
.zigzag-item:nth-child(6) { animation-delay: 1.15s; }
.zigzag-item:nth-child(7) { animation-delay: 1.35s; }

@keyframes fadeSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zigzag-item.left {
    left: 0;
    text-align: right;
}

.zigzag-item.right {
    left: 50%;
    text-align: left;
}

/* Card content with clean white background and subtle shadow */
.zigzag-content {
    background: #fff;
    display: inline-block;
    padding: 16px 22px;
    border-radius: 10px;
    position: relative;
    box-shadow:
      0 6px 12px rgba(26, 53, 126, 0.15);
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    color:rgb(0, 123, 255);;
}

/* Hover glow + scale */
.zigzag-content:hover {
    background: #4a6cf7;
    box-shadow:
      0 8px 25px rgba(74, 108, 247, 0.6);
    transform: scale(1.07);
    color: #fff;
    cursor: default;
}

/* Arrows with soft shadows */
.zigzag-item.left .zigzag-content::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -18px;
    width: 14px;
    height: 14px;
    background: #fff;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    filter: drop-shadow(1px 1px 1px rgba(26, 53, 126, 0.15));
    transition: background 0.3s ease;
    z-index: 5;
}

.zigzag-item.right .zigzag-content::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -18px;
    width: 14px;
    height: 14px;
    background: #fff;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    filter: drop-shadow(-1px 1px 1px rgba(26, 53, 126, 0.15));
    transition: background 0.3s ease;
    z-index: 5;
}

/* Arrow color changes on hover */
.zigzag-content:hover::after {
    background: #4a6cf7;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .zigzag-item {
        width: 100%;
        text-align: left;
        left: 0 !important;
        padding: 12px 24px;
    }
    .zigzag-tree::before {
        left: 20px;
    }
    .zigzag-item.left .zigzag-content::after,
    .zigzag-item.right .zigzag-content::after {
        left: -18px;
        right: auto;
        clip-path: polygon(100% 50%, 0 0, 0 100%);
        filter: drop-shadow(-1px 1px 1px rgba(26, 53, 126, 0.15));
    }
    .zigzag-item::before {
        left: 20px;
        content: none;
    }
}
.departments-section {
    padding: 60px 20px;
    text-align: center;
}

.departments-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

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

.department-card:hover {
    transform: translateY(-5px);
}

.department-image-wrapper {
    position: relative;
    overflow: hidden;
}

.department-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.department-card:hover img {
    transform: scale(1.1);
}

.department-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.department-card:hover .department-overlay {
    opacity: 1;
}

.department-overlay h3 {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 0 10px;
    text-align: center;
}

.department-read-more {
    background: var(--primary-color);
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: background 0.3s ease;
}

.department-read-more:hover {
    background: #004c99;
}

.department-name {
    padding: 15px;
    font-weight: 600;
    font-size: 16px;
}
/* faculty */

/* Wrapper */
.faculty-section-unique {
    padding: 50px 0;
    background-color: #f8f9fa;
}

/* Grid */
.faculty-grid-unique {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Card */

.faculty-card-unique {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faculty-card-unique:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Image */
.faculty-card-unique img {
    width: 100%;
    height: 180px; /* fixed passport size */
    object-fit: cover;
    object-position: top;
    border-bottom: 2px solid #eee;
    transition: transform 0.4s ease;
}

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

/* Overlay */
.faculty-overlay-unique {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

/* Slide up + fade in on hover */
.faculty-card-unique:hover .faculty-overlay-unique {
    bottom: 0;
    opacity: 1;
}

/* Hide name block when overlay is shown */
.faculty-card-unique:hover .faculty-name-unique {
    opacity: 0;
}

/* Overlay text */
.faculty-overlay-unique h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.faculty-role-unique {
    color: red;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 8px;
}

.faculty-overlay-unique p {
    font-size: 12px;
    margin: 3px 0;
}

.faculty-btn-unique {
    margin-top: 8px;
    padding: 6px 12px;
    background-color: #222;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.faculty-btn-unique:hover {
    background-color: red;
}

/* Name block */
.faculty-name-unique {
    padding: 8px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.faculty-name-unique h4 {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 3px;
}

.faculty-name-unique h4 span {
    font-weight: normal;
    font-size: 12px;
}

.faculty-name-unique p {
    font-size: 11px;
    font-weight: bold;
    color: red;
}

/* academic - calender */
.exam-section {
    background-color: #f8f8f8;
    padding: 30px 0;
}

.exam-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Common Box Styling */
.exam-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Left Main Content */
.exam-main {
    flex: 2;
}

.section-title {
    font-size: 22px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--thirdary-color);
    padding-bottom: 8px;
    color: var(--thirdary-color);
}

.exam-main p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.exam-main h3 {
    font-size: 20px;
    color: var(--thirdary-color);
    margin-top: 25px;
    margin-bottom: 10px;
}

.exam-main h4 {
    font-size: 18px;
    color: #444;
    margin-top: 15px;
    margin-bottom: 8px;
}

.exam-main ul {
    margin: 0;
    padding: 0 0 0 18px;
}

.exam-main ul li {
    margin-bottom: 5px;
}

/* Table Styling */
.marks-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.marks-table th, .marks-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.marks-table th {
    background-color: var(--thirdary-color);
    color: #fff;
}

.marks-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.marks-table tr:hover {
    background-color: #f1f1f1;
}

/* Right Sidebar */
.exam-sidebar {
    flex: 1;
    min-width: 250px;
}

.exam-sidebar-header {
    font-size: 20px;
    color: var(--thirdary-color);
    border-bottom: 2px solid var(--thirdary-color);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.exam-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.exam-sidebar ul li {
    border-bottom: 1px solid #ddd;
}

.exam-sidebar ul li:last-child {
    border-bottom: none;
}

.exam-sidebar ul li a {
    display: block;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.exam-sidebar ul li a:hover {
    color: var(--secondary-color);
    background-color: var(--thirdary-color);
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .exam-container {
        flex-direction: column;
    }
}
/* read more or show more */
.main-btn-container {
    text-align: center;
    margin: 20px 0;
}

.toggle-extra-btns {
    background-color: var(--thirdary-color);
    color: white;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.toggle-extra-btns:hover {
    background-color: var(--accent-color);
}

.hidden-btn-group {
    display: none;
    margin-top: 15px;
}

.hidden-btn-group .link-btn {
    background-color: var(--thirdary-color);
    color: white;
    padding: 8px 15px;
    border: none;
    margin: 5px;
    cursor: pointer;
    border-radius: 4px;
}
.hidden-btn-group .link-btn:hover {
    background-color: var(--accent-color);
}
/* scholarship */

/* Scholarship Info Page Styles */
.scholarship-info-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.scholarship-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Main Area */
.scholarship-main-block {
    flex: 2;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Header Navigation */
.scholarship-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-link {
    color: #2c5282;
    font-weight: 500;
    font-size: 14px;
}

.breadcrumb-sep {
    color: #4a5568;
    margin: 0 8px;
    font-weight: bold;
}

/* Page Title */
.scholarship-page-title {
    color: #2c5282;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff7a7a;
    display: inline-block;
}

/* Content Layout */
.scholarship-details-section {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

/* Eligibility Box */
.scholarship-criteria {
    flex: 1;
}

.criteria-list {
    list-style: none;
    padding: 0;
    counter-reset: criteria-counter;
}

.criteria-item {
    counter-increment: criteria-counter;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #4a5568;
    text-align: justify;
}

.criteria-item::before {
    content: counter(criteria-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #2c5282;
    font-weight: bold;
}

/* Documents Box */
.scholarship-docs {
    flex: 0 0 400px;
}

.docs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.docs-item:last-child {
    border-bottom: none;
}

.docs-icon {
    font-size: 16px;
    margin-right: 12px;
    color: #3182ce;
}

.docs-label {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.4;
}

/* Sidebar */
.scholarship-sidebar-block {
    flex: 0 0 350px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.sidebar-header {
    background-color: var(--thirdary-color);
    padding: 20px;
    color: white;
}

.sidebar-heading {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: white;
}

.sidebar-menu {
    padding: 0;
}

.sidebar-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu-list li {
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-link {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.sidebar-link:hover {
    background-color: var(--thirdary-color);
    color: var(--secondary-color);
    text-decoration: none;
}

.sidebar-link.active {
    background-color: #2c5282;
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .scholarship-layout {
        flex-direction: column;
    }
    .scholarship-sidebar-block {
        flex: none;
        width: 100%;
        margin-top: 20px;
    }
    .scholarship-details-section {
        flex-direction: column;
        gap: 30px;
    }
    .scholarship-docs {
        flex: none;
    }
}

@media (max-width: 768px) {
    .scholarship-info-wrapper {
        padding: 10px;
    }
    .scholarship-main-block {
        padding: 20px;
    }
    .scholarship-page-title {
        font-size: 20px;
    }
    .scholarship-breadcrumb {
        font-size: 12px;
    }
    .breadcrumb-sep {
        margin: 0 4px;
    }
    .criteria-item {
        padding-left: 25px;
        margin-bottom: 15px;
    }
    .recipients-section {
        margin-top: 30px;
        padding-top: 20px;
    }
}
/* Student induction */
.timetable-wrapper {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f9fbfd, #ffffff);
}
.timetable-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}
.timetable-section {
    flex: 1;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.academic-year {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}
.academic-year h3 {
    color: var(--thirdary-color);
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--thirdary-color);
    display: inline-block;
    padding-bottom: 5px;
}
.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--thirdary-color);
    color: #fff;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.3s;
}
.btn-red:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}
.btn-red i {
    font-size: 16px;
}
 /* principal desk */

 /* Principal Desk Section */
.principal-desk-section {
    background-color: #fdecd6; /* light peach background */
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.principal-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.principal-left {
    flex: 1;
    text-align: center;
}

.principal-image {
    width: 100%;
    max-width: 320px;
    border: 4px solid #f4e0c8;
    border-radius: 4px;
}

.principal-name {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #00274d;
    border-bottom: 2px solid #f14b4b;
    display: inline-block;
    padding-bottom: 5px;
}

.principal-title {
    font-size: 15px;
    font-weight: bold;
    margin-top: 5px;
}

.principal-right {
    flex: 2;
}

.section-heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    border-bottom: 1px solid #f4c2a1;
    padding-bottom: 5px;
}

.quote {
    font-style: italic;
    font-weight: bold;
    margin-bottom: 15px;
}

.principal-right p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}


/* Footer  */
.footer {
  background-color: #1b1b1b;
  color: #fff;
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

.footer .widget h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
}

.footer .widget-title1 {
  font-size: 18px;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #ffd700;
}

.headersocials img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  transition: transform 0.3s;
}

.headersocials img:hover {
  transform: scale(1.1);
}


/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .headersocials img {
    margin-bottom: 10px;
  }
}
.footer-widget .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-widget .col-md-3 {
  flex: 1 1 22%;
  min-width: 200px;
  padding: 10px;
}

.footer {
  background-color: #1b1b1b;
  color: #fff;
}

.footer .widget h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer ul li {
  list-style: none;
  margin-bottom: 6px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer ul li a:hover {
  color: #ffd700;
}

/* Mobile fix */
@media (max-width: 768px) {
  .footer-widget .col-md-3 {
    flex: 1 1 100%;
    text-align: center;
  }
}
.headersocials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.headersocials img {
  width: 28px;
  height: 28px;
  margin: 0;
}
/* Gallery */
.event-gallery-container {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 20px auto;
}

/* Left Menu Styling */
.event-menu {
    flex: 0 0 250px;
    width: 18%;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.event-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-menu ul li a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s, color 0.3s;
}

.event-menu ul li a:hover,
.event-menu ul li a.active {
    background: linear-gradient(45deg, var(--thirdary-color), var(--thirdary-color));
    color: #fff;
}

/* Right Image Container */
.event-images {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
    height: auto;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.5s forwards;
}
.event-gallery-container {
    align-items: flex-start;
    width: 82%;
}
.image-card {
    flex: 1 1 30%;
    /* flex: 1 1 calc(33.333% - 10px); */
    width: calc(32% - 10px);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-card:hover img {
    transform: scale(1.0);
}

.category {
    display: none;

}

.active-category {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}


.image-caption {
    background: var(--thirdary-color);
    color: #fff;
    padding: 10px;
    font-size: 14px;
    text-align: center;
}
#imageOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    animation: fadeIn 0.3s ease forwards;
}

#imageOverlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    transform: scale(0.8);
    opacity: 0;
    animation: zoomIn 0.3s ease forwards;
}

#closeOverlay {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
}

#closeOverlay:hover {
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* infrastructure */
.gallery-section {
    padding: 40px;
    background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
    font-family: Arial, sans-serif;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    transition: 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    background: rgba(0, 0, 0, 0.8);
}
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 80%;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: #fff;
    font-size: 18px;
    text-align: center;
    max-width: 80%;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

.close-lightbox:hover {
    color: #ff4d4d;
}
.gallery-heading {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.gallery-heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background:var(--thirdary-color);
    margin: 8px auto 0;
    border-radius: 2px;
}
/* Layout Container */
.academic-container {

    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* PDF Section */
.academic-pdf-box {
    flex: 2;
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.academic-pdf-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--thirdary-color);
    margin-bottom: 15px;
    border-bottom: 3px solid var(--thirdary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.academic-pdf-btn {
    background: linear-gradient(45deg, var(--thirdary-color), var(--thirdary-color));
    color: white;
    border: none;
    padding: 10px 18px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.academic-pdf-btn:hover {
    background: linear-gradient(45deg, var(--thirdary-color), var(--thirdary-color));
    transform: scale(1.05);
}

.academic-pdf-frame iframe {
    width: 100%;
    height: 1000px;
    border-radius: 10px;
    border: 2px solid #ddd;
}


/* Sidebar */
/* Sidebar */
.academic-sidebar {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Header */
.academic-sidebar-header {
    background-color: var(--thirdary-color);
    color: white;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Menu List */
.academic-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

.academic-menu-list li {
    border-bottom: 1px solid #f0f0f0;
}

.academic-menu-list li:last-child {
    border-bottom: none;
}

.academic-menu-link {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333333;
    transition: background 0.2s;
}

.academic-menu-link:hover {
    background-color: #f5f5f5;
}

/* for-registration */

.scholarship-layout {
    display: flex;
    gap: 30px;
}

.scholarship-main-block {
    flex: 3;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.scholarship-sidebar-block {
    flex: 1;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
}

.scholarship-page-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.scholarship-details-section p {
    margin-bottom: 20px;
}

.alumni-form .form-group {
    margin-bottom: 15px;
}

.alumni-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.alumni-form input,
.alumni-form select,
.alumni-form textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.alumni-form textarea {
    min-height: 60px;
}

.btn-submit {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-submit:hover {
    background: #0056b3;
}

.sidebar-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu-list li {
    margin-bottom: 10px;
}

.sidebar-menu-list .sidebar-link {
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    color: #333;
    background: #eaeaea;
}

.sidebar-menu-list .sidebar-link.active,
.sidebar-menu-list .sidebar-link:hover {
    background: #007bff;
    color: white;
}

/* contact-person */
.scholarship-info-wrapper {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.scholarship-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Main Content Area */
.scholarship-main-block {
    flex: 0 0 75%;
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.scholarship-page-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #004d99;
}

.scholarship-details-section p {
    font-size: 15px;
    line-height: 1.6;
}

/* Table Styling */
.table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
    background: #fff;
}

.table thead th {
    background-color: #004d99;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    text-align: left;
}

.table tbody td {
    padding: 10px;
    border: 1px solid #ddd;
}

.table tbody tr:nth-child(even) {
    background-color: #f4f4f4;
}

/* Sidebar */
.scholarship-sidebar-block {
    flex: 0 0 23%;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: fit-content;
}

.sidebar-header {
    margin-bottom: 15px;
}

.sidebar-heading {
    font-size: 20px;
    font-weight: bold;
    color: #004d99;
}

.sidebar-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu-list li {
    margin-bottom: 8px;
}

.sidebar-link {
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
    background-color: #004d99;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .scholarship-layout {
        flex-direction: column;
    }
    .scholarship-main-block,
    .scholarship-sidebar-block {
        flex: 0 0 100%;
    }
}

/*  mandatory disclosure  */

.mandatory-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.mandatory-pdf-box {
  flex: 1 1 70%;
}

.mandatory-pdf-heading {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.mandatory-pdf-btn {
  display: inline-block;
  padding: 8px 15px;
  background: #0056b3;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 15px;
}

.mandatory-pdf-btn:hover {
  background: #004494;
}

.mandatory-pdf-frame iframe {
  width: 100%;
  height: 600px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* Sidebar */
.mandatory-sidebar {
  flex: 1 1 25%;
  background: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: fit-content;
}

.mandatory-sidebar-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 2px solid #0056b3;
  padding-bottom: 5px;
}

.mandatory-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mandatory-menu-list li {
  margin-bottom: 10px;
}

.mandatory-menu-link {
  text-decoration: none;
  display: block;
  padding: 8px 10px;
  border-radius: 4px;
  color: #333;
  transition: 0.3s;
}

.mandatory-menu-link:hover,
.mandatory-menu-link.active {
  background: #0056b3;
  color: #fff;
}

/* balance-sheet */
.mandatory-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.mandatory-pdf-box {
  flex: 1 1 70%;
}

.mandatory-pdf-heading {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.mandatory-pdf-btn {
  display: inline-block;
  padding: 8px 15px;
  background: #0056b3;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 15px;
}

.mandatory-pdf-btn:hover {
  background: #004494;
}

.mandatory-pdf-frame iframe {
  width: 100%;
  height: 600px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.mandatory-sidebar {
  flex: 1 1 25%;
  background: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: fit-content;
}

.mandatory-sidebar-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 2px solid #0056b3;
  padding-bottom: 5px;
}

.mandatory-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mandatory-menu-list li {
  margin-bottom: 10px;
}

.mandatory-menu-link,
.normal-link {
  text-decoration: none;
  display: block;
  padding: 8px 10px;
  border-radius: 4px;
  color: #333;
  transition: background 0.3s ease;
}

.mandatory-menu-link:hover,
.mandatory-menu-link.active {
  background: #0056b3;
  color: #fff;
}
/* examcell */
.staff-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.staff-table th,
.staff-table td {
  border: 1px solid #ccc;
  padding: 8px 10px;
  text-align: left;
}

.staff-table th {
  background: #f0f0f0;
  font-weight: 600;
}

.library-staff-container .staff-card {
  margin-bottom: 20px;
}
/* recruiters */
.recruiters-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.recruiter-card {
  background: #f0f0f0;
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  flex: 0 0 auto;
}

@media (max-width: 576px) {
  .recruiters-grid {
    flex-direction: column;
  }
}

/* Position first dropdown normally */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #0077cc;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
  z-index: 1000;
}

/* Show dropdown on hover */
.dropdown:hover > .dropdown-menu {
  display: block;
}

/* Style submenu container */
.dropdown-menu .menu-item-has-children {
  position: relative;
}

/* Sub-menu flyout */
.dropdown-menu .sub-menu {
  position: absolute;
  top: 0;
  left: 100%; /* makes it appear at right side */
  display: none;
  background: var(--thirdary-color);
  min-width: 200px;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 1000;
}

/* Show sub-menu on hover */
.dropdown-menu .menu-item-has-children:hover > .sub-menu {
  display: block;
}

/* Basic styling */
.dropdown-menu li a, .sub-menu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  /* color: #333; */
  white-space: nowrap;
}

.sub-menu li a:hover {
  background: #fff;
  color: var(--thirdary-color);
}

/* Departments*/

.autoeng-section {
  padding: 50px 10%;
  background: #fff;
}

.autoeng-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.autoeng-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.autoeng-content {
  flex: 1;
}

.autoeng-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--thirdary-color);
  margin-bottom: 8px;
}

.autoeng-title {
  font-size: 32px;
  font-weight: bold;
  color: #111;
  margin-bottom: 12px;
}

.autoeng-overview {
  font-size: 14px;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 10px;
}

.autoeng-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Eligibility Section */
.autoeng-eligibility {
  padding: 50px 10%;
  background: #f9f9f9;
}

.autoeng-eligibility-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #002147;
}

.autoeng-eligibility-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

.autoeng-eligibility-boxes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.autoeng-eligibility-box {
  background: var(--thirdary-color);
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
}

.autoeng-eligibility-num {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.autoeng-eligibility-head {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.autoeng-eligibility-desc {
  font-size: 15px;
  line-height: 1.5;
}
.department-auto-wrapper {
    /* border: 1px solid #111; */
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.department-auto-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--thirdary-color);
    margin-bottom: 0;
    padding: 30px 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-bottom: 2px solid var(--thirdary-color);
}

/* ===== TABS STYLING ===== */
.department-auto-tabs {
    display: flex;
    background: #fff;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--thirdary-color) #fff;
}

.department-auto-tabs::-webkit-scrollbar {
    height: 4px;
}

.department-auto-tabs::-webkit-scrollbar-track {
    background: #fff;
}

.department-auto-tabs::-webkit-scrollbar-thumb {
    background: var(--thirdary-color);
    border-radius: 2px;
}

.department-auto-tab {
    flex: 1;
    padding: 15px 10px;
    background: var(--thirdary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    font-size: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.department-auto-tab:last-child {
    border-right: none;
}

.department-auto-tab:hover {
    /* background: var(--accent-color); */
    transform: translateY(-2px);
}

.department-auto-tab:focus {
    outline: 2px solid var(--thirdary-color);
    outline-offset: -2px;
}

.department-auto-tab.active {
    background: #fff;
    color: var(--thirdary-color);
    position: relative;
}

.department-auto-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    /* background: #fff; */
}

/* ===== CONTENT PANELS ===== */
.department-auto-content {
    padding: 10px;
    min-height: 100px;
    background: #fff;
    border: 2px solid var(--thirdary-color);
    margin: 30px;
}

.department-auto-panel {
    display: none;
    animation: fadeInContent 0.5s ease-in-out;
}

.department-auto-panel.active {
    display: block;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.department-auto-subtitle {
    /* color: var(--thirdary-color); */
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
}

.department-auto-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    /* background: linear-gradient(90deg, var(--thirdary-color) 0%,var(--thirdary-color)  100%); */
}

/* ===== HIGHLIGHTS STYLING ===== */
.department-auto-highlights-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 0;
}

.department-auto-highlights-list li {
    font-size: 16px;
    padding: 6px 0;
    margin-bottom: 6px;
    color: #333;
}

/* ===== FACULTY GRID ===== */
/* Faculty Section Wrapper */
.department-auto-panel {
    margin: 50px auto;
    max-width: 1200px;
    padding: 20px;
}

/* Section Title */
.department-auto-subtitle {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    /* color: #0b2c4d; */
    text-transform: uppercase;
    border-bottom: 2px solid var(--thirdary-color);
    display: inline-block;
    padding-bottom: 5px;
}

/* Faculty Grid */
.department-auto-faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Faculty Card */
.department-auto-faculty-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center;
}

.department-auto-faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0,0,0,0.15);
}

/* Faculty Image */
.department-auto-faculty-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

/* Faculty Info */
.faculty-info {
    padding: 15px;
}

.faculty-info strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    text-transform: uppercase;
}

/* Degree and Position */
.faculty-degree {
    font-size: 13px;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 3px;
}

.faculty-position {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
}
.department-facility-section {
    margin: 40px auto;
    max-width: 1100px;
    padding: 20px;
}

.department-facility-title {
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.department-facility-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 30px;
}

.department-facility-image img {
    width: 450px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.department-facility-content {
    flex: 1;
}

.department-facility-heading {
    font-size: 20px;
    font-weight: bold;
    color: var(--thirdary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.department-facility-subheading {
    font-size: 16px;
    font-weight: bold;
    color: #0b2c4d;
    margin-bottom: 10px;
}

.department-facility-list {
    list-style: none;
    padding-left: 0;
}

.department-facility-list li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
}

/* ===============================
   General Page Style
   =============================== */
.scholarship-main-block {
    font-family: "Roboto", Arial, sans-serif;
    color: #2c2c2c;
    line-height: 1.7;
    font-size: 1rem;
    background: #f9fafc;
    padding: 20px;
}

/* ===============================
   Page Title
   =============================== */
.scholarship-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--thirdary-color);
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--thirdary-color);
    letter-spacing: 0.5px;
}

/* ===============================
   Section Box
   =============================== */
.scholarship-details-section {
    background: #fff;
    border: 1px solid #e1e1e1;
    padding: 20px 24px;
    margin-bottom: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease-in-out;
}

.scholarship-details-section:hover {
    transform: translateY(-3px);
}

/* ===============================
   Section Titles
   =============================== */
.scholarship-details-section h4 {
    font-size: 1.2rem;
    color: var(--thirdary-color);
    margin-bottom: 14px;
    font-weight: 600;
    border-left: 4px solid var(--thirdary-color);
    padding-left: 10px;
}

/* ===============================
   Texts & Links
   =============================== */
.scholarship-details-section p {
    margin-bottom: 10px;
    font-size: 0.98rem;
    color: #444;
}

.scholarship-details-section a {
    color: #0066cc;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px dashed #0066cc;
    transition: color 0.2s;
}

.scholarship-details-section a:hover {
    color: #004999;
}

/* ===============================
   Lists
   =============================== */
.scholarship-details-section ul {
    list-style: disc;
    padding-left: 22px;
}

.scholarship-details-section ul li {
    margin-bottom: 7px;
}

.criteria-list {
    list-style-type: decimal;
    padding-left: 24px;
}

.criteria-list li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* ===============================
   Table
   =============================== */
.book-eligibility-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 14px;
    font-size: 0.95rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.book-eligibility-table caption {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--thirdary-color);
    font-size: 1.05rem;
    text-align: left;
}

.book-eligibility-table th,
.book-eligibility-table td {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.book-eligibility-table th {
    background: var(--thirdary-color);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.book-eligibility-table tr:nth-child(even) td {
    background: #f4f7fb;
}

.book-eligibility-table tr:last-child td {
    border-bottom: none;
}

.scholarship-sidebar-block {
    flex: 0 0 23%;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    height: fit-content;
    float: right;
}
.sidebar-header {
    background: var(--thirdary-color);
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #dcdcdc;
}

.sidebar-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}
.sidebar-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-menu-list li {
    border-bottom: 1px solid #f1f1f1;
}

.sidebar-menu-list li:last-child {
    border-bottom: none;
}

.sidebar-link {
    display: block;
    padding: 12px 15px;
    color: #333333;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.sidebar-link:hover {
    background: #f5f7fa;
    color: var(--thirdary-color);
}

/*transport*/

.transport-main-container {
    background: #f9fafc;
    padding: 45px;
    border-radius: 16px;
    font-family: "Poppins", sans-serif;
    color: #333;
    line-height: 1.8;
    width: 75%;
    float: left;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.transport-main-container:hover {
    transform: scale(1.01);
}

/* Title */
.transport-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: var(--thirdary-color);
    margin-bottom: 35px;
    letter-spacing: 0.8px;
    position: relative;
}

.transport-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: var(--thirdary-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Section */
.transport-section {
    margin-bottom: 30px;
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    border: 1px solid #e6ebf2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.transport-section:hover {
    border-color: var(--thirdary-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.transport-section h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--thirdary-color);
    border-left: 5px solid var(--thirdary-color);
    padding-left: 12px;
    font-weight: 600;
}

.transport-section h5 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 8px;
    color: #444;
    font-weight: 600;
}

/* Table */
.transport-route-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 22px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e6ebf2;
    box-shadow: 0 5px 18px rgba(0,0,0,0.07);
}

.transport-route-table caption {
    caption-side: top;
    text-align: left;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--thirdary-color);
    border-left: 4px solid var(--thirdary-color);
    padding-left: 10px;
}

.transport-route-table th,
.transport-route-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #f0f2f6;
    font-size: 15px;
}

.transport-route-table th {
    background: var(--thirdary-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transport-route-table tr:nth-child(even) {
    background: #f8faff;
}

.transport-route-table tr:hover {
    background: #eaf2ff;
    transition: background 0.3s ease;
}

/* Rules */
.transport-rules {
    margin-left: 15px;
    padding-left: 20px;
    border-left: 3px solid var(--thirdary-color);
}

.transport-rules h4 {
    margin-top: 22px;
    color: var(--thirdary-color);
    font-size: 20px;
    font-weight: 600;
}

.transport-rules li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
    font-size: 15.5px;
    color: #444;
}

.transport-rules li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--thirdary-color);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.transport-points {
    margin: 0;
    padding-left: 22px;
    list-style: none;
}

.transport-points li {
    margin-bottom: 12px;
    padding-left: 26px;
    position: relative;
    font-size: 15.5px;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

.transport-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #0072ff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.mvo-section {
    width: 65%;                  /* left side width */
    float: left;                 /* align left */
    display: flex;
    flex-direction: column;
    gap: 70px;                   /* vertical gap between items */
    margin: 30px 40px 30px 20px; /* add side spacing (right + left) */
    box-sizing: border-box;      /* safe sizing */
}

.mvo-item {
    display: flex;
    align-items: center;
    gap: 40px;                   /* gap between image & text */
}

.mvo-item.reverse {
    flex-direction: row-reverse; /* alternate layout */
}

.mvo-image img {
    width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mvo-image img:hover {
    transform: scale(1.03);
}

.mvo-text {
    flex: 1;
}

.mvo-text h2 {
    font-size: 28px;
    color: #002147;
    margin-bottom: 15px;
    border-left: 5px solid #f39c12;
    padding-left: 12px;
}

.mvo-text h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #444;
}

.mvo-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.placement-officer-section {
display: flex;
    justify-content: center;   /* centers the whole block */
    align-items: flex-start;
    gap: 40px;                 /* spacing between left and right */
    margin: 30px auto;
    max-width: 1100px;
}

/* left side */
.placement-officer-box {
    flex: 0 0 65%;
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}


.officer-photo img {
    width: 250px;
    height: auto;
    border-radius: 6px;
    border: 3px solid #002147;
}

.officer-details h3 {
    font-size: 18px;
    color: #002147;
    margin: 0 0 8px;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
    padding-bottom: 2px;
}

.officer-details h4 {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0;
    color: #333;
}

.officer-role {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.officer-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.officer-details li {
    font-size: 14px;
    margin: 6px 0;
}

.officer-details li strong {
    color: #002147;
}

