@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* CSS Variables */
:root {
  --bg-primary: #fafafc;
  --bg-secondary: #f3f4f8;
  --bg-card: #ffffff;
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  --border-color: rgba(0, 0, 0, 0.05);
  --border-color-hover: rgba(0, 0, 0, 0.1);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  /* Academic Core (College) Theme - Indigo & Violet */
  --college-primary: #6366f1;
  --college-secondary: #8b5cf6;
  --college-gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
  --college-glow: 0 10px 30px -10px rgba(99, 102, 241, 0.3);
  
  /* Pharmacy Wing Theme - Emerald & Cyan */
  --pharmacy-primary: #10b981;
  --pharmacy-secondary: #06b6d4;
  --pharmacy-gradient: linear-gradient(135deg, #10b981, #06b6d4);
  --pharmacy-glow: 0 10px 30px -10px rgba(16, 185, 129, 0.3);
  
  /* Nursing Wing Theme - Rose & Coral */
  --nursing-primary: #f43f5e;
  --nursing-secondary: #fb7185;
  --nursing-gradient: linear-gradient(135deg, #f43f5e, #fb7185);
  --nursing-glow: 0 10px 30px -10px rgba(244, 63, 94, 0.3);

  /* Compatibility & Shared Color Assets */
  --color-red: #6366f1;
  --color-yellow: #f1c50e;
  --color-accent-gradient: linear-gradient(135deg, #6366f1, #8b5cf6, #f43f5e);
  --color-accent-gradient-hover: linear-gradient(135deg, #4f46e5, #7c3aed, #e11d48);
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --box-shadow-glow: 0 10px 30px -10px rgba(99, 102, 241, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Helper Classes */
.text-gradient {
  background: var(--color-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.font-serif-italic {
  font-family: inherit;
  font-style: normal;
}

.font-serif-bold-italic {
  font-family: inherit;
  font-weight: inherit;
  font-style: normal;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent-gradient);
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background: var(--color-accent-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Header Section */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(240, 242, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.5rem 0;
  background: rgba(240, 242, 245, 0.95);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .header-container {
  height: 65px;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

.logo img {
  height: 55px;
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
  object-fit: contain;
  transition: var(--transition-smooth);
}

header.scrolled .logo img {
  height: 45px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

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

.nav-link.active {
  background: var(--color-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Search Bar in Header */
.header-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  transition: var(--transition-smooth);
  width: 200px;
}

.header-search:focus-within {
  border-color: var(--color-red);
  width: 250px;
  background: rgba(255, 255, 255, 0.08);
}

.header-search input {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.85rem;
  outline: none;
  width: 100%;
}

.header-search input::placeholder {
  color: var(--text-muted);
}

.header-search button {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* Sections Base Styling */
section {
  padding: 3.5rem 0;
  position: relative;
}

/* Hero Section */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 9rem 0 4.5rem;
  background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.07) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(244, 63, 94, 0.03) 0%, transparent 60%);
}

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

.hero-content h3 {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.95rem;
  color: var(--college-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-content h1 {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-content h1 span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  background: var(--color-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  background: #0f172a;
}

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

.hero-slider .slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  filter: contrast(105%);
  transition: var(--transition-smooth);
}

.hero-slider:hover .slide img {
  transform: scale(1.02);
}

/* Slide Caption overlay */
.slide-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 15px;
  z-index: 4;
  pointer-events: none;
}

.slider-btn {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition-smooth);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  border-color: #fff;
}

/* Indicator Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 4;
}

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

.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* General Layout split */
.layout-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.layout-split.reverse {
  grid-template-columns: 1.2fr 1fr;
}

/* About Section */
.about {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(99, 102, 241, 0.03) 100%);
}

.about-shape-bg {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: var(--college-gradient);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.about-content h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.about-content h2 span {
  background: var(--college-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

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

/* Grid of Highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.5);
}

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

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-red);
}

.highlight-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Strengths (6-Card Section with Center Image) */
.strengths {
  background: var(--bg-primary);
}

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

.strengths-header h4 {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.strengths-header h2 {
  font-size: 3.5rem;
  font-weight: 300;
}

.strengths-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.strengths-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.strength-item {
  transition: var(--transition-smooth);
}

.strength-item.right-align {
  text-align: right;
}

.strength-item.left-align {
  text-align: left;
}

.strength-item h5 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.strength-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.strengths-center-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.8);
}

.strengths-center-img img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: var(--transition-smooth);
}

.strengths-center-img:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

/* Pharmacy Section with Left Image, Right content with color background overlay */
.pharmacy {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(16, 185, 129, 0.03) 100%);
}

.pharmacy-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.pharmacy-img-side {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

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

.pharmacy-content-side {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-secondary);
}

.pharmacy-content-side h2 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.pharmacy-content-side h2 span {
  background: var(--pharmacy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.pharmacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pharmacy-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-secondary);
}

.pharmacy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pharmacy-primary);
  font-weight: bold;
}

/* Nursing Section with overlapping styling */
.nursing {
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(244, 63, 94, 0.03) 100%);
}

.nursing-bg-shape {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 400px;
  height: 300px;
  background: var(--nursing-gradient);
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

.nursing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.nursing-img-wrapper {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
}

.nursing-img-wrapper img {
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.nursing-overlay-card {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(244, 63, 94, 0.2);
  padding: 2rem;
  border-radius: 8px;
  max-width: 350px;
  box-shadow: 0 15px 35px -5px rgba(244, 63, 94, 0.15);
}

.nursing .about-content h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.nursing .about-content h2 span {
  background: var(--nursing-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.nursing-overlay-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--nursing-primary);
  letter-spacing: 1px;
}

.nursing-overlay-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Admissions Call-to-Action Section */
.admissions {
  background: var(--bg-secondary);
}

.admissions-banner {
  background: var(--color-accent-gradient);
  padding: 5rem 4rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow-glow);
}

.admissions-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

.admissions-banner h2 {
  font-size: 3.5rem;
  font-weight: 300;
  color: #0d0d0d;
  margin-bottom: 1rem;
}

.admissions-banner h5 {
  font-size: 1.35rem;
  color: rgba(13, 13, 13, 0.8);
  margin-bottom: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.admissions-banner p {
  color: rgba(13, 13, 13, 0.75);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.admissions-banner .btn-white {
  background: #0d0d0d;
  color: var(--text-primary);
  border: none;
}

.admissions-banner .btn-white:hover {
  background: #1c1c1e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.contact-info h4 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.contact-item:hover .contact-item-icon {
  border-color: var(--color-red);
  background: rgba(219, 84, 90, 0.05);
  color: var(--color-red);
}

.contact-item h6 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Contact Form Side */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-control {
  background: transparent;
  border: 2px solid var(--border-color);
  padding: 0.9rem 1.2rem;
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
  width: 100%;
}

.form-control:focus {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
}

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

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  user-select: none;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-red);
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-checkbox label a {
  color: var(--text-primary);
  text-decoration: underline;
}

/* Form Response Notification */
.form-notification {
  display: none;
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  margin-top: 1rem;
  font-weight: 500;
}

.form-notification.success {
  display: block;
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

.form-notification.error {
  display: block;
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
}

/* Footer Section */
footer {
  background: #060608;
  padding: 5rem 0 3rem;
  border-top: 1px solid var(--border-color);
}

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

.footer-logo-desc p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 1.2rem;
  max-width: 350px;
}

.footer-col h5 {
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--color-accent-gradient);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--text-primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

/* Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Grid Adapters */

/* Mobile Menu Open State */
.nav-menu.active {
  display: flex !important;
}

/* Media Queries */
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .about-content h2, .strengths-header h2, .pharmacy-content-side h2, .nursing-grid h2, .admissions-banner h2, .contact-info h2 {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .layout-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .layout-split.reverse {
    grid-template-columns: 1fr;
  }
  .strengths-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .strengths-column {
    order: 2;
  }
  .strengths-center-img {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }
  .strength-item.right-align {
    text-align: left;
  }
  .pharmacy-container {
    grid-template-columns: 1fr;
  }
  .pharmacy-img-side {
    min-height: 350px;
  }
  .nursing-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .nursing-img-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #0d0d0e;
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2.5rem;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    display: none;
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  header.scrolled .nav-menu {
    top: 65px;
    height: calc(100vh - 65px);
  }
  
  .header-search {
    display: none; /* Hide search bar inside header on smaller screens */
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .about-content h2, .strengths-header h2, .pharmacy-content-side h2, .admissions-banner h2, .contact-info h2 {
    font-size: 2.5rem;
  }
  
  .admissions-banner {
    padding: 3rem 1.5rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Background Shapes & Accents */
.hero-shape-bg {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 450px;
  height: 450px;
  background: var(--color-accent-gradient);
  opacity: 0.12;
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.college-image-bg-shape {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 100%;
  height: 100%;
  background: var(--college-gradient);
  opacity: 0.15;
  border-radius: 12px;
  z-index: -1;
}

.pharmacy-shape-bg {
  position: absolute;
  bottom: -50px;
  left: 5%;
  width: 350px;
  height: 350px;
  background: var(--pharmacy-gradient);
  opacity: 0.1;
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.pharmacy-solid-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--pharmacy-gradient);
  opacity: 0.15;
  border-radius: 8px;
  z-index: 1;
  pointer-events: none;
}

.nursing-image-bg-shape {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--nursing-gradient);
  opacity: 0.15;
  border-radius: 12px;
  z-index: -1;
}

/* Premium Grid Dots Pattern */
.shape-dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(99, 102, 241, 0.15) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Section accent lines */
.about .section-accent-line {
  width: 60px;
  height: 4px;
  background: var(--college-gradient);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.pharmacy .section-accent-line {
  width: 60px;
  height: 4px;
  background: var(--pharmacy-gradient);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.nursing .section-accent-line {
  width: 60px;
  height: 4px;
  background: var(--nursing-gradient);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* Custom geometric shape blocks */
.college-solid-block {
  position: absolute;
  bottom: -10px;
  left: -20px;
  width: 90px;
  height: 90px;
  background: var(--college-gradient);
  opacity: 0.12;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.pharmacy-solid-block {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 80px;
  height: 80px;
  background: var(--pharmacy-gradient);
  opacity: 0.12;
  border-radius: 8px;
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 0;
}

.nursing-solid-block {
  position: absolute;
  top: -20px;
  left: 20%;
  width: 140px;
  height: 20px;
  background: var(--nursing-gradient);
  opacity: 0.15;
  border-radius: 10px;
  pointer-events: none;
}

/* Section Specific CTA Buttons Override */

/* College Wing Button */
#btn-college-inquire {
  background: var(--college-gradient);
  border: none;
}
#btn-college-inquire:hover {
  background: var(--college-gradient);
  box-shadow: var(--college-glow);
  transform: translateY(-2px);
}

/* Pharmacy Wing Button */
#btn-pharmacy-inquire {
  background: var(--pharmacy-gradient);
  border: none;
}
#btn-pharmacy-inquire:hover {
  background: var(--pharmacy-gradient);
  box-shadow: var(--pharmacy-glow);
  transform: translateY(-2px);
}

/* Nursing Wing Button */
#btn-nursing-inquire {
  background: var(--nursing-gradient);
  border: none;
}
#btn-nursing-inquire:hover {
  background: var(--nursing-gradient);
  box-shadow: var(--nursing-glow);
  transform: translateY(-2px);
}
