/* Main CSS for Parun Institute of Hotel Management Website */
/* Color Theme: Orangish shades and Ash (Grey) tones */

/* Facilities Page Styles */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.facility-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--light-grey);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.facility-card .icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
  background-color: var(--light-grey);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.facility-card:hover .icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.facility-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.facility-card p {
  color: var(--grey-color);
  font-size: 15px;
  margin-bottom: 20px;
}

.facility-card .btn-link {
  margin-top: auto;
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--light-grey);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.facility-card .btn-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.additional-facilities {
  padding: 60px 0;
  background-color: var(--light-color);
}

/* Placement Page Styles */
.placement-process {
  padding: 60px 0;
  background-color: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step {
  background-color: var(--light-grey);
  border-radius: 8px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.recruiters {
  padding: 60px 0;
  background-color: var(--light-color);
}

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

.recruiter-logo {
  background-color: var(--white);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.recruiter-logo img {
  max-width: 100%;
  height: auto;
}

.success-stories {
  padding: 60px 0;
  background-color: var(--white);
}

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

.story-card {
  background-color: var(--light-grey);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: auto;
}

.story-content {
  padding: 20px;
}

.story-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.designation {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 5px;
}

.batch {
  color: var(--grey-color);
  font-size: 14px;
  margin-bottom: 15px;
}

.testimonial {
  font-style: italic;
}

.placement-stats {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--white);
}

.placement-stats .section-title h2 {
  color: var(--white);
}

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

.stat-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-title {
  font-size: 18px;
}

:root {
  --primary-color: #FF7F50; /* Coral Orange */
  --secondary-color: #FF5722; /* Deep Orange */
  --tertiary-color: #FFA07A; /* Light Salmon */
  --accent-color: #FF9800; /* Orange */
  --light-color: #faf7f2; /* Elegant Ivory White */
  --dark-color: #333333; /* Dark Grey */
  --grey-color: #757575; /* Medium Grey */
  --light-grey: #f3efea; /* subtle light grey to match ivory tone */
  --text-color: #212121; /* Almost Black */
  --white: #FFFFFF;
  --black: #000000;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

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

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

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

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

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

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

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

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

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.center-btn {
  text-align: center;
  margin-top: 30px;
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-img {
  height: 130px;
  width: auto;
  transition: transform 0.3s ease;
  display: block;
}

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

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

.nav-menu {
  display: flex;
}

.nav-menu li {
  margin-left: 25px;
}

.nav-menu a {
  color: var(--dark-color);
  font-weight: 500;
}

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

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 150px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
}

.cta-buttons {
  animation: fadeIn 1.5s ease;
}

.cta-buttons .btn {
  margin: 0 10px;
}

/* Affiliation Logos */
.affiliation-logos {
  margin: 20px auto 30px;
  text-align: center;
}

.affiliation-text {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--white);
  font-weight: 500;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.affiliation-logo {
  height: 93px;
  background-color: var(--white);
  padding: 5px;
  border-radius: 5px;
}

/* Introduction Section */
.intro {
  padding: 80px 0;
}

.intro-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.intro-text, .intro-image {
  flex: 1;
}

.intro-text p {
  margin-bottom: 20px;
  color: var(--grey-color);
}

/* Highlights Section */
.highlights {
  padding: 80px 0;
  background-color: var(--light-grey);
}

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

.highlight-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
}

.highlight-card .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.highlight-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.highlight-card p {
  color: var(--grey-color);
}

/* Courses Preview Section */
.courses-preview {
  padding: 80px 0;
}

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

.course-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-10px);
}

.course-image {
  height: 200px;
  overflow: hidden;
}

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

.course-card:hover .course-image img {
  transform: scale(1.1);
}

.course-content {
  padding: 20px;
}

.course-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.course-content p {
  color: var(--grey-color);
  margin-bottom: 15px;
}

/* Page Banner */
.page-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banner-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* Courses Section */
.courses-section {
  padding: 80px 0;
}

.course-detail {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  overflow: hidden;
}

.course-header {
  display: flex;
  flex-wrap: wrap;
}

.course-image {
  flex: 1;
  min-width: 300px;
}

.course-title {
  flex: 2;
  padding: 30px;
  background-color: var(--primary-color);
  color: var(--white);
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}

.course-meta span {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.course-meta i {
  margin-right: 5px;
}

.course-body {
  padding: 30px;
}

.course-description h4 {
  color: var(--primary-color);
  margin-top: 20px;
}

.course-description ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.course-footer {
  padding: 20px 30px;
  background-color: var(--light-grey);
  text-align: center;
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.about-text, .about-image {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  color: var(--grey-color);
  margin-bottom: 20px;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.mission, .vision {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.mission h3, .vision h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.director-message {
  background-color: var(--light-grey);
  padding: 40px;
  border-radius: 10px;
  position: relative;
}

.director-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.director-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

.director-name h3 {
  margin-bottom: 5px;
}

.director-name p {
  color: var(--primary-color);
}

.director-quote {
  font-style: italic;
  color: var(--grey-color);
  position: relative;
  padding-left: 20px;
}

.director-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
  left: -10px;
  top: -20px;
  opacity: 0.3;
}

/* Admission Process Section */
.admission-process {
  padding: 80px 0;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 20px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 15px;
}

.step p {
  color: var(--grey-color);
}

.application-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-grey);
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
  min-width: 250px;
}

.brochure-download {
  background-color: var(--light-grey);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 40px;
}

.brochure-download h3 {
  margin-bottom: 20px;
}

/* Facilities Section */
.facilities-section {
  padding: 80px 0;
}

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

.facility-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.facility-image {
  height: 250px;
  overflow: hidden;
}

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

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

.facility-content {
  padding: 25px;
}

.facility-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.facility-content p {
  color: var(--grey-color);
  margin-bottom: 20px;
}

.facility-features {
  list-style: none;
}

.facility-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.facility-features li i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-btn {
  background-color: transparent;
  border: none;
  padding: 8px 20px;
  margin: 5px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 127, 80, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

/* Placement Section */
.placement-section {
  padding: 80px 0;
}

.recruiters {
  margin-bottom: 60px;
}

.recruiters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 30px;
}

.recruiter-logo {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  transition: transform 0.3s ease;
}

.recruiter-logo:hover {
  transform: translateY(-5px);
}

.placement-process {
  background-color: var(--light-grey);
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 60px;
}

.process-timeline {
  position: relative;
  padding-left: 50px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -50px;
  top: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--primary-color);
}

.timeline-item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

.story-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.student-info {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: var(--primary-color);
  color: var(--white);
}

.student-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--white);
}

.student-name h3 {
  margin-bottom: 5px;
}

.student-name p {
  opacity: 0.8;
  margin: 0;
}

.story-content {
  padding: 20px;
}

.story-content p {
  font-style: italic;
  color: var(--grey-color);
  margin-bottom: 15px;
}

.placement-info {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--light-grey);
}

.placement-info span {
  display: flex;
  align-items: center;
}

.placement-info i {
  color: var(--primary-color);
  margin-right: 5px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

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

.info-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
}

.info-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.info-card h3 {
  margin-bottom: 15px;
}

.info-card p {
  color: var(--grey-color);
}

.contact-form-map {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-form, .map-container {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}




/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-column p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 15px;
}

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

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

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

.footer-column ul li a {
  color: var(--white);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  margin-bottom: 15px;
}

.contact-info li i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.7;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .intro-content, .about-content {
    flex-direction: column;
  }
  
  .intro-image, .about-image {
    order: -1;
    margin-bottom: 30px;
  }
  
  .step:not(:last-child)::after {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .course-header {
    flex-direction: column;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    margin-bottom: 30px;
  }
  

}

@media screen and (max-width: 576px) {
  .hero {
    padding: 100px 0;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
/* ===== Top Left Loader ===== */
#loader-container {
  position: fixed;
  top: 15px;
  left: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 9999;
}

.loader {
  --path: #2f3545;
  --dot: #5628ee;
  --duration: 3s;
  width: 32px;
  height: 32px;
  position: relative;
}

.loader:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  background: var(--dot);
  top: 27px;
  left: 14px;
  transform: translate(-18px, -18px);
  animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg {
  width: 100%;
  height: 100%;
}

.loader svg rect,
.loader svg polygon,
.loader svg circle {
  fill: none;
  stroke: var(--path);
  stroke-width: 10px;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.loader svg polygon {
  stroke-dasharray: 145 76 145 76;
  animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg rect {
  stroke-dasharray: 192 64 192 64;
  animation: pathRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg circle {
  stroke-dasharray: 150 50 150 50;
  stroke-dashoffset: 75;
  animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader.triangle {
  width: 36px;
}

.loader.triangle:before {
  left: 15px;
  transform: translate(-10px, -18px);
  animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

/* Animation keyframes */
@keyframes pathTriangle { 33% { stroke-dashoffset: 74; } 66% { stroke-dashoffset: 147; } 100% { stroke-dashoffset: 221; } }
@keyframes dotTriangle { 33% { transform: translate(0, 0); } 66% { transform: translate(10px, -18px); } 100% { transform: translate(-10px, -18px); } }
@keyframes pathRect { 25% { stroke-dashoffset: 64; } 50% { stroke-dashoffset: 128; } 75% { stroke-dashoffset: 192; } 100% { stroke-dashoffset: 256; } }
@keyframes dotRect { 25% { transform: translate(0, 0); } 50% { transform: translate(18px, -18px); } 75% { transform: translate(0, -36px); } 100% { transform: translate(-18px, -18px); } }
@keyframes pathCircle { 25% { stroke-dashoffset: 125; } 50% { stroke-dashoffset: 175; } 75% { stroke-dashoffset: 225; } 100% { stroke-dashoffset: 275; } }
