/* ============================================
   BCA Department - National College, Trichy
   Apple-style Modern Website
   ============================================ */

/* CSS Variables / Design Tokens */
:root {
  --primary: 237, 85%, 54%;
  --primary-foreground: 0, 0%, 100%;
  --background: 0, 0%, 100%;
  --foreground: 230, 15%, 15%;
  --card: 0, 0%, 100%;
  --card-foreground: 230, 15%, 15%;
  --secondary: 230, 20%, 96%;
  --secondary-foreground: 230, 15%, 15%;
  --muted: 230, 20%, 96%;
  --muted-foreground: 230, 10%, 45%;
  --border: 230, 20%, 90%;
  --radius: 1rem;
  
  --gradient-primary: linear-gradient(135deg, hsl(237, 85%, 54%) 0%, hsl(250, 90%, 65%) 100%);
  --gradient-hero: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(230, 30%, 98%) 100%);
  --shadow-soft: 0 4px 20px -4px hsla(237, 85%, 54%, 0.15);
  --shadow-card: 0 8px 30px -8px hsla(230, 15%, 15%, 0.1);
  --shadow-elevated: 0 20px 60px -15px hsla(230, 15%, 15%, 0.2);
  
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Utility Classes */
.hidden { display: none !important; }

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.card-glass {
  background: hsla(var(--card), 0.8);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
}

.card-elevated {
  background: hsl(var(--card));
  border-radius: 1.5rem;
  box-shadow: var(--shadow-elevated);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-elevated);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: transparent;
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid hsl(var(--primary));
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: transparent;
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid hsl(var(--primary));
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-open:hover {
  background: blue;
  color: white;
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background-color: white;
  backdrop-filter: blur(20px);
}

.navbar.scrolled {
  background: hsla(var(--background), 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 hsl(var(--border));
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: white;
}

.logo-circle span {
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-text h1 {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  line-height: 1.2;
  white-space: normal;
}
.logo-textn h1 {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgb(202, 202, 202);
  line-height: 1.2;
  white-space: normal;
}

.autonomous {
  font-size: 0.75rem;
  font-weight: 500;
}
.autonomousn {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(202, 202, 202, 0.918);
}
.logo-text p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.logo-textn p {
  font-size: 0.875rem;
  color: rgba(202, 202, 202, 0.956);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  position: relative;
  background: none;
  border: none;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  font-size: 17px;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: hsl(var(--primary));
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: hsl(var(--primary));
}

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

.nav-actions {
  display: flex;
  align-items: center;
  margin-right: 35px;
  gap: 1rem;
  margin-right: 0px;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
  background: hsl(var(--secondary));
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--foreground));
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: hsla(var(--background), 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid hsl(var(--border));
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  max-height: 500px;
  padding: 1.5rem;
}

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 0.75rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  background: hsl(var(--secondary));
}

.mobile-nav-link.active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

/* ============================================
   PAGES
   ============================================ */
.page {
  display: none;
  opacity: 0;
}

.page.active {
  display: block;
  opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    flex-direction: column;
  }
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: blur(3px);
}

@media (max-width: 768px) {
  .hero-video {
    position: relative;
    height: 50vh;
    z-index: 1;
    filter: none;
  }
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 2;
}

.hero-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: hsl(var(--primary));
  border-radius: 50%;
  filter: blur(100px);
}

.blob-1 { top: 25%; left: 25%; }
.blob-2 { bottom: 25%; right: 25%; }

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-content {
    position: relative;
    width: 100%;
    padding: 2rem 1.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.95);
  color: hsl(var(--primary));
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero-badge {
    background: rgba(6, 17, 220, 0.192);
  }
}

.hero-badge svg {
  stroke: hsl(var(--primary));
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0px 0px 30px rgb(255, 255, 255);
}

@media (max-width: 1024px) {
  .hero-title {
    text-shadow: 0 0 20px rgb(255, 255, 255),
                 0 0 40px rgb(255, 255, 255);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: white;
  max-width: 48rem;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-subtitle {
    color: black;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
}

.hero-stat {
  padding: 2rem;
  text-align: center;
}

.stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsla(var(--primary), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon svg {
  stroke: hsl(var(--primary));
}

.hero-stat h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.hero-stat p {
  color: hsl(var(--muted-foreground));
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsla(var(--muted-foreground), 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.75rem;
  background: hsl(var(--primary));
  border-radius: 9999px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-container {
  max-width: 72rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: orange;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.section-header p {
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto;
}

/* ============================================
   COURSE OVERVIEW
   ============================================ */
.course-section {
  padding: 5rem 1.5rem 8rem;
  background: hsla(var(--secondary), 0.3);
}

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

@media (min-width: 640px) {
  .course-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .course-grid { grid-template-columns: repeat(4, 1fr); }
}

.course-card {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.course-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsla(var(--primary), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.course-icon svg {
  stroke: hsl(var(--primary));
}

.course-label {
  font-size: 20px;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.counter-value {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  font-size: 30px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.course-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.75rem;
}

.student-banner {
  margin-top: 4rem;
  padding: 3rem;
  border-radius: 1.5rem;
  background: hsl(var(--primary));
  text-align: center;
}

.banner-label {
  color: hsla(var(--primary-foreground), 0.8);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.banner-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.banner-value span:first-child {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: hsl(var(--primary-foreground));
}

.banner-suffix {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: hsla(var(--primary-foreground), 0.8);
}

.banner-desc {
  color: hsla(var(--primary-foreground), 0.7);
  margin-top: 1rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   VISION & MISSION
   ============================================ */
.vision-section {
  padding: 5rem 1.5rem 8rem;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .vision-grid { grid-template-columns: repeat(2, 1fr); }
}

.vision-card,
.mission-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.card-blob {
  position: absolute;
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  background: hsla(var(--primary), 0.05);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.vision-content {
  position: relative;
  z-index: 10;
}

.vision-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vision-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-icon svg {
  stroke: hsl(var(--primary-foreground));
}

.vision-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.vision-content > p {
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  font-size: 1.125rem;
}

.mission-list {
  list-style: none;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mission-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: hsla(var(--primary), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.mission-icon svg {
  stroke: hsl(var(--primary));
}

.mission-list span {
  color: hsl(var(--muted-foreground));
}

/* ============================================
   PROJECTS
   ============================================ */
.projects-section {
  padding: 5rem 1.5rem 8rem;
  background: hsla(var(--secondary), 0.3);
}

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

@media (min-width: 768px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
}

.project-card {
  padding: 2rem;
  transition: all 0.5s ease;
  cursor: pointer;
  background: hsla(var(--card), 0.8);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.6) 50%, transparent 100%);
  transform: rotate(45deg);
  opacity: 0;
  pointer-events: none;
}

.project-card:hover::before {
  animation: shineSlide 0.9s ease-in-out;
}

.project-card:hover {
  transform: translateY(-0.5rem);
  border-color: hsla(var(--primary), 0.3);
  box-shadow: var(--shadow-elevated);
}

.project-card > * {
  position: relative;
  z-index: 1;
}

.project-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsla(var(--primary), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.project-icon svg {
  stroke: hsl(var(--primary));
  transition: all 0.3s ease;
}

.project-card:hover .project-icon {
  background: hsl(var(--primary));
}

.project-card:hover .project-icon svg {
  stroke: hsl(var(--primary-foreground));
}

.project-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.project-card p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-tags span {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: hsla(var(--primary), 0.1);
  color: hsl(var(--primary));
  border-radius: 9999px;
}

/* ============================================
   SYLLABUS APPROVAL SECTION
   ============================================ */
.syllabus-approval-section {
  padding: 5rem 1.5rem 8rem;
  background: hsla(var(--secondary), 0.3);
}

.approval-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .approval-grid { grid-template-columns: repeat(3, 1fr); }
}

.approval-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.approval-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border-radius: 1rem;
  transition: all 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.approval-card:hover::before {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

.approval-card > * {
  position: relative;
  z-index: 10;
}

.approval-card:hover {
  box-shadow: var(--shadow-elevated);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  transition: color 0.5s ease;
}

.approval-card:hover .card-header h3 {
  color: white;
}

.year-range {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
  background: hsla(var(--primary), 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 0.5s ease;
}

.approval-card:hover .year-range {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

.card-body {
  flex: 1;
  margin-bottom: 1.5rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.status-badge.approved {
  background: hsla(34, 97%, 52%, 0.1);
  color: #22c55e;
  transition: all 0.5s ease;
}

.status-badge svg {
  stroke: #22c55e;
  transition: stroke 0.5s ease;
}

.approval-card:hover .status-badge.approved {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.approval-card:hover .status-badge.approved svg {
  stroke: white;
}

.card-desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 0.5s ease;
}

.approval-card:hover .card-desc {
  color: rgba(255, 255, 255, 0.9);
}

.download-btn-approval {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.approval-card:hover .download-btn-approval {
  background: white;
  color: #1e40af;
  transform: scale(1.02);
}

.download-btn-approval svg {
  stroke: currentColor;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-section {
  min-height: 100vh;
  padding: 6rem 1.5rem 5rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header h1 {
  font-size: clamp(2.5rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: orange;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.gallery-header p {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.gallery-container {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: hsla(var(--secondary), 0.3);
}

.gallery-viewport {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.gallery-slider {
  display: flex;
  height: 100%;
}

.gallery-slide {
  flex: 0 0 100%;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 3rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.slide-overlay h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.slide-overlay p {
  color: rgba(255,255,255,0.8);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

@media (max-width: 640px) {
  .gallery-nav {
    width: 2rem;
    height: 2rem;
  }
}

.gallery-nav:hover {
  background: rgba(255,255,255,0.3);
}

.gallery-nav svg {
  stroke: white;
}

.gallery-nav.prev { left: 1rem; }
.gallery-nav.next { right: 1rem; }

.gallery-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.gallery-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot:hover {
  background: rgba(255,255,255,0.75);
}

.gallery-dot.active {
  width: 2rem;
  background: white;
}



/* ============================================
   FACULTY PAGE
   ============================================ */
.faculty-section {
  min-height: 100vh;
  padding: 6rem 1.5rem 5rem;
}

.faculty-profile-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.faculty-profile-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.faculty-profile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
}

.faculty-profile-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 52rem);
  max-height: min(92vh, 46rem);
  overflow: auto;
  background: hsl(var(--background));
  border-radius: 1.5rem;
  box-shadow: var(--shadow-elevated);
  padding: 1.5rem;
}

.faculty-profile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--secondary));
  color: hsl(var(--foreground));
  cursor: pointer;
}

.faculty-profile-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.faculty-profile-image-wrap {
  width: min(100%, 17rem);
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 3px solid hsla(var(--primary), 0.18);
}

.faculty-profile-image-wrap img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.faculty-profile-body h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin-bottom: 0.35rem;
}

.faculty-profile-kicker {
  color: hsl(var(--primary));
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: 0.5rem;
}

.faculty-profile-designation {
  color: hsl(var(--muted-foreground));
  font-weight: 600;
  margin-bottom: 1rem;
}

.faculty-profile-meta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faculty-profile-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: hsl(var(--primary));
}

.faculty-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.faculty-profile-actions a,
.faculty-profile-actions button {
  flex: 1 1 10rem;
  justify-content: center;
}

.btn-faculty-primary.is-disabled {
  opacity: 0.65;
  pointer-events: none;
  cursor: not-allowed;
}

.faculty-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faculty-header h1 {
  font-size: clamp(2.5rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: orange;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.faculty-header p {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.faculty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .faculty-grid { grid-template-columns: repeat(3, 1fr); }
}

.faculty-card {
  padding: 1.5rem;
  text-align: center;
  transition: all 0.5s ease;
}

.faculty-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-elevated);
}

.faculty-avatar {
  position: relative;
  margin-bottom: 1.5rem;
}

.faculty-avatar img {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
  border: 4px solid hsla(var(--primary), 0.2);
  transition: all 0.3s ease;
}

.faculty-card:hover .faculty-avatar img {
  border-color: hsla(var(--primary), 0.4);
  transform: scale(1.05);
}

.faculty-designation {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  white-space: nowrap;
}

.faculty-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.faculty-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.faculty-info div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
}

.faculty-info svg {
  stroke: hsl(var(--primary));
  flex-shrink: 0;
}

.faculty-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .faculty-buttons {
    flex-direction: column;
  }

  .faculty-card {
    padding: 1.25rem;
  }

  .faculty-avatar img {
    width: 7rem;
    height: 7rem;
  }

  .faculty-profile-dialog {
    padding: 1rem;
    border-radius: 1rem;
  }

  .faculty-profile-actions {
    flex-direction: column;
  }
}

.btn-faculty-primary,
.btn-faculty-secondary {
  flex: 1;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-faculty-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-soft);
}

.btn-faculty-primary:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-elevated);
}

.btn-faculty-secondary {
  background: hsla(var(--primary), 0.1);
  color: hsl(var(--primary));
  border: 1.5px solid hsl(var(--primary));
}

.btn-faculty-secondary:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transform: scale(1.02);
}

.faculty-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: hsl(var(--primary));
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faculty-contact:hover {
  text-decoration: underline;
}

.faculty-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .faculty-stats { grid-template-columns: repeat(4, 1fr); }
  .faculty-profile-content {
    grid-template-columns: minmax(220px, 280px) 1fr;
  }
}

.stat-card {
  padding: 1.5rem;
  text-align: center;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: hsl(var(--foreground));
  color: #f0f0f0;
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo h3 {
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-logo p {
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer-desc {
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--background));
  transition: all 0.3s ease;
}

.social-link:hover {
  background: hsl(var(--primary));
}

.footer-links h4,
.footer-contact h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

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

.footer-links a {
  color: hsl(var(--background));
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact svg {
  stroke: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact span {
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  opacity: 0.5;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: hsl(var(--background));
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: hsla(var(--foreground), 0.2);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 28rem;
  padding: 2rem;
  text-align: center;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-overlay.open .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.modal-close:hover {
  background: hsl(var(--secondary));
}

.modal-close svg {
  stroke: hsl(var(--muted-foreground));
}

.modal-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: hsla(var(--primary), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.modal-icon svg {
  stroke: hsl(var(--primary));
}

.modal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.modal-content > p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.modal-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.modal-date svg {
  stroke: hsl(var(--primary));
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-buttons button {
  width: 100%;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes shineSlide {
  0% {
    transform: translate(-100%, -100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(100%, 100%) rotate(45deg);
    opacity: 0;
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero-content {
    padding: 8rem 1rem 4rem;
  }
  
  .slide-overlay {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav-content {
    height: 4rem;
  }

  .logo-circle {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
  }

  .logo-section {
    gap: 0.5rem;
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }

  .logo-text h1 {
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .autonomous {
    display: none;
  }

  .logo-text p {
    font-size: 0.65rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-actions {
    flex-shrink: 0;
  }

  .btn-primary#registerBtn {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .logo-text h1 {
    font-size: 0.95rem;
  }

  .logo-text p {
    font-size: 0.75rem;
  }

  .logo-circle {
    width: 3rem;
    height: 3rem;
  }

  .btn-primary#registerBtn {
    display: none;
  }
}

.mobile-register-btn {
  width: 100%;
  margin-top: 0.5rem;
  border-radius: 0.75rem;
}
.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .thumbnail-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .thumbnail-grid { grid-template-columns: repeat(4, 1fr); }
}

.thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.thumbnail.active {
  box-shadow: 0 0 0 3px hsl(var(--primary));
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================
   FILTER SECTION
   ============================================ */
.filter-section {
  text-align: center;
  margin-bottom: 4rem;
}

.filter-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
}

.filter-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

.filter-card {
  padding: 0;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 2px solid hsl(var(--border));
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.filter-card:hover {
  border-color: hsl(var(--primary));
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

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

.filter-card.active {
  border-color: hsl(var(--primary));
  box-shadow: var(--shadow-elevated);
}

.filter-card.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.25), rgba(59, 130, 246, 0.2));
  pointer-events: none;
}


/* ============================================
   CELEBRATIONS & ACHIEVEMENTS
   ============================================ */
.celebrations-section {
  margin-top: 3rem;
}

.celebrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 1024px) {
  .celebrations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .celebrations-grid {
    grid-template-columns: 1fr;
  }
}

.celebration-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: hsl(var(--card));
  animation: fadeInScale 0.5s ease-out;
}

.celebration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.celebration-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOutScale {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}


/* ============================================
   IMAGE MARQUEE SECTION
   ============================================ */
.marquee-section {
  padding: 5rem 1.5rem;
  background: hsla(var(--secondary), 0.3);
  overflow: hidden;
}

.marquee-container {
  max-width: 72rem;
  margin: 0 auto;
  height: 500px;
  overflow: hidden;
  border-radius: 1.5rem;
  background: hsl(var(--card));
  box-shadow: var(--shadow-card);
}

.marquee-track {
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: scrollUp 20s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  flex: 0 0 auto;
  height: 500px;
  width: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px hsla(0, 0%, 0%, 0.1);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.marquee-item:hover img {
  transform: scale(1.02);
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-3000px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .marquee-container {
    height: 400px;
  }
  
  .marquee-item {
    height: 400px;
  }
  
  @keyframes scrollUp {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-2400px);
    }
  }
}

@media (max-width: 480px) {
  .marquee-section {
    padding: 3rem 1rem;
  }
  
  .marquee-container {
    height: 300px;
    border-radius: 1rem;
  }
  
  .marquee-item {
    height: 300px;
    border-radius: 1rem;
  }
  
  @keyframes scrollUp {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-1800px);
    }
  }
}


/* ============================================
   IMAGE SLIDER SECTION (Pure CSS)
   ============================================ */
.image-slider-section {
  padding: 5rem 1.5rem 8rem;
  background: hsla(var(--secondary), 0.3);
}

.image-runner {
  width: 127%;
  margin-left: -155px;
  overflow: hidden;
  border-radius: 1.5rem;
  background: hsl(var(--card));
  box-shadow: var(--shadow-elevated);
}

@media (max-width: 768px) {
  .image-runner {
    width: 100%;
    margin-left: 0;
  }
}

.track {
  display: flex;
  gap: 1rem;
  animation: slideLeft 50s linear infinite;
  padding: 1rem;
}

.image-runner:hover .track {
  animation-play-state: paused;
}

.track img {
  flex: 0 0 auto;
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 12px hsla(0, 0%, 0%, 0.1);
  transition: transform 0.3s ease;
}

.track img:hover {
  transform: scale(1.05);
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-180%);
  }
}

@media (max-width: 768px) {
  .track img {
    width: 200px;
    height: 150px;
  }
  
  .track {
    gap: 0.75rem;
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .image-slider-section {
    padding: 3rem 1rem 5rem;
  }
  
  .image-runner {
    border-radius: 1rem;
  }
  
  .track img {
    width: 150px;
    height: 120px;
  }
  
  .track {
    gap: 0.5rem;
    padding: 0.5rem;
  }
}


/* ============================================
   HISTORY SECTION
   ============================================ */
.history-section {
  padding: 5rem 1.5rem 8rem;
}

.history-content {
  padding: 2.5rem;
  max-width: 70rem;
  margin: 0 auto;
}

.history-content p {
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.history-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.history-content h3:first-of-type {
  margin-top: 1.5rem;
}
