/* Custom styles for Vivek Vardhini website */

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

/* Body Background */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #FFFFFF;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #FFFFFF;
    padding: 5rem 0;
}

.image-container {
    position: relative;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.navbar{
    background-color: #1a3654
}

.nav-link{
    color: #FFFFFF;
}
.nav-link .active{
 color: #FFFFFF;
}

.image-container:hover img {
    transform: translateY(-5px);
}

.content-wrapper {
    padding-left: 2rem;
}

.section-subtitle {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #666;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-tagline {

    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: #666;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.description-content {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.description-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.action-buttons .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.action-buttons .btn-primary {
    background-color: #2c5aa0;
    border-color: #2c5aa0;
}

.action-buttons .btn-primary:hover {
    background-color: #1e3f73;
    border-color: #1e3f73;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
}

.action-buttons .btn-outline-primary {
    color: #2c5aa0;
    border-color: #2c5aa0;
    background-color: transparent;
}

.action-buttons .btn-outline-primary:hover {
    background-color: #2c5aa0;
    border-color: #2c5aa0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
}

/* Responsive Design */
@media (max-width: 991px) {
    .content-wrapper {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .why-choose-us {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .section-subtitle,
    .section-tagline {
        text-align: center;
    }
    
    .description-content {
        text-align: center;
    }
    
    .action-buttons .btn {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .why-choose-us {
        padding: 2rem 0;
    }
    
    .action-buttons .col-md-6 {
        margin-bottom: 0.5rem;
    }
}

/* Top Contact Bar Styles */
.top-bar {
    background-color: #1a1a1a !important;
    font-size: 0.875rem;
}

.contact-info span {
    white-space: nowrap;
}

.social-icons a {
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.social-icons a:hover {
    color: var(--primary-color) !important;
}

/* Main Navigation Styles */
.navbar {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.navbar-brand h5 {
    color: var(--primary-color) !important;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.navbar-brand small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: #333 !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(44, 90, 160, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-bar {
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info span {
        margin-bottom: 0.25rem;
    }
    
    .social-icons {
        text-align: center !important;
        margin-top: 0.5rem;
    }
    
    .navbar-brand {
        flex-direction: column;
        text-align: center;
    }
    
    .navbar-brand img {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .contact-info {
        font-size: 0.75rem;
    }
    
    .navbar-brand h5 {
        font-size: 1rem;
    }
    
    .navbar-brand small {
        font-size: 0.65rem;
    }
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.features {
    background-color: var(--light-color);
}

.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.btn {
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 3rem 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

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

.hero-section .container {
    z-index: 3;
}

.hero-content {
    padding: 2rem 0;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #ccc;
    font-weight: 500;
}

.hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: #fff;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-main {
    font-size: 2.2rem;
    color: #ffc107 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f8f9fa;
    max-width: 500px;
}

/* Admission Form Styles */
.admission-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.admission-form {
    max-width: 400px;
    width: 100%;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.admission-input {
    background-color: #ffd54f !important;
    border: 2px solid #ffb300;
    border-radius: 8px;
    font-weight: 500;
    color: #333;
}

.admission-input:focus {
    background-color: #fff3c4 !important;
    border-color: #ff8f00;
    box-shadow: 0 0 0 0.2rem rgba(255, 179, 0, 0.25);
}

.admission-input::placeholder {
    color: #666;
    font-weight: 400;
}

.admission-btn {
    background-color: #2c5aa0 !important;
    border-color: #2c5aa0 !important;
    border-radius: 8px;
    padding: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.admission-btn:hover {
    background-color: #1e3f73 !important;
    border-color: #1e3f73 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle-main {
        font-size: 1.8rem;
    }
    
    .admission-form-container {
        margin-top: 3rem;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-main {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .admission-form {
        margin: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        text-align: center;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle-main {
        font-size: 1.3rem;
    }
    
    .admission-form {
        padding: 1.5rem !important;
    }
}

/* Admission Categories Section */
.admission-categories {
    background-color: #f8f9fa;
}

.admission-card {
    min-height: 200px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.admission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.admission-card:hover::before {
    left: 100%;
}

.admission-card:hover {
    background-color: #ffc107 !important;
    color: #333 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.admission-card:hover .admission-title,
.admission-card:hover .admission-description,
.admission-card:hover .admission-btn {
    color: #333 !important;
}

.admission-card:hover .admission-btn {
    text-decoration: underline !important;
}

.admission-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.admission-description {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.admission-btn {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.admission-btn:hover {
    text-decoration: underline !important;
}

.admission-btn i {
    transition: transform 0.3s ease;
}

.admission-card:hover .admission-btn i {
    transform: translateX(5px);
}

/* Highlighted card (Middle School) */
.admission-highlighted {
    background-color: #ffc107 !important;
    color: #333 !important;
}

.admission-highlighted .admission-title,
.admission-highlighted .admission-description,
.admission-highlighted .admission-btn {
    color: #333 !important;
}

/* Responsive Design */
@media (max-width: 991px) {
    .admission-card {
        min-height: 180px;
    }
    
    .admission-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .admission-card {
        min-height: 160px;
        margin-bottom: 1px;
    }
    
    .admission-title {
        font-size: 1.1rem;
    }
    
    .admission-description {
        font-size: 0.9rem;
    }
    
    .admission-btn {
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .admission-card {
        text-align: center;
        padding: 2rem 1.5rem !important;
    }
}
/* The Vivek Vardhani's Advantage Section */
.advantage-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.advantage-tagline {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.advantage-title {
  font-size: 48px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.2;
}

.advantage-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Feature Items */
.advantage-features {
  padding-right: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.feature-icon {
  margin-right: 20px;
  margin-top: 5px;
}

.icon-circle {
  width: 20px;
  height: 20px;
  background-color: #2c3e50;
  border-radius: 50%;
  position: relative;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.row.g-0 > [class*='col'] {
      padding: 0; /* Removes gutter padding */
    }
    .shift-up {
      margin-top: -10px;
    }
    .square-box {
      aspect-ratio: 1 / 1;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      color: white;
    }
    .box-dark {
      background-color: #102840;
    }
    .box-yellow {
      background-color: #f4cf7d;
      color: #000;
    }
    .box-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

   .image-strip {
      display: flex;
      height: 500px; /* Tall height */
      margin: 0;
      padding: 0;
      overflow: hidden;
    }
    .image-strip .img-box {
      flex: 1;
      overflow: hidden;
      transition: flex 0.5s ease;
      position: relative;
    }
    .image-strip .img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .image-strip .img-box:hover {
      flex: 3;
    }
    .image-strip .img-box:not(:hover) {
      flex: 1;
    }
    .image-strip .img-box:hover img {
      transform: scale(1.05);
    }

    /* Remove any gaps */
    .image-strip .img-box {
      margin: 0;
      padding: 0;
    }
/* Remove the mb-4 class effect for better spacing */
.development-card.mb-4 {
  margin-bottom: 0 !important;
}

 .school-section {
      background-color: #163251; /* same as image */
      color: white;
      padding: 60px 0;
    }
    .school-heading {
      font-size: 2.8rem;
      font-weight: bold;
      line-height: 1.3;
    }
    .school-subtext {
      font-size: 1rem;
      color: #d1d1d1;
      margin-top: 1rem;
    }
    .facility-list {
      margin-top: 2rem;
    }
    .facility-list ul {
      list-style: none;
      padding-left: 0;
    }
    .facility-list li {
      margin-bottom: 0.5rem;
    }
     .swiper {
    padding-bottom: 50px;
  }

  .swiper-slide {
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0.6;
    transform: scale(0.9);
  }

  .swiper-slide-active {
    transform: scale(1.05);
    opacity: 1;
    z-index: 2;
  }

  .testimonial-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    min-height: 370px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    color: #000;
  }

/* Responsive Design */
@media (max-width: 991px) {
  .advantage-features,
  .development-cards {
    padding-left: 0;
    padding-right: 0;
  }
  
  .development-cards {
    margin-top: 40px;
  }
  
  .advantage-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .development-card {
    flex-direction: column;
    height: auto;
  }
  
  .card-image,
  .card-content {
    width: 100%;
  }
  
  .card-image {
    height: 180px;
  }
  
  .advantage-section {
    padding: 60px 0;
  }
  
  .advantage-title {
    font-size: 32px;
  }
  
  .feature-title {
    font-size: 20px;
  }
  
  .card-title {
    font-size: 20px;
  }
  
  .card-content {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .advantage-title {
    font-size: 28px;
  }
  
  .feature-item {
    margin-bottom: 30px;
  }
  
  .card-content {
    padding: 20px;
  }
}

.instagram-gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }

    .instagram-gallery .img-box {
      aspect-ratio: 1 / 1;
      overflow: hidden;
    }

    .instagram-section {
      padding: 60px 0 30px 0;
      text-align: center;
    }

    .btn-insta {
      background-color: #1c2e47;
      color: white;
      font-weight: 500;
      padding: 10px 30px;
      border-radius: 0;
      letter-spacing: 0.5px;
      margin-top: 30px;
    }

    .btn-insta:hover {
      background-color: #142033;
      color: #fff;
    }
    .map-section {
    padding-top: 40px;
    padding-bottom: 0px;
  }

  @media (max-width: 768px) {
    .map-section iframe {
      height: 250px;
    }
  }

   h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', Times, serif;
  }

  /* All other body text in Poppins */
  body, p, a, li, ul, ol, span, div, td, th {
    font-family: 'Poppins', sans-serif;
  }

/* Navigation Links Styling */
.navbar-nav .nav-link {
  color: white !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #f1c40f !important;
}

/* Active Link with Underline */
.navbar-nav .nav-link.active {
  color: white !important;
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f1c40f;
  border-radius: 1px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .navbar-nav .nav-link.active::after {
    bottom: 0;
  }
}

/* Footer Styling */
.footer {
  background-color: #1A3654 !important;
  color: white;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.footer .container {
  max-width: 1200px;
}

/* Footer Logo */
.footer img {
  max-width: 200px;
  margin-bottom: 1rem;
}

/* Footer Headings */
.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Footer Links */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

/* Footer Contact Info */
.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Footer Bottom Section */
.footer hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1.5rem 0;
}

.footer .d-flex p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Social Icons */
.footer .d-flex div a {
  color: white !important;
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer .d-flex div a:hover {
  color: #f1c40f !important;
  transform: translateY(-2px);
}

.footer .d-flex div a:last-child {
  margin-right: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding-top: 2rem;
    text-align: center;
  }
  
  .footer .col-md-4,
  .footer .col-md-2,
  .footer .col-md-3 {
    margin-bottom: 2rem;
  }
  
  .footer .d-flex {
    text-align: center;
  }
  
  .footer .d-flex div a {
    margin: 0 0.75rem;
  }
}

/* Additional spacing for better readability */
.footer .row.gy-4 {
  row-gap: 2rem;
}

.footer .col-md-2,
.footer .col-md-3 {
  padding-left: 1.5rem;
}

@media (max-width: 768px) {
  .footer .col-md-2,
  .footer .col-md-3 {
    padding-left: 0;
  }
}

.quote-section {
      background-color: #fccc63; /* similar to the yellow background in image */
      padding: 20px 0;
      text-align: center;
    }
    .quote-section p {
      font-size: 1.5rem;
      font-weight: 600;
      color: #2c2c2c;
      margin-bottom: 10px;
    }
.vision-box {
      background-color: #1A3654;
      color: #fff;
      padding: 40px;
      height: 100%;
    }
    .mission-box {
      background-color: #fccc63;
      color: #2c2c2c;
      padding: 40px;
      height: 100%;
    }
/* About Banner Section */
.about-banner {
  background: linear-gradient(135deg, #1461b4 0%, #1A3654 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.about-banner-bg {
  position: relative;
  z-index: 2;
}

.about-banner-content {
  text-align: left;
  color: white;
}

.about-banner-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Times New Roman', Times, serif;
}

.about-banner-subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Decorative dots pattern */
.banner-dots-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
  background-size: 20px 20px;
  z-index: 1;
}

.banner-dots-pattern::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 50px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.banner-dots-pattern::after {
  content: '';
  position: absolute;
  bottom: 30px;
  right: 100px;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-banner {
    padding: 40px 0;
  }
  
  .about-banner-title {
    font-size: 2.5rem;
  }
  
  .about-banner-subtitle {
    font-size: 0.8rem;
  }
  
  .banner-dots-pattern {
    width: 200px;
  }
}

/* About Content Section */
.about-content {
  background-color: #f8f9fa;
}

.about-content h2 {
  color: #2c3e50;
  font-family: 'Times New Roman', Times, serif;
}

.about-content h3 {
  color: #34495e;
  font-family: 'Times New Roman', Times, serif;
  margin-bottom: 1rem;
}

.about-content p {
  color: #5a6c7d;
  line-height: 1.6;
}

/* Navigation Pills Styling */
.nav-pills .nav-link {
    background-color: transparent;
    border: 2px solid #2c5aa0;
    color: #2c5aa0;
    font-weight: 600;
    padding: 12px 20px;
    margin: 0 5px 10px 0;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-pills .nav-link:hover {
    background-color: #2c5aa0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.nav-pills .nav-link.active {
    background-color: #2c5aa0;
    border-color: #2c5aa0;
    color: white;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
}

.nav-pills .nav-link.active:hover {
    background-color: #1a3654;
    border-color: #1a3654;
    transform: translateY(-2px);
}

/* Responsive adjustments for nav pills */
@media (max-width: 768px) {
    .nav-pills .nav-link {
        padding: 10px 16px;
        font-size: 0.9rem;
        margin: 0 3px 8px 0;
    }
}

@media (max-width: 576px) {
    .nav-pills .nav-link {
        padding: 8px 12px;
        font-size: 0.8rem;
        margin: 0 2px 6px 0;
    }
}

/* Campus Page Styles */
.campus-banner {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3654 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.campus-banner-bg {
    position: relative;
    z-index: 2;
}

.campus-banner-content {
    text-align: center;
    color: white;
}

.campus-banner-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.campus-banner-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Facility Sections */
.facility-title {
    color: #1a3654;
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 600;
}

.facility-content {
    padding: 2rem 0;
}

.facility-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

.facility-features p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.facility-image img {
    transition: transform 0.3s ease;
}

.facility-image:hover img {
    transform: scale(1.05);
}

/* Responsive Design for Campus */
@media (max-width: 991px) {
    .campus-banner-title {
        font-size: 3rem;
    }
    
    .facility-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .facility-content {
        padding: 1rem 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .campus-banner {
        padding: 80px 0 60px;
    }
    
    .campus-banner-title {
        font-size: 2.5rem;
    }
    
    .campus-banner-subtitle {
        font-size: 1rem;
    }
    
    .facility-title {
        font-size: 1.8rem;
    }
    
    .facility-content p {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .campus-banner-title {
        font-size: 2rem;
    }
    
    .facility-title {
        font-size: 1.5rem;
    }
}

/* Facility Cards Styling */
.facility-card {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.facility-card.cafeteria-card {
    background-image: url('https://images.unsplash.com/photo-1567521464027-f127ff144326?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.facility-card.auditorium-card {
    background-image: url('https://images.unsplash.com/photo-1507924538820-ede94a04019d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 84, 0.8) 0%, rgba(44, 90, 160, 0.6) 100%);
    z-index: 1;
}

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

.facility-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: white;
}

.facility-card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
    color: white;
}

.facility-card-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

.facility-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-card-features li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    opacity: 0.9;
}

.facility-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffc107;
    font-weight: bold;
}

/* Academic Facility Cards */
.academic-facility-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.academic-facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #1a3654);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.academic-facility-card h4 {
    color: #1a3654;
    font-family: 'Georgia', serif;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.academic-facility-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Digital Features */
.digital-feature {
    text-align: center;
    padding: 20px;
}

.digital-feature i {
    color: #ffc107;
    margin-bottom: 15px;
}

.digital-feature h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.digital-feature p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design for Facility Cards */
@media (max-width: 768px) {
    .facility-card {
        height: 350px;
        margin-bottom: 20px;
    }
    
    .facility-card-content {
        padding: 25px;
    }
    
    .facility-card-title {
        font-size: 1.5rem;
    }
    
    .facility-card-text {
        font-size: 0.9rem;
    }
    
    .academic-facility-card {
        margin-bottom: 20px;
        padding: 25px 15px;
    }
    
    .facility-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .academic-facility-card h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .facility-card {
        height: 320px;
    }
    
    .facility-card-content {
        padding: 20px;
    }
    
    .facility-card-title {
        font-size: 1.3rem;
    }
}

/* Contact Page Styles */
.contact-banner {
  background: linear-gradient(135deg, #2c5aa0 0%, #1a3654 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
 .note {
      font-size: 0.95rem;
      font-style: italic;
      margin-top: 15px;
      color: #555;
    }
    table th, table td {
      vertical-align: middle;
    }

/* Enhanced Mobile Responsive Styles */

/* Improved Navigation Mobile Styles */
@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand img {
        max-height: 45px;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        font-size: 1.1rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-collapse {
        background-color: rgba(26, 54, 84, 0.98);
        margin-top: 1rem;
        border-radius: 8px;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        text-align: center;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(255, 193, 7, 0.1);
        border-radius: 5px;
    }
}

@media (max-width: 768px) {
    /* Top Contact Bar Mobile */
    .top-bar {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }
    
    .top-bar .contact-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .top-bar .contact-info span {
        display: block;
        margin: 0.2rem 0;
    }
    
    .top-bar .social-icons {
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .top-bar .social-icons a {
        margin: 0 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Navigation Mobile */
    .navbar-brand img {
        max-height: 40px;
    }
    
    .navbar-collapse {
        margin-top: 0.5rem;
        padding: 0.75rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.6rem 0.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    /* Extra Small Devices */
    .top-bar {
        font-size: 0.75rem;
        padding: 0.4rem 0;
    }
    
    .navbar-brand img {
        max-height: 35px;
    }
    
    .navbar-toggler {
        padding: 0.2rem 0.4rem;
        font-size: 1rem;
    }
    
    .navbar-collapse {
        padding: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Enhanced Footer Mobile Styles */
@media (max-width: 991px) {
    .footer {
        padding-top: 2.5rem;
        padding-bottom: 1.5rem;
    }
    
    .footer .col-md-4,
    .footer .col-md-2,
    .footer .col-md-3 {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer img {
        max-width: 180px;
        margin-bottom: 1.5rem;
    }
    
    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffc107;
    }
    
    .footer ul li {
        margin-bottom: 0.6rem;
    }
    
    .footer ul li a {
        font-size: 0.9rem;
        display: inline-block;
        padding: 0.2rem 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 2rem;
        padding-bottom: 1rem;
    }
    
    .footer .container {
        padding: 0 1rem;
    }
    
    .footer .col-md-4,
    .footer .col-md-2,
    .footer .col-md-3 {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer img {
        max-width: 160px;
        margin-bottom: 1rem;
    }
    
    .footer h5 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer p {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
        line-height: 1.4;
    }
    
    .footer ul li a {
        font-size: 0.85rem;
    }
    
    .footer hr {
        margin: 1.5rem 0 1rem 0;
    }
    
    .footer .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer .d-flex p {
        font-size: 0.8rem;
        margin-bottom: 0;
        order: 2;
    }
    
    .footer .social-icons {
        order: 1;
        text-align: center;
    }
    
    .footer .social-icons a {
        margin: 0 0.75rem;
        font-size: 1.1rem;
        padding: 0.5rem;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .footer .social-icons a:hover {
        background-color: #ffc107;
        color: #1A3654 !important;
        transform: translateY(-2px);
    }
}

@media (max-width: 576px) {
    .footer {
        padding-top: 1.5rem;
        padding-bottom: 0.8rem;
    }
    
    .footer .container {
        padding: 0 0.75rem;
    }
    
    .footer .col-md-4,
    .footer .col-md-2,
    .footer .col-md-3 {
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .footer img {
        max-width: 140px;
        margin-bottom: 0.8rem;
    }
    
    .footer h5 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .footer p {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .footer ul li {
        margin-bottom: 0.4rem;
    }
    
    .footer ul li a {
        font-size: 0.8rem;
    }
    
    .footer hr {
        margin: 1rem 0 0.8rem 0;
    }
    
    .footer .d-flex p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .footer .social-icons a {
        margin: 0 0.5rem;
        font-size: 1rem;
        padding: 0.4rem;
    }
}

/* General Mobile Layout Improvements */
@media (max-width: 768px) {
    /* Container padding adjustments */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Section spacing */
    section {
        padding: 2rem 0;
    }
    
    /* Headings mobile optimization */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    h4 {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    /* Button mobile styles */
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Card mobile optimization */
    .card {
        margin-bottom: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    /* Extra small devices */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    section {
        padding: 1.5rem 0;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    h4 {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .btn-lg {
        padding: 0.65rem 1.3rem;
        font-size: 0.95rem;
    }
    
    .card-body {
        padding: 0.75rem;
    }
}

/* Mobile-First Utility Classes */
@media (max-width: 768px) {
    .mobile-center {
        text-align: center !important;
    }
    
    .mobile-stack {
        flex-direction: column !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
    
    .mobile-hide {
        display: none !important;
    }
    
    .mobile-show {
        display: block !important;
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    /* Increase touch targets */
    a, button, .btn {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Form elements */
    .form-control, .form-select {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Navigation links */
    .navbar-nav .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mandatory Disclosure Styles */
.disclosure-header {
  border: 2px solid #2c5aa0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.disclosure-title {
  background-color: #2c5aa0;
  color: white;
  padding: 10px 15px;
  margin: -20px -20px 15px -20px;
  font-size: 1.5rem;
  font-weight: 600;
}

.appendix-text {
  font-weight: 600;
  color: #2c5aa0;
  font-size: 1.1rem;
}

.section-heading {
  background-color: #f8f9fa;
  padding: 10px 15px;
  border-left: 4px solid #2c5aa0;
  margin-bottom: 20px;
  font-weight: 600;
  color: #2c5aa0;
}

.disclosure-table {
  border: 2px solid #dee2e6;
}

.disclosure-table th {
  background-color: #e9ecef;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  padding: 12px 8px;
  border: 1px solid #dee2e6;
}

.disclosure-table td {
  padding: 12px 8px;
  vertical-align: middle;
  border: 1px solid #dee2e6;
}

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

.disclosure-table tbody tr:hover {
  background-color: #e3f2fd;
}

/* Note section styling */
.disclosure-note {
  background-color: #f8f9fa;
  border-left: 4px solid #ffc107;
  padding: 15px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.disclosure-note p {
  margin-bottom: 0;
  color: #495057;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .disclosure-header {
    padding: 15px;
  }
  
  .disclosure-title {
    margin: -15px -15px 15px -15px;
    font-size: 1.3rem;
  }
  
  .disclosure-table {
    font-size: 0.9rem;
  }
  
  .disclosure-table th,
  .disclosure-table td {
    padding: 8px 6px;
  }
}

.contact-banner-bg {
  position: relative;
  z-index: 2;
}

.contact-banner-content {
  text-align: center;
}

.contact-banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-banner-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Contact Cards */
.contact-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

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

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2c5aa0, #1a3654);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 1.5rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #2c5aa0;
  box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.contact-form .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

/* Map Container */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Office Hours Card */
.office-hours-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #2c5aa0;
}

/* Quick Contact Banner */
.quick-contact-banner {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  border: 2px solid #2c5aa0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-banner-title {
    font-size: 2.5rem;
  }
  
  .contact-banner-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .quick-contact-banner {
    padding: 2rem 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .contact-banner {
    padding: 100px 0 60px;
  }
  
  .contact-banner-title {
    font-size: 2rem;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
}
