/* Main navbar links */
/* RESET NAVBAR ICONS */
#navbar a i {
  margin-right: 5px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* ICON ANIMATION ON HOVER */
#navbar a:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #ffcc00;
}

/* KEEP EXISTING EFFECTS */
#navbar a {
  position: relative;
  padding: 10px 10px;
  color: #00036a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

#navbar a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0%;
  height: 2px;
  background-color: #ffcc00;
  transition: width 0.3s ease;
}

#navbar a:hover::after,
#navbar .active::after {
  width: 100%;
}

.navbar .dropdown ul a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease;
}

#navbar a {
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
  animation-delay: calc(var(--i) * 0.1s);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Next Slider */
/* Block shadow effect */
.section-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
}

/* Header Underline Animation */
.section-title {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #0d6efd;
  border-radius: 4px;
  animation: underline-slide 1s ease-in-out;
}

@keyframes underline-slide {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 60px;
    opacity: 1;
  }
}

/* Hover zoom on image */
.hover-zoom {
  transition: transform 0.4s ease;
}

.hover-zoom:hover {
  transform: scale(1.03);
}

/* Feature box hover effects */
.feature-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  animation: pulse 0.5s;
}

/* Subtle loading-like animation on hover */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.015);
  }
  100% {
    transform: scale(1);
  }
}

/* General Styles */


/* Container Styling */
.home_banner_grid_container {
  padding: 60px 0;
  background: #ffffff;
}

/* Grid Item Styling */
.home_banner_grid {
  background: #f1f5ff; /* Light bluish card background */
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hover Effect */
.home_banner_grid:hover {
  background: #e3ebff; /* Slightly darker on hover */
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
}

/* Headings */
.home_banner_grid h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1a237e; /* Indigo shade */
}

/* Paragraph */
.home_banner_grid p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Learn More Link */
.home_banner_grid a {
  font-weight: bold;
  color: #0d47a1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.home_banner_grid a:hover {
  color: #002171;
}

.home_banner_grid a img {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.home_banner_grid a:hover img {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .home_banner_grid {
    margin-bottom: 20px;
  }
}


/*Principal Message*/

/* ===== Principal Section ===== */
.halfnhalf.principal {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.about-right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.about-right img:hover {
  transform: scale(1.03);
}

/* Text Side */
.about-left {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 20px;
}

.section-title.align-left {
  text-align: left;
}

.section-title.align-left h2 {
  font-size: 2rem;
  color: #1a237e;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-title.align-left p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

.section-title.align-left p:last-of-type {
  font-weight: bold;
  color: #1a237e;
}

/* Button Styling */
.button .btn {
  display: inline-block;
  padding: 10px 25px;
  font-size: 1rem;
  color: #1a237e;
  border: 2px solid #1a237e;
  background-color: transparent;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.button .btn:hover {
  background-color: #1a237e;
  color: #fff;
}

/* Responsive Styling */
@media (max-width: 991px) {
  .about-left {
    padding: 40px 20px;
  }

  .section-title.align-left h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .about-left {
    padding: 30px 15px;
  }

  .section-title.align-left h2 {
    font-size: 1.5rem;
  }

  .section-title.align-left p {
    font-size: 0.95rem;
  }
}


/*Facilities*/
/* Base Styles */
/* Section Styles */
.centerHeading.section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.centerHeading.section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #241e69;
}

.centerHeading.section > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    padding: 0 15px;
}

/* Facility Card Layout */
.facility-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.fac-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.fac-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover .fac-img img {
    transform: scale(1.08); /* slight zoom for depth */
}

/* Default bottom title */
.fac-txt-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    margin: 0;
    transition: opacity 0.3s ease;
}

.facility-card:hover .fac-txt-title {
    opacity: 0; /* fade out default title */
}

/* Stylish overlay */
.fac-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(36,30,105,0.95), rgba(63,56,145,0.85));
    color: #fff;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    text-align: center;
    box-shadow: inset 0 0 60px rgba(0,0,0,0.3); /* soft inner shadow for depth */
    border-radius: 12px;
}

/* Show overlay on hover */
.facility-card:hover .fac-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Overlay title */
.fac-overlay .fac-overlay-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

/* Overlay description */
.fac-overlay .fac-txt-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s; /* staggered animation */
}

/* Animate overlay text on hover */
.facility-card:hover .fac-overlay .fac-overlay-title,
.facility-card:hover .fac-overlay .fac-txt-desc {
    opacity: 1;
    transform: translateY(0);
}

/*Latest News */

.news-modern {
  background: #fff8f0;
  padding: 10px 0;
  border-top: 2px solid #ff3000;
  border-bottom: 2px solid #ff3000;
}

.news-title {
  margin: 0;
  font-size: 1.2rem;
  color: #ff3000;
}

.news-ticker {
  overflow: hidden;
  position: relative;
  height: 40px;
}

.ticker-text {
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;
  animation: ticker 20s linear infinite;
  font-size: 1rem;
  color: #ff3000;
}

@keyframes ticker {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* Highlight Features */

    /* Container tilt effect */
    .tilt-card {
      perspective: 1000px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      will-change: transform;
      background: white;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      border-radius: 12px;
      padding: 2rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
    }
    .tilt-card:hover {
      transform: rotateX(10deg) rotateY(10deg) scale(1.05);
      box-shadow: 0 12px 24px rgba(0,0,0,0.2);
      z-index: 10;
    }

    /* Icon wrapper with gradient background */
    .icon-wrapper {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 1rem auto;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: box-shadow 0.3s ease;
    }
    .tilt-card:hover .icon-wrapper {
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }

    /* Specific gradient colors */
    .icon-wrapper.library {
      background: linear-gradient(135deg, #3b82f6, #2563eb); /* Blue */
    }
    .icon-wrapper.sms {
      background: linear-gradient(135deg, #10b981, #047857); /* Green */
    }
    .icon-wrapper.computer {
      background: linear-gradient(135deg, #f59e0b, #b45309); /* Orange/Yellow */
    }
    .icon-wrapper.science {
      background: linear-gradient(135deg, #ef4444, #b91c1c); /* Red */
    }

    /* Headings */
    h3 a {
      font-weight: 700;
      font-size: 1.25rem;
      color: #222;
      transition: color 0.3s ease;
    }
    h3 a:hover {
      color: #3b82f6; /* Blue */
      text-decoration: underline;
    }

    /* Paragraph */
    p {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.5;
      flex-grow: 1;
    }

    /* Read More links */
    p > a {
      font-weight: 700;
      transition: color 0.3s ease;
    }
    p > a:hover {
      color: #000;
      text-decoration: underline;
    }

    /* Responsive tweaks */
    @media (max-width: 767.98px) {
      .tilt-card:hover {
        transform: none; /* Disable 3D tilt on small screens */
      }
    }


/*-------------------*/

  /* Reset & base */
  
  /* Left side - fees */
  .fees-structure {
    flex: 1 1 470px;
  }
  .fees-structure h2 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 1.3;
  }

  .fees-form {
    background-color: #8b1225;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    gap: 20px;
    max-width: 470px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgb(139 18 37 / 0.4);
  }

  .fees-form label {
    min-width: 160px;
  }

  .fees-form select {
    flex: 1;
    padding: 11px 14px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    background-color: #8b1225;
    color: white;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 20,0 10,10"/></svg>');
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    transition: background-color 0.3s ease;
  }
  .fees-form select:hover, .fees-form select:focus {
    background-color: #a82037;
    outline: none;
  }

  .fee-display {
    background: white;
    color: #181c23;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 470px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    box-shadow:
      0 3px 7px rgba(24, 28, 35, 0.12),
      0 6px 15px rgba(139, 18, 37, 0.15);
  }

  .btn-enquire {
    background-color: #8b1225;
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    max-width: 240px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow:
      0 6px 15px rgba(139, 18, 37, 0.5);
  }
  .btn-enquire:hover {
    background-color: #a82037;
    box-shadow:
      0 8px 20px rgba(168, 32, 55, 0.8);
  }

  .btn-enquire svg {
    stroke-width: 3;
  }

  /* Right side - trusted */
  .trusted-section {
    flex: 1 1 470px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .trusted-section h2 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 14px;
    text-align: center;
    line-height: 1.3;
  }
  .trusted-section p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 410px;
    text-align: center;
    color: #000;
    line-height: 1.5;
  }

  .trusted-counters {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  .counter-box {
    background: white;
    color: #8b1225;
    border-radius: 8px;
    padding: 20px 26px;
    min-width: 100px;
    text-align: center;
    font-weight: 700;
    box-shadow:
      0 3px 8px rgba(24, 28, 35, 0.12),
      0 7px 17px rgba(139, 18, 37, 0.2);
    user-select: none;
    transition: transform 0.3s ease;
  }
  .counter-box:hover {
    transform: translateY(-5px);
    box-shadow:
      0 8px 22px rgba(139, 18, 37, 0.35);
  }
  .counter-box small {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin-top: 6px;
    color: #555;
  }

  .trusted-links {
    display: flex;
    justify-content: flex-end;
    gap: 36px;
    font-weight: 700;
    font-size: 17px;
    user-select: none;
  }
  .trusted-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
  }
  .trusted-links a:hover {
    color: #e63946;
  }
  .trusted-links a svg {
    stroke-width: 3;
    transition: stroke 0.3s ease;
  }
  .trusted-links a:hover svg {
    stroke: #e63946;
  }

  /* Responsive */
  @media (max-width: 950px) {
    .fees {
      flex-direction: column;
      align-items: center;
      gap: 60px;
      padding: 0 15px;
    }
    .trusted-section h2,
    .trusted-section p,
    .trusted-counters,
    .trusted-links {
      text-align: center;
      justify-content: center;
    }
    .trusted-links {
      gap: 25px;
    }
    .trusted-section p {
      max-width: 100%;
    }
    .fees-structure, .trusted-section {
      max-width: 100%;
    }
    .fees-form, .fee-display {
      max-width: 100%;
    }
  }

  /*Footer Section  */

   /* Footer base */
  #footer.footer {
    position: relative;
    overflow: hidden;
    background: #241e69;
    color: #eee;
    font-family: Verdana, sans-serif;
    z-index: 10;
  }

  /* Background container for floating icons */
  .footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
  }

  /* Floating icons style */
  .floating-icon {
    position: absolute;
    width: 200px;
    opacity: 0.15;
    filter: drop-shadow(0 0 5px #d61c1f);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    will-change: transform;
  }

  /* Individual floating animations & positions */
  .icon1 {
    top: 15%;
    left: 10%;
    animation-name: floatUpDown;
    animation-duration: 6s;
  }

  .icon2 {
    top: 60%;
    left: 25%;
    width: 50px;
    animation-name: floatLeftRight;
    animation-duration: 7s;
  }

  .icon3 {
    top: 40%;
    right: 20%;
    animation-name: floatUpDown;
    animation-duration: 8s;
    animation-delay: 1s;
  }

  .icon4 {
    top: 75%;
    right: 10%;
    width: 200px;
    animation-name: floatLeftRight;
    animation-duration: 5s;
    animation-delay: 0.5s;
  }

  /* Keyframe animations for floating */
  @keyframes floatUpDown {
    0% {
      transform: translateY(0);
      opacity: 0.15;
    }
    50% {
      transform: translateY(-20px);
      opacity: 0.25;
    }
    100% {
      transform: translateY(0);
      opacity: 0.15;
    }
  }

  @keyframes floatLeftRight {
    0% {
      transform: translateX(0);
      opacity: 0.15;
    }
    50% {
      transform: translateX(20px);
      opacity: 0.25;
    }
    100% {
      transform: translateX(0);
      opacity: 0.15;
    }
  }

  /* Footer content layering */
  .footer-top, .copyright-container {
    position: relative;
    z-index: 5;
  }

  #footer .footer-top {
    padding: 40px 0;
  }

  #footer h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 10px #d61c1f;
  }

  #footer ul {
    list-style: none;
    padding: 0;
  }

  #footer ul li {
    padding-bottom: 10px;
    font-weight: 500;
  }

  #footer ul li i {
    color: #d61c1f;
    margin-right: 8px;
    font-size: 14px;
  }

  #footer ul li a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #footer ul li a:hover {
    color: #ff4b4b;
    text-shadow: 0 0 8px #ff4b4b;
  }

  #footer .footer-contact p,
  #footer .footer-info p {
    line-height: 1.8;
    color: #ccc;
  }

  #footer .social-links a {
    font-size: 22px;
    display: inline-block;
    background: #d61c1f;
    color: #fff;
    line-height: 1;
    padding: 10px 12px;
    margin-right: 10px;
    border-radius: 6px;
    box-shadow: 0 0 10px #d61c1f;
    transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }

  #footer .social-links a:hover {
    background: #ff4b4b;
    box-shadow: 0 0 15px #ff4b4b;
    transform: scale(1.1);
    color: #fff;
  }

  .copyright-container {
    
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    color: #aaa;
    border-top: 1px solid #444;
    user-select: none;
  }

  /* Responsive */
  @media (max-width: 768px) {
    #footer .footer-top .col-lg-3, 
    #footer .footer-top .col-md-6 {
      margin-bottom: 30px;
    }
  }

  .app-download {
  margin-top: 15px;
}

.app-download img {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 6px;
  display: inline-block;
}

.app-download img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 6px rgba(214,28,31,0.7));
}


/*About Us*/
/* Banner Section */
  .banner {
    position: relative;
    background: url('/assets/images/slide/3.jpeg') center/cover no-repeat;
    height: 320px;
    display: flex;
    align-items: center;
    padding-left: 50px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    overflow: hidden;
  }
  .banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 0;
    transition: background 0.4s ease;
  }
  .banner:hover::after {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
  }
  .banner h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    animation: fadeInDown 1s ease forwards;
    text-align: center;
  }
  .breadcrumbs {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #ccc;
  }
  .breadcrumbs a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .breadcrumbs a:hover {
    color: #fff;
  }
  .breadcrumbs span {
    margin: 0 8px;
  }
  /* Main container with light background and padding */
  .main-content {
    max-width: 960px;
    background: #fff8e6;
    margin: -80px auto 50px auto;
    padding: 40px 50px;
    box-shadow: 0 12px 20px rgb(0 0 0 / 0.1);
    border-radius: 10px;
    position: relative;
    animation: fadeInUp 1s ease forwards;
  }
  .main-content h2 {
    margin-top: 0;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    color: #2c2c7c;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .main-content p {
    font-size: 1.1rem;
    color: #555;
  }

  /* Two-column section */
  .two-column {
    max-width: 960px;
    margin: 60px auto 80px auto;
    display: flex;
    gap: 60px;
    padding: 0 20px;
    align-items: flex-start;
    animation: fadeIn 1.3s ease forwards;
  }
  .two-column .left {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgb(0 0 0 / 0.15);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
  }
  .two-column .left:hover {
    transform: scale(1.05) rotateY(3deg);
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.3);
  }
  .two-column .left img {
    width: 100%;
    display: block;
  }
  .two-column .right {
    flex: 1;
    font-size: 1.05rem;
    color: #333;
  }
  .two-column .right h2 {
    color: #2c2c7c;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.1;
  }
  .two-column .right p {
    margin-bottom: 30px;
    line-height: 1.7;
  }
  .two-column .right button {
    background-color: #2c2c7c;
    color: white;
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border-radius: 6px;
    letter-spacing: 0.12em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgb(44 44 124 / 0.4);
  }
  .two-column .right button:hover {
    background-color: #1b1b4d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgb(27 27 77 / 0.7);
  }
  .two-column .right button:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgb(27 27 77 / 0.6);
  }

  /* New 3-column Vision/Mission/Values Section */
  .three-column-section {
    max-width: 960px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    text-align: center;
  }
  .three-column-section .column {
    flex: 1;
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  .three-column-section .column:hover {
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.15);
    transform: translateY(-8px);
  }
  .three-column-section .icon {
    font-size: 48px;
    color: #2c2c7c;
    margin-bottom: 18px;
  }
  .three-column-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c2c7c;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  .three-column-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
  }

  /* Animations */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-25px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(25px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  /* Responsive for mobile */
  @media (max-width: 768px) {
    .banner {
      height: 200px;
      font-size: 2.5rem;
      padding-left: 25px;
    }
    .main-content {
      margin: -50px 20px 40px 20px;
      padding: 30px 25px;
    }
    .main-content h2 {
      font-size: 1.8rem;
    }
    .two-column {
      flex-direction: column;
      margin: 40px 20px 60px 20px;
      gap: 40px;
    }
    .two-column .right h2 {
      font-size: 1.6rem;
    }
    .three-column-section {
      flex-direction: column;
      gap: 30px;
      padding: 0 15px;
    }
  }