/* ==========================================================================
   SHREE GURUS JUNIOR COLLEGE - Core Styling
   Author: Antigravity Code Assistant
   ========================================================================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables for Cohesive Theme */
:root {
  --primary-color: #0f172a;       /* Dark Slate/Navy */
  --primary-light: #1e293b;       /* Lighter Slate */
  --secondary-color: #ca8a04;     /* Deep Gold */
  --secondary-hover: #a16207;     /* Darker Gold */
  --accent-color: #3b82f6;        /* Academic Blue */
  --text-dark: #0f172a;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
  --box-shadow-hover: 0 20px 40px -15px rgba(15, 23, 42, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
}

/* Reset and Core Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utilities */
.text-center { text-align: center; }
.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}
.title-underline {
  height: 4px;
  width: 60px;
  background: var(--secondary-color);
  margin: 0.5rem auto 1.5rem auto;
  border-radius: 2px;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(202, 138, 4, 0.3);
}

.btn-secondary {
  background-color: var(--primary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navbar */
.top-header {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-header .contact-info {
  display: flex;
  gap: 1.5rem;
}

.top-header .contact-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-header .portal-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.top-header .portal-links a {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.top-header .portal-links a:hover {
  background: var(--secondary-color);
  color: white;
}

.top-header .social-icons {
  display: flex;
  gap: 1rem;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px -10px rgba(0, 0, 0, 0.05);
  transition: var(--transition-normal);
}

.main-header.scrolled {
  padding: 0.5rem 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  width: 42px;
  height: 42px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
}

.logo-text h1 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-color);
  line-height: 1.1;
}

.logo-text p {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-color);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--secondary-color);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  position: absolute;
  transition: var(--transition-normal);
}

.mobile-nav-toggle span:nth-child(1) { top: 0; }
.mobile-nav-toggle span:nth-child(2) { top: 8px; }
.mobile-nav-toggle span:nth-child(3) { top: 16px; }

.mobile-nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

/* Page Banner (Inner Headline) */
.inner-headline {
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('../img/hero.png');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.inner-headline h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.inner-headline p {
  color: var(--secondary-color);
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 1.1rem;
}

/* Hero Slideshow */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background-color: var(--primary-color);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  z-index: 1;
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 30%, rgba(15, 23, 42, 0.3) 100%);
}

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

.slide-content {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 650px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.5s;
}

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

.slide-content h2 {
  color: white;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.slide-content h2 span {
  color: var(--secondary-color);
}

.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

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

.slider-dot.active {
  background-color: var(--secondary-color);
  width: 24px;
  border-radius: 6px;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background-color: var(--primary-color);
  color: white;
}

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

.stat-item h3 {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Features/Why Us Section */
.section-padding {
  padding: 6rem 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(202, 138, 4, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
}

/* Streams Section */
.streams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.stream-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
}

.stream-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 2rem;
  text-align: center;
}

.stream-header h3 {
  color: white;
  font-size: 1.8rem;
}

.stream-header p {
  color: var(--secondary-color);
  font-family: var(--font-headings);
  font-weight: 600;
  margin-top: 0.25rem;
}

.stream-body {
  padding: 2.5rem;
  flex-grow: 1;
}

.stream-subjects {
  margin-bottom: 2rem;
}

.stream-subjects h4 {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.subject-tag {
  display: inline-block;
  background-color: var(--bg-main);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-right: 0.5rem;
  margin-bottom: 0.75rem;
}

.stream-features {
  margin-bottom: 2.5rem;
}

.stream-features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.stream-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
}

/* Achievers Section */
.achievers-section {
  background-color: var(--bg-main);
}

.achievers-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.achievers-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.achievers-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.achievers-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-hover);
  position: relative;
}

.achievers-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.achievers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.achiever-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(15, 23, 42, 0.04);
  text-align: center;
}

.achiever-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem auto;
  border: 3px solid var(--secondary-color);
}

.achiever-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.achiever-card .score {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.achiever-card .subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* About & Vision Section */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-intro-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.value-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.value-card p {
  color: var(--text-muted);
}

/* Leadership message styling */
.message-card {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.message-card.reverse {
  flex-direction: row-reverse;
}

.message-author {
  flex-shrink: 0;
  text-align: center;
}

.message-author img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--secondary-color);
}

.message-author h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.message-author p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.message-body h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.message-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Facilities Section */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.facility-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition-normal);
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.facility-img {
  height: 230px;
  overflow: hidden;
}

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

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

.facility-info {
  padding: 2rem;
}

.facility-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.facility-info p {
  color: var(--text-muted);
}

/* Gallery Section */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: white;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-family: var(--font-headings);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  position: relative;
  aspect-ratio: 4 / 3;
}

.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(15, 23, 42, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
  color: white;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.1rem;
}

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

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

/* Modal Lightbox */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 85%;
  max-height: 80%;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.modal-content img {
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Contact & Admissions Forms */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(202, 138, 4, 0.1);
  color: var(--secondary-color);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-method-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-method-text p {
  color: var(--text-muted);
}

.form-card {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--border-radius-sm);
  outline: none;
  transition: var(--transition-fast);
  background-color: var(--bg-main);
}

.form-control:focus {
  border-color: var(--secondary-color);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(202, 138, 4, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Alert Boxes */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 500;
  display: none;
}

.alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--danger-color);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.map-container {
  height: 350px;
  background-color: #e2e8f0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-top: 3rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.map-placeholder h4 {
  margin-bottom: 0.5rem;
}

/* Admissions specific formatting */
.admission-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(202, 138, 4, 0.3);
}

.step-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Footer */
.main-footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 5rem 0 2rem 0;
  border-top: 5px solid var(--secondary-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-col p {
  opacity: 0.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

.footer-links a {
  opacity: 0.7;
  font-size: 0.95rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

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

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
  html { font-size: 15px; }
  .grid-2col, .achievers-layout, .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .message-card {
    flex-direction: column;
    padding: 2.5rem;
    gap: 2rem;
  }
  .message-card.reverse {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 6rem 2rem 2rem 2rem;
    align-items: flex-start;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
    z-index: 1000;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .top-header .container {
    justify-content: center;
  }
  
  .top-header .contact-info {
    display: none; /* Hide top contact info on mobile */
  }
  
  .hero-slider {
    height: 480px;
  }
  
  .slide-content h2 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
