/* SCERT UP Inspired Theme for Govt. High School, Talgautiya Bareilly */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
  --primary-color: #7f1d1d;
  --secondary-color: #450a0a;
  --accent-color: #ffb600;
  --text-color: #333333;
  --bg-color: #f4f7f6;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Top Bar */
.top-bar {
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 0.9rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.top-info, .top-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.top-social button, .top-social a {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.top-social button:hover, .top-social a:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border-color: var(--accent-color);
}

/* Header */
.header-area {
  background-color: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-area .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-container img {
  max-height: 80px;
}

.school-title {
  display: flex;
  flex-direction: column;
}

.school-title h1 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 2px;
}

.school-title p {
  color: #666;
  font-size: 1rem;
  font-weight: 600;
}

/* Navbar */
.navbar {
  background-color: var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 15px 20px;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-link:hover, .nav-item.active .nav-link {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  padding: 15px;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-top: 3px solid var(--accent-color);
}

.nav-item:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.3s ease;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: var(--primary-color);
  border-bottom: 1px solid #eee;
}

.dropdown-menu li a:hover {
  background-color: var(--bg-color);
  color: var(--accent-color);
  padding-left: 20px;
}

/* Marquee / Notice */
.notice-section {
  background-color: var(--white);
  border-bottom: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
}

.notice-title {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  padding: 10px 20px;
  font-weight: 700;
  white-space: nowrap;
}

.notice-content {
  flex-grow: 1;
  padding: 0 15px;
  color: var(--primary-color);
  font-weight: 600;
}

/* Slider Section */
.slider-section {
  position: relative;
  height: 550px;
  overflow: hidden;
  background-color: var(--secondary-color);
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  z-index: 1;
}

.slide-blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: blur(15px) brightness(0.4);
  z-index: -1;
  transform: scale(1.1);
}

.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 30px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: slideUp 0.8s ease;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  animation: slideUp 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  padding: 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--accent-color);
  color: var(--secondary-color);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

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

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

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

.btn-primary {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(255, 182, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 182, 0, 0.5);
}

/* Content Sections */
.section-padding {
  padding: 60px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.main-layout {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 30px;
}

@media (max-width: 992px) {
  .main-layout {
    grid-template-columns: 1fr;
  }
}

.right-sidebar {
  background: var(--white);
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  height: fit-content;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  margin-top: 60px;
}

.right-sidebar .section-title {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  margin-bottom: 0;
  padding: 20px;
}

.right-sidebar .section-title h2 {
  color: var(--white);
  margin-bottom: 0;
  font-size: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.right-sidebar .section-title h2::after {
  display: none;
}

.news-ticker-container {
  height: 380px;
  overflow: hidden;
  padding: 15px 20px;
  background-color: #fdfdfd;
}

.news-ticker-container ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.news-ticker-container li {
  padding: 15px;
  margin-bottom: 12px;
  border-radius: 8px;
  background-color: #ffffff;
  border-left: 4px solid var(--secondary-color);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.news-ticker-container li:hover {
  transform: translateX(5px) scale(1.02);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-left-color: var(--primary-color);
}

.horizontal-news-ticker {
  display: flex;
  align-items: center;
  background: var(--white);
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  height: 50px;
}

.ticker-title {
  background: var(--primary-color);
  color: var(--white);
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.1rem;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
}

.ticker-title i {
  margin-right: 8px;
}

.ticker-content {
  flex: 1;
  padding: 0 15px;
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-size: 1.05rem;
}

.ticker-content span {
  display: inline-flex;
  align-items: center;
}

.new-badge {
  background-color: #e74c3c;
  color: white;
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 20px;
  margin-right: 8px;
  animation: blink 1.5s infinite;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(231, 76, 60, 0.4);
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.message-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.message-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-left: 5px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.message-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.message-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 3px solid var(--secondary-color);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease;
}

.message-img:hover {
  transform: scale(1.12);
  border-color: var(--primary-color);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.message-info h3 {
  margin: 0 0 5px 0;
  color: var(--primary-color);
  font-size: 1.3rem;
}

.message-info .designation {
  margin: 0;
  color: #666;
  font-weight: 500;
  font-size: 0.95rem;
}

.message-body p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--text-color);
  text-align: justify;
}

.message-body p:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.card:hover {
  transform: translateY(-10px);
  border-top-color: var(--accent-color);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-content {
  padding: 25px;
}

.card-title {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.25rem;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-col h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-col ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    align-self: flex-end;
  }

  .nav-menu {
    flex-direction: column;
    display: none;
    width: 100%;
  }

  .nav-menu.show {
    display: flex;
  }
  
  .navbar .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .top-info {
    display: none;
  }
  
  .top-bar .container {
    justify-content: center;
  }
  
  .school-title h1 {
    font-size: 1.2rem;
  }
  
  .school-title p {
    font-size: 0.8rem;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
}

/* Subpage Utilities */
.page-hero {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.breadcrumb {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb a {
  color: var(--accent-color);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .sep {
  margin: 0 10px;
}

.inner-content {
  padding: 40px 0;
  max-width: 900px;
  margin: 0 auto;
}
.inner-content h2, .inner-content h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  margin-top: 30px;
}
.inner-content p {
  margin-bottom: 15px;
  text-align: justify;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.info-card {
  background: var(--white);
  border-left: 4px solid var(--accent-color);
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.info-card .label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}
.info-card .value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.data-table th, .data-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.data-table th {
  background-color: var(--secondary-color);
  color: var(--white);
}
.data-table tbody tr:hover {
  background-color: var(--bg-color);
}
.data-table .total-row {
  font-weight: 700;
  background-color: rgba(255, 182, 0, 0.1);
}

/* Notice Board Table Styles */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-top: 25px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.notice-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.notice-table th {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--white);
  padding: 15px;
  font-size: 1.05rem;
  font-weight: bold;
  text-align: left;
  border: 1px solid #ddd;
}

.notice-table th.text-center {
  text-align: center;
}

.notice-table td {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  vertical-align: middle;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.5;
}

.notice-table td.text-center {
  text-align: center;
}

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

.notice-table tbody tr:hover {
  background-color: #f1f5fa;
}

.btn-download {
  display: inline-block;
  background-color: #f1f2f6;
  color: var(--text-color);
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: 1px solid #ddd;
}

.btn-download:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-download i {
  color: #e74c3c;
  margin-right: 5px;
}

.btn-download:hover i {
  color: var(--white);
}

.notice-table .badge {
  background-color: #e74c3c;
  color: white;
  padding: 2px 6px;
  border-radius: 12px;
  font-size: 0.75rem;
  animation: blink 1.5s infinite;
  margin-left: 5px;
}


/* Custom Language Toggle Styles */
#google_translate_element {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  opacity: 0 !important;
  z-index: -1000 !important;
}

/* Hide all possible Google Translate UI elements */
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
.skiptranslate > iframe.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
[class*="goog-te-"],
[class*="VIpgJd-"] { 
  display: none !important; 
}

/* We must unhide the combo box so JS can find it */
select.goog-te-combo {
  display: block !important;
}

body { top: 0px !important; position: static !important; }
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important; 
  box-shadow: none !important;
}

.lang-toggle-btn {
    background: transparent;
    color: #ffb600; /* accent color */
    border: 1px solid #ffb600;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.lang-toggle-btn:hover {
    background: #ffb600;
    color: #022345;
}

/* Home Page Photo Gallery */
.home-gallery-section {
    padding: 30px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-top: 40px;
    margin-bottom: 20px;
}

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

.home-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

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

.home-gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 35, 69, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.home-gallery-item .overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.home-gallery-item:hover .overlay i {
    transform: translateY(0);
}

.btn-view-all {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.btn-view-all:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-view-all i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

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

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

/* Footer Map */
.footer-map {
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.1);
}

.footer-map iframe {
    display: block;
    width: 100% !important;
    min-height: 180px;
    border-radius: 8px;
}

/* Discipline Rules Styles */
.discipline-section {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    margin: 20px 0;
}

.discipline-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.discipline-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.discipline-header h4 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.discipline-table {
    width: 100%;
    border-collapse: collapse;
}

.discipline-table tr {
    transition: var(--transition);
}

.discipline-table tr:hover {
    background-color: rgba(255, 182, 0, 0.06);
}

.discipline-table td {
    padding: 16px 25px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    line-height: 1.7;
}

.discipline-table tr:last-child td {
    border-bottom: none;
}

.discipline-num {
    width: 50px;
    text-align: center;
    vertical-align: middle;
}

.discipline-num span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 3px 8px rgba(127, 29, 29, 0.3);
}

.discipline-text {
    color: var(--text-color);
    font-size: 0.95rem;
}

.discipline-text::first-letter {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .discipline-table td {
        padding: 12px 15px;
    }
    .discipline-num {
        width: 40px;
    }
    .discipline-num span {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

/* Form Styles */
#admissionForm input[type="text"],
#admissionForm input[type="email"],
#admissionForm input[type="tel"],
#admissionForm input[type="date"],
#admissionForm input[type="number"],
#admissionForm select,
#admissionForm textarea {
    transition: var(--transition);
}

#admissionForm input:focus,
#admissionForm select:focus,
#admissionForm textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 182, 0, 0.15);
}

#admissionForm label input[type="checkbox"],
#admissionForm label input[type="radio"] {
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
}

#admissionForm button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 29, 29, 0.4);
}

#admissionForm button[type="reset"]:hover {
    background: #e0e0e0;
}

/* Print Styles for Admission Form */
@media print {
    #top-bar, .header-area, .navbar, .footer, .btn-primary, .btn-outline,
    button[type="submit"], button[type="reset"] {
        display: none !important;
    }
    .page-hero {
        background: var(--primary-color) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    .discipline-section {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    .inner-content {
        padding: 10px 0;
    }
}
