/* ==========================================================================
   Sections CSS
   ========================================================================== */

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--color-dark-navy);
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 6s ease;
}

.hero-slide.active .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(0, 91, 172, 0.6) 50%, rgba(255, 184, 0, 0.4) 100%);
}

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

.hero-text {
  max-width: 800px;
  color: white;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s ease 0.5s;
}

.hero-slide.active .hero-text {
  transform: translateY(0);
  opacity: 1;
}

.hero-text .badge {
  display: inline-block;
  margin-bottom: 20px;
}

.hero-text h2 {
  font-size: 4rem;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

/* Slider Controls */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 20;
  transition: all var(--transition-normal);
  backdrop-filter: blur(5px);
}

.slider-nav:hover {
  background: var(--color-primary);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

/* Quick Actions */
.quick-actions {
  margin-top: -100px;
  position: relative;
  z-index: 30;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.quick-card {
  padding: 35px 20px;
  text-align: center;
  border-radius: 20px;
  background: #ffffff !important;
  backdrop-filter: none !important;
  border: 1px solid rgba(0, 91, 172, 0.08) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Accent top border */
.quick-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.quick-card:hover::before {
  opacity: 1;
}

.quick-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 60px rgba(0, 91, 172, 0.15) !important;
  border-color: rgba(0, 91, 172, 0.2) !important;
}

.quick-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 91, 172, 0.05), rgba(0, 91, 172, 0.15));
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 25px;
  transition: all 0.5s ease;
  position: relative;
}

/* Inner ring for icon */
.quick-card .icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 91, 172, 0.2);
  transition: all 0.5s ease;
  opacity: 0;
  transform: scale(0.8);
}

.quick-card:hover .icon {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 91, 172, 0.3);
}

.quick-card:hover .icon::after {
  opacity: 1;
  transform: scale(1);
  animation: spin 10s linear infinite;
}

.quick-card h3 {
  font-size: 1.15rem;
  font-family: var(--font-secondary);
  color: var(--color-dark-navy);
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
}

.quick-card:hover h3 {
  color: var(--color-primary);
}

/* Welcome Section */
.welcome-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.welcome-content {
  flex: 1;
}

.welcome-image {
  flex: 1;
  position: relative;
}

.welcome-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.welcome-img-bg {
  position: absolute;
  top: 30px;
  right: -30px;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  z-index: 1;
}

/* Features (Why Choose) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.5s ease;
  transform-origin: bottom;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 91, 172, 0.2);
}

.feature-card:hover::before {
  transform: scaleY(1);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: 25px;
  transition: all 0.5s ease;
  display: inline-block;
}

.feature-card:hover .feature-icon {
  color: white;
  transform: scale(1.2) rotateY(360deg);
}

.feature-card h3, .feature-card p {
  transition: color 0.4s ease;
}

.feature-card:hover h3, .feature-card:hover p {
  color: white;
}

/* Statistics */
.statistics {
  background: var(--gradient-overlay), url('../assets/images/stats-bg.jpg') no-repeat center/cover;
  color: white;
  background-attachment: fixed;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item .counter {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Gallery Masonry */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}

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

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-row: span 2;
  grid-column: span 2;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 91, 172, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-normal);
}

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

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

.gallery-overlay i {
  color: white;
  font-size: 2rem;
  transform: scale(0);
  transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* CTA Banner */
.cta-banner {
  background: var(--gradient-primary);
  padding: 50px 0;
  text-align: center;
  color: white;
  border-radius: var(--radius-lg);
  margin: 30px 0;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
  color: white;
  font-size: 2.5rem;
}

/* FAQ Accordion */
.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 91, 172, 0.1);
  transform: translateY(-3px);
  border-color: rgba(0, 91, 172, 0.15);
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(0, 91, 172, 0.15);
}

.faq-header {
  padding: 22px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-dark-navy);
  transition: all 0.3s ease;
}

.faq-item.active .faq-header {
  color: var(--color-primary);
  background: rgba(0, 91, 172, 0.02);
}

.faq-header i {
  color: var(--color-text-muted);
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: var(--color-light-gray);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq-item:hover .faq-header i {
  color: var(--color-primary);
  background: rgba(0, 91, 172, 0.1);
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
  color: white;
  background: var(--color-primary);
  box-shadow: 0 4px 10px rgba(0, 91, 172, 0.3);
}

.faq-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.4s ease;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-content {
  padding: 0 25px 25px;
  max-height: 1000px;
  transition: max-height 0.6s ease-in-out, padding 0.4s ease;
}
/* Principal Message */
.principal-section { background: var(--color-white); }
.principal-inner { display: flex; align-items: center; gap: 50px; }
.principal-img { flex: 1; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.principal-content { flex: 1; }
.quotation { font-family: var(--font-heading); font-size: 1.5rem; font-style: italic; color: var(--color-primary); margin-bottom: 20px; position: relative; padding-left: 40px; }
.quotation::before { content: '\201C'; font-size: 4rem; position: absolute; left: -10px; top: -20px; color: var(--color-secondary); opacity: 0.3; }
.signature { font-family: 'Brush Script MT', cursive; font-size: 2rem; color: var(--color-dark-navy); margin-top: 20px; }

/* Vision & Mission */
.v-m-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.v-m-card { background: white; padding: 25px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); text-align: center; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); border-top: 4px solid var(--color-primary); position: relative; overflow: hidden; z-index: 1; }
.v-m-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0, 91, 172, 0.05), rgba(0, 91, 172, 0)); z-index: -1; transform: scaleY(0); transform-origin: top; transition: transform 0.5s ease; }
.v-m-card:hover { transform: translateY(-15px) scale(1.03); box-shadow: 0 25px 50px rgba(0, 91, 172, 0.15); border-color: var(--color-accent); }
.v-m-card:hover::before { transform: scaleY(1); }
.v-m-icon { font-size: 3rem; color: var(--color-primary); margin-bottom: 20px; transition: transform 0.5s ease; }
.v-m-card:hover .v-m-icon { transform: rotateY(360deg) scale(1.2); color: var(--color-accent); }

/* World-Class Facilities */
.facilities-grid { margin-top: 25px; }
.facility-card { position: relative; overflow: hidden; background: white; z-index: 1; transition: all 0.4s ease !important; cursor: pointer; }
.facility-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0; background: var(--color-primary); transition: all 0.4s ease; z-index: -1; }
.facility-card:hover { transform: translateY(-10px) !important; box-shadow: 0 20px 40px rgba(0, 91, 172, 0.2) !important; }
.facility-card:hover::before { height: 100%; }
.facility-card i, .facility-card h3 { transition: all 0.4s ease; }
.facility-card:hover i { color: white !important; transform: scale(1.2) translateY(-5px); }
.facility-card:hover h3 { color: white; }

/* Academic Programs & Campus Life */
.program-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; }
.program-card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(0, 91, 172, 0.15); }
.program-img { height: 220px; width: 100%; object-fit: cover; transition: transform 0.8s ease; }
.program-card:hover .program-img { transform: scale(1.1); }
.program-content { padding: 30px; background: white; position: relative; z-index: 10; transition: all 0.3s ease; }
.program-card:hover .program-content h3 { color: var(--color-primary); }

/* Premium Alternating Timeline */
.premium-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}
.premium-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
  border-radius: 4px;
  opacity: 0.6;
}
.premium-timeline-item {
  display: flex;
  justify-content: flex-end;
  width: 50%;
  position: relative;
  margin-bottom: 30px;
  padding-right: 50px;
  z-index: 1;
}
.premium-timeline-item:nth-child(even) {
  justify-content: flex-start;
  margin-left: 50%;
  padding-right: 0;
  padding-left: 50px;
}
.pt-icon {
  position: absolute;
  top: 30px;
  right: -25px;
  width: 50px;
  height: 50px;
  background: white;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 18px;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 0 8px rgba(0, 91, 172, 0.1);
}
.premium-timeline-item:nth-child(even) .pt-icon {
  right: auto;
  left: -25px;
}
.premium-timeline-item:hover .pt-icon {
  background: var(--color-primary);
  color: white;
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(0, 91, 172, 0.4);
}
.pt-content {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 450px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.premium-timeline-item:nth-child(odd) .pt-content {
  border-right: 5px solid transparent;
}
.premium-timeline-item:nth-child(even) .pt-content {
  border-left: 5px solid transparent;
}
.premium-timeline-item:hover .pt-content {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 91, 172, 0.15);
}
.premium-timeline-item:nth-child(odd):hover .pt-content {
  border-right-color: var(--color-accent);
}
.premium-timeline-item:nth-child(even):hover .pt-content {
  border-left-color: var(--color-accent);
}
.pt-year {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 91, 172, 0.1);
  color: var(--color-primary);
  font-weight: 700;
  border-radius: 30px;
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.pt-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--color-dark-navy);
}
.pt-content p {
  color: var(--color-gray);
  margin-bottom: 0;
  line-height: 1.8;
  font-size: 1.05rem;
}

@media (max-width: 991px) {
  .premium-timeline::before { left: 30px; transform: none; }
  .premium-timeline-item { width: 100%; padding-right: 0; padding-left: 80px; justify-content: flex-start; }
  .premium-timeline-item:nth-child(even) { margin-left: 0; padding-left: 80px; }
  .pt-icon { left: 5px; right: auto; top: 30px; transform: none; }
  .premium-timeline-item:nth-child(even) .pt-icon { left: 5px; right: auto; top: 30px; transform: none; }
  .premium-timeline-item:hover .pt-icon { transform: scale(1.2); }
  .pt-content { max-width: 100%; }
  .premium-timeline-item:nth-child(odd) .pt-content, .premium-timeline-item:nth-child(even) .pt-content { border-right: none; border-left: 5px solid transparent; }
  .premium-timeline-item:nth-child(odd):hover .pt-content, .premium-timeline-item:nth-child(even):hover .pt-content { border-left-color: var(--color-accent); border-right-color: transparent; }
}

/* Video Gallery */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

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

.video-thumbnail {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.video-card:hover .video-thumbnail {
  transform: scale(1.1);
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-card:hover .video-play-overlay {
  background: rgba(10, 25, 47, 0.2);
}

.video-play-overlay i {
  width: 70px;
  height: 70px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding-left: 5px;
  box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.7);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease, background 0.3s ease;
}

.video-card:hover .video-play-overlay i {
  transform: scale(1.15);
  background: var(--color-accent);
  animation: none;
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.9), transparent);
  color: white;
}

.video-info h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Testimonials */
.testi-card { background: white; padding: 30px; border-radius: var(--radius-lg); box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-top: 60px; margin-bottom: 20px; text-align: center; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.testi-card:hover { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,91,172,0.15); }
.testi-img { width: 90px; height: 90px; border-radius: 50%; margin: -75px auto 20px; border: 5px solid white; box-shadow: 0 5px 15px rgba(0,0,0,0.1); object-fit: cover; transition: all 0.4s ease; }
.testi-card:hover .testi-img { transform: scale(1.1) rotate(5deg); border-color: var(--color-primary); }
.stars { color: var(--color-accent); margin-bottom: 15px; }

/* News & Events */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.news-card { 
  background: white; 
  border-radius: var(--radius-md); 
  overflow: hidden; 
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0,0,0,0.03);
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 91, 172, 0.15);
  border-color: rgba(0, 91, 172, 0.2);
}
.news-card:hover a {
  color: var(--color-accent) !important;
  text-decoration: underline;
}
.news-img { height: 200px; width: 100%; object-fit: cover; }
.news-content { padding: 20px; }
.news-date { color: var(--color-primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; display: block; }
.notice-board { background: var(--color-light-gray); padding: 20px; border-radius: var(--radius-md); height: 400px; overflow: hidden; position: relative; }
.notice-list { animation: scrollUp 15s linear infinite; }
.notice-list:hover { animation-play-state: paused; }
.notice-item { background: white; padding: 15px; border-left: 4px solid var(--color-primary); margin-bottom: 15px; box-shadow: var(--shadow-sm); }
@keyframes scrollUp { 0% { transform: translateY(100%); } 100% { transform: translateY(-100%); } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.contact-info-item { 
  display: flex; 
  gap: 25px; 
  margin-bottom: 25px; 
  padding: 20px 25px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0,0,0,0.03);
  align-items: center;
}
.contact-info-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(0, 91, 172, 0.12);
  border-color: rgba(0, 91, 172, 0.2);
}
.contact-icon { 
  width: 65px; 
  height: 65px; 
  background: linear-gradient(135deg, var(--color-primary), #00a8ff); 
  color: white; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.8rem; 
  box-shadow: 0 8px 20px rgba(0, 91, 172, 0.3);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}
.contact-info-item:hover .contact-icon {
  transform: rotateY(360deg) scale(1.1);
}
.contact-info-item h3 {
  margin-bottom: 5px;
  color: var(--color-secondary);
  font-size: 1.3rem;
}
.contact-info-item p {
  margin: 0;
  color: var(--color-text-light);
  line-height: 1.5;
}
.form-group { margin-bottom: 20px; }
.form-control { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: var(--radius-sm); font-family: var(--font-secondary); }
.form-control:focus { border-color: var(--color-primary); }


/* Inner Page Shared Layouts */
.page-hero { height: 400px; background: linear-gradient(rgba(11,21,40,0.8), rgba(11,21,40,0.8)), url('../assets/images/slide5.jpg') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; color: white; position: relative; }
.page-hero h1 { font-size: 3.5rem; margin-bottom: 15px; animation: slideUp 0.8s ease forwards; }
.breadcrumb { display: flex; gap: 10px; align-items: center; justify-content: center; font-size: 1rem; color: rgba(255,255,255,0.7); animation: slideUp 0.8s ease 0.2s forwards opacity: 0; }
.breadcrumb a { color: white; text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb i { font-size: 0.8rem; }
.inner-page-section { padding: 80px 0; }
.card { background: white; border-radius: var(--radius-md); box-shadow: 0 5px 15px rgba(0,0,0,0.05); padding: 30px; transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }


/* Premium Admission Process Cards */
.process-card {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, rgba(0, 91, 172, 0.05) 0%, rgba(243, 156, 18, 0.05) 100%);
  transition: all 0.5s ease;
  z-index: -1;
  border-radius: var(--radius-md);
}

.process-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 91, 172, 0.15);
  border-color: var(--color-primary);
}

.process-card:hover::before {
  height: 100%;
}

.process-card .contact-icon {
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.process-card:hover .contact-icon {
  transform: rotateY(360deg) scale(1.15) !important;
  background: var(--color-accent) !important;
  color: var(--color-dark-navy) !important;
  animation: none !important;
}
