/* K.D. College of Nursing - Stylesheet */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary: #1a1a5e;
  --primary-light: #2d2d7a;
  --primary-dark: #121242;
  --accent: #c8e600;
  --accent-dark: #b3cc00;
  --highlight: #e6007e;
  --highlight-dark: #cc006f;
  --secondary: #d32f2f;
  --gold: #ffd700;
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f5f5f5;
  --gray-200: #e0e0e0;
  --gray-300: #bdbdbd;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
  
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(26, 26, 94, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.header-top {
  background: var(--primary-dark);
  padding: 8px 0;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contact {
  display: flex;
  gap: 20px;
}

.header-contact a {
  color: var(--white);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-contact a:hover {
  color: var(--accent);
}

.header-social {
  display: flex;
  gap: 12px;
}

.header-social a {
  color: var(--white);
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
}

.header-social a:hover {
  background: var(--accent);
  color: var(--primary);
}

.header-main {
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.logo-text h1 {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.logo-text span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 8px;
}

.nav-menu a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 230, 0, 0.3);
}

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

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

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

.btn-white:hover {
  background: var(--gray-100);
}

.btn-highlight {
  background: var(--highlight);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 16px;
}

.btn-highlight:hover {
  background: var(--highlight-dark);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.05;
  filter: blur(80px);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: var(--highlight);
  border-radius: 50%;
  opacity: 0.05;
  filter: blur(100px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  padding: 40px 0;
}

.approval-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
}

.badge i {
  color: var(--accent);
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-title span {
  color: var(--accent);
  display: block;
}

.hero-tagline {
  font-size: 24px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 25px;
}

.admission-banner {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--highlight);
  padding: 12px 25px;
  border-radius: var(--radius);
  margin-bottom: 25px;
}

.admission-banner h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
}

.admission-banner span {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.courses-highlight {
  margin-bottom: 25px;
}

.courses-highlight p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 12px;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.course-tag {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.course-tag.primary {
  background: var(--accent);
  color: var(--primary);
}

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

.eligibility-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: var(--radius);
  margin-bottom: 25px;
}

.eligibility-box p {
  color: var(--white);
  font-size: 15px;
}

.eligibility-box strong {
  color: var(--accent);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
}

.hero-feature i {
  font-size: 18px;
}

.hero-feature.highlight {
  color: var(--highlight);
}

.hero-feature.accent {
  color: var(--accent);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-icon {
  width: 50px;
  height: 50px;
  background: rgba(200, 230, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
}

.phone-info p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.phone-info a {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
}

.phone-info a:hover {
  color: var(--accent);
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 15px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-badge.badge-1 {
  top: 20%;
  right: -20px;
}

.floating-badge.badge-2 {
  bottom: 25%;
  left: -30px;
}

.floating-badge .icon {
  width: 45px;
  height: 45px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
}

.floating-badge .text p {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.floating-badge .text span {
  font-size: 12px;
  color: var(--gray-600);
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-label {
  display: inline-block;
  color: var(--highlight);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 16px;
}

/* About Section */
.about-section {
  background: var(--gray-100);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  padding: 25px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.experience-badge .text {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content > p {
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-feature i {
  color: var(--accent);
  font-size: 18px;
}

.about-feature span {
  color: var(--gray-700);
  font-weight: 500;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
}

.link-arrow:hover {
  color: var(--highlight);
  gap: 12px;
}

/* Courses Section */
.courses-section {
  background: var(--primary);
}

.courses-section .section-title,
.courses-section .section-subtitle {
  color: var(--white);
}

.courses-section .section-subtitle {
  opacity: 0.8;
}

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

.course-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.course-header {
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.course-header.accent {
  background: var(--accent);
}

.course-header.highlight {
  background: var(--highlight);
}

.course-header.primary {
  background: var(--primary);
}

.course-header.secondary {
  background: var(--secondary);
}

.course-icon {
  width: 55px;
  height: 55px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
}

.course-header h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

.course-header p {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}

.course-body {
  padding: 25px;
}

.course-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  font-size: 14px;
}

.course-meta-item i {
  color: var(--accent);
}

.course-description {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.course-eligibility {
  background: var(--gray-100);
  padding: 15px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.course-eligibility h4 {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-eligibility h4 i {
  color: var(--accent);
}

.course-eligibility p {
  color: var(--gray-700);
  font-size: 14px;
}

.course-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}

.course-link:hover {
  color: var(--highlight);
  gap: 12px;
}

/* Why Choose Section */
.why-choose-section {
  background: var(--white);
}

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

.feature-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--white);
}

.feature-icon.accent {
  background: var(--accent);
}

.feature-icon.highlight {
  background: var(--highlight);
}

.feature-icon.primary {
  background: var(--primary);
}

.feature-icon.secondary {
  background: var(--secondary);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 60px 0;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}

/* Facilities Section */
.facilities-section {
  background: var(--gray-100);
}

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

.facility-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.facility-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 94, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}

.facility-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
}

.facility-overlay h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
}

.facility-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--white);
}

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

.testimonial-card {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 30px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  width: 45px;
  height: 45px;
  background: rgba(200, 230, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.testimonial-rating i {
  color: var(--gold);
  font-size: 14px;
}

.testimonial-text {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 16px;
  margin-bottom: 3px;
}

.testimonial-author p {
  color: var(--gray-600);
  font-size: 13px;
}

.testimonial-author .placement {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--highlight) 0%, var(--highlight-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(200, 230, 0, 0.1);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-left {
  flex: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 14px;
  margin-bottom: 20px;
}

.cta-left h2 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 15px;
}

.cta-left h2 span {
  color: var(--gold);
}

.cta-left p {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-info {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.cta-info-item {
  text-align: center;
}

.cta-info-item p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-bottom: 5px;
}

.cta-info-item strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
}

.footer-top {
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand img {
  width: 50px;
  height: 50px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 18px;
  line-height: 1.3;
}

.footer-brand h3 span {
  color: var(--accent);
  font-size: 12px;
  display: block;
}

.footer-about p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
}

.footer-title {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 25px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s ease;
}

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

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 3px;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-admission {
  background: var(--primary-light);
  padding: 20px;
  border-radius: var(--radius-lg);
  margin-top: 20px;
}

.footer-admission p {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 5px;
}

.footer-admission span {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 160px 0 80px;
  text-align: center;
}

.page-header .section-label {
  color: var(--accent);
}

.page-header .section-title {
  color: var(--white);
  font-size: 48px;
}

.page-header .section-subtitle {
  color: rgba(255,255,255,0.8);
}

/* Course Detail Page */
.course-detail-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 160px 0 60px;
}

.course-detail-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.course-detail-header .back-link:hover {
  color: var(--accent);
}

.course-detail-header h1 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 10px;
}

.course-detail-header p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
}

.course-detail-content {
  padding: 60px 0;
}

.course-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.course-info-box {
  background: var(--gray-100);
  padding: 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
}

.course-info-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.course-info-box h3 i {
  color: var(--accent);
}

.course-info-box ul {
  display: grid;
  gap: 10px;
}

.course-info-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-700);
  font-size: 14px;
}

.course-info-box li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.course-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 25px;
  box-shadow: var(--shadow);
}

.sidebar-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--gray-100);
}

.eligibility-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gray-700);
  font-size: 14px;
}

.eligibility-list i {
  color: var(--accent);
  margin-top: 3px;
}

.career-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--gray-700);
  font-size: 14px;
}

.career-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--highlight);
  border-radius: 50%;
}

.sidebar-cta {
  background: var(--highlight);
  border-radius: var(--radius-xl);
  padding: 25px;
  text-align: center;
}

.sidebar-cta h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 5px;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 20px;
}

.sidebar-cta .btn {
  width: 100%;
  margin-bottom: 10px;
}

.sidebar-cta a.phone {
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sidebar-cta a.phone:hover {
  color: var(--gold);
}

/* Admissions Page */
.admission-banner {
  background: var(--highlight);
  padding: 15px 0;
}

.admission-banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.admission-banner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
}

.admission-banner-item i {
  font-size: 18px;
}

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

.process-card {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.process-step {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.process-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--gray-600);
  font-size: 14px;
}

.documents-list {
  display: grid;
  gap: 12px;
}

.documents-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-100);
  padding: 12px 15px;
  border-radius: var(--radius);
}

.documents-list .num {
  width: 28px;
  height: 28px;
  background: rgba(200, 230, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.documents-list span {
  color: var(--gray-700);
  font-size: 14px;
}

.dates-table {
  width: 100%;
  border-collapse: collapse;
}

.dates-table tr {
  border-bottom: 1px solid var(--gray-200);
}

.dates-table tr:last-child {
  border-bottom: none;
}

.dates-table td {
  padding: 15px;
}

.dates-table td:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
}

.dates-table td:first-child i {
  color: var(--accent);
}

.dates-table td:last-child {
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 35px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 22px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Contact Page */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.contact-info-card {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: rgba(200, 230, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  font-size: 24px;
}

.contact-info-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--gray-600);
  font-size: 14px;
}

.contact-info-card a:hover {
  color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.map-container {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-right {
    display: none;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-phone {
    justify-content: center;
  }
  
  .approval-badges {
    justify-content: center;
  }
  
  .course-tags {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
  
  .experience-badge {
    right: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .course-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-info {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-menu-btn {
    display: flex;
    z-index: 1000;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .header-cta .btn {
    display: none;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .page-header .section-title {
    font-size: 32px;
  }
  
  .course-detail-header h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .admission-banner h3 {
    font-size: 18px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .cta-left h2 {
    font-size: 28px;
  }
}
