
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
  font-family: inherit;
}

    body {
      font-family: 'Poppins', sans-serif;
      /* margin: 20px; */
    }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove gaps between sections */
section {
  margin: 0;
  padding: 4rem 0;
}

/* Ensure consistent container widths */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
/*Responsive for Global Styles */
@media (max-width: 1024px) {
  section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1.5rem;
  }
}

/* Navbar */
.navbar {
  background-color: crimson;
  border-bottom: 2px solid black;
  position: fixed;
  width: 100%;
  z-index: 1000;
  font-family: 'Segoe UI', sans-serif;
  animation: slideDown 0.6s ease-in-out;
  top: 0;
  left: 0;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 1rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.navbar-logo {
  width: 45px;
  height: 45px;
  margin-right: 0px;
  margin-bottom:0.4px;
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text {
  font-size: 1rem;
  font-weight: bold;
  color: white;
  margin-bottom: 3px;
}

.brand-subtext {
  font-size: 0.75rem;
  color: white;
}

/* Navbar Links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.navbar-links a {
  text-decoration: none;
  color: white;
  padding: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-links a:hover {
  color: black;
  transform: translateY(-2px);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 0.95rem;
  color: white;
  transition: color 0.3s ease;
}

.dropdown-btn:hover {
  color: black;
}

.dropdown-content {
  position: absolute;
  background-color: #fffbea;
  top: 25px;
  left: 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid black;
  border-radius: 4px;
  overflow: hidden;
  min-width: 250px;
  z-index: 1001;
  display: none;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    transform: scaleY(0.8);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #ffe066;
  color: #ff0000;
}

/* Enroll Now button */
.login-btn {
  background-color: #8B0A23;
  color: #000;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.login-btn:hover {
  background-color: #ffc107;
  color: #ff0000;
  transform: scale(1.05);
}

/* Hamburger Menu */
.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .navbar-links {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 1rem;
    display: none;
    gap: 1rem;
    z-index: 999;
    border-top: 1px solid black;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links a,
  .dropdown-btn,
  .login-btn {
    width: 100%;
    text-align: center;
    padding: 0.4rem 0.8rem;
    color: crimson;
  }

  .login-btn {
    font-size: 0.9rem;
    padding: 6px 16px;
    margin: 0 auto;
    display: block;
  }

  .dropdown-content {
    position: relative;
    top: 0;
    left: 0;
    border: none;
    box-shadow: none;
    background-color: transparent;
    width: 100%;
    padding-left: 0;
    display: none;
  }

  .dropdown-content.active {
    display: block;
  }

  .dropdown-content a {
    padding: 0.5rem 0;
    color: #333;
  }

  .brand-subtext {
    font-size: 0.6rem;
    color: white;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .login-btn {
    font-size: 0.9rem;
    padding: 6px 16px;
    margin: 0 auto;
    display: inline-block;
    width: auto;
    max-width: 200px;
  }
}

@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}




/* ===============================
   HERO SECTION - DESKTOP STYLES
================================== */
.section-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trusted-learners {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.learner-profiles {
  display: flex;
  margin-left: -10px;
}

.learner-profiles img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -10px;
}

.learners-text {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.highlight-gradient {
  background: linear-gradient(45deg, crimson, #9b59b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheading {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-apply-btn {
  display: inline-block;
  background: linear-gradient(45deg, crimson, purple);
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.hero-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}


/* ===============================
   HERO SECTION - TABLET (max-width: 1024px)
================================== */
@media (max-width: 1024px) {
  .section-hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-content {
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subheading {
    font-size: 1.1rem;
  }
}


/* ===============================
   HERO SECTION - MOBILE (max-width: 767px)
================================== */
@media (max-width: 767px) {
  .section-hero {
    padding: 5rem 1rem 2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .trusted-learners {
    justify-content: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subheading {
    font-size: 1rem;
  }

  .hero-apply-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}


/* ========== About Section ========== */
.about-section {
  padding: 80px 20px;
  background-color: #fff;
}

.about-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: crimson;
  margin-bottom: 10px;
  font-weight: bold;
}

.about-section .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid layout for cards */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  background-color: #f9f9f9;
  border: 2px solid crimson;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-icon {
  font-size: 2.5rem;
  color: crimson;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive: Tablet */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section .section-title {
    font-size: 2.2rem;
  }

  .about-section .section-subtitle {
    font-size: 1rem;
  }

  .about-card {
    padding: 25px 15px;
  }
}

/* Responsive: Mobile */
@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-section .section-title {
    font-size: 2rem;
    text-align: left;
  }

  .about-section .section-subtitle {
    text-align: left;
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .about-card {
    padding: 20px 15px;
    text-align: left;
  }

  .about-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .about-card h3 {
    font-size: 1.2rem;
  }

  .about-card p {
    font-size: 0.95rem;
  }
}

/* =============================
   Section: Course Highlights
============================= */

.section-highlights {
  background: #fff;
  text-align: center;
}

.highlights-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: crimson;
  margin-bottom: 3rem;
}

.highlights-line {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.highlights-line::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, crimson, #9b59b6);
  z-index: 1;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  position: relative;
  z-index: 2;
}

.highlight-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, crimson, #9b59b6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.highlight-text {
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

/* ===== Responsive: Tablet (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .highlights-title {
    font-size: 2rem;
  }

  .highlights-line {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .highlights-line::before {
    display: none;
  }

  .highlight-item {
    flex: 1;
    min-width: calc(50% - 1rem);
  }
}

/* ===== Responsive: Mobile (max-width: 767px) ===== */
@media (max-width: 767px) {
  .highlights-title {
    font-size: 1.8rem;
  }

  .highlights-line {
    flex-direction: column;
    gap: 2rem;
  }

  .highlight-item {
    max-width: 100%;
  }

  .highlight-circle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ===== Section: AutoCAD Course  ===== */

.section-autocad-course {
  background-color: #fdfdfd;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.autocad-course-container {
  max-width: 1000px;
  margin: 0 auto;
}

.autocad-course-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b01630;
  line-height: 1.4;
  margin-bottom: 30px;
  text-align: center;
}

.autocad-course-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/* ===== Tablet Responsive (768px) ===== */

@media (max-width: 768px) {
  .autocad-course-heading {
    font-size: 2rem;
    text-align: left;
  }

  .autocad-course-text {
    font-size: 1rem;
    text-align: left;
  }
}

/* ===== Mobile Responsive (480px) ===== */

@media (max-width: 480px) {
  .autocad-course-heading {
    font-size: 1.6rem;
    text-align: left;
  }

  .autocad-course-container {
    padding: 0 10px;
  }

  .section-autocad-course {
    padding: 40px 10px;
  }

  .autocad-course-text {
    text-align: left;
  }
} 

/* ===== Section: SolidWorks Course Empower ===== */

.section-solidworks-course {
  background-color: #fdfdfd;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.solidworks-course-container {
  max-width: 1000px;
  margin: 0 auto;
}

.solidworks-course-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b01630;
  line-height: 1.4;
  margin-bottom: 30px;
  text-align: center;
}

.solidworks-course-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/* ===== Tablet Responsive (768px) ===== */

@media (max-width: 768px) {
  .solidworks-course-heading {
    font-size: 2rem;
    text-align: left;
  }

  .solidworks-course-text {
    font-size: 1rem;
    text-align: left;
  }
}

/* ===== Mobile Responsive (480px) ===== */

@media (max-width: 480px) {
  .solidworks-course-heading {
    font-size: 1.6rem;
    text-align: left;
  }

  .solidworks-course-container {
    padding: 0 10px;
  }

  .section-solidworks-course {
    padding: 40px 10px;
  }

  .solidworks-course-text {
    text-align: left;
  }
} 

/* ===== CATIA Course Empower Section ===== */

.section-catia-course {
  background-color: #fdfdfd;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.catia-course-container {
  max-width: 1000px;
  margin: 0 auto;
}

.catia-course-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b01630; /* Crimson tone */
  line-height: 1.4;
  margin-bottom: 30px;
  text-align: center;
}

.catia-course-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .catia-course-heading {
    font-size: 2rem;
    text-align: left;
  }

  .catia-course-text {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .catia-course-heading {
    font-size: 1.6rem;
    text-align: left;
  }

  .catia-course-container {
    padding: 0 10px;
  }

  .section-catia-course {
    padding: 40px 10px;
  }

  .catia-course-text {
    text-align: left;
  }
}

/* ===========================
   Course Contents Section
=========================== */

.section-autocad-contents {
  background: #fff;
  padding: 3rem 1rem;
}

.autocad-contents-container {
  max-width: 700px;
  margin: 0 auto;
}

.autocad-contents-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: crimson;
  text-align: center;
  margin-bottom: 2rem;
}

.contents-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.accordion-item {
  border: 1.5px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active {
  border-color: crimson;
  box-shadow: 0 3px 12px rgba(220, 20, 60, 0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
  background: crimson;
  color: #fff;
}

.accordion-label {
  font-weight: 600;
  font-size: 1rem;
}

.accordion-item.active .accordion-label {
  color: #fff;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: #fff;
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 1.5rem;
  max-height: 250px;
}

.accordion-list {
  list-style: none;
}

.accordion-list li {
  padding: 0.4rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.accordion-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: crimson;
  font-weight: bold;
}

@media (max-width: 768px) {
  .autocad-contents-title {
    font-size: 1.8rem;
    text-align: left;
  }

  .accordion-header {
    padding: 0.8rem 1.2rem;
  }

  .accordion-item.active .accordion-content {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .autocad-contents-container {
    padding: 0 8px;
  }

  .section-autocad-contents {
    padding: 30px 8px;
  }

  .autocad-contents-title {
    font-size: 1.5rem;
    text-align: left;
  }
}


/* ===========================
   Course Contents Section
=========================== */

.section-autocad-contents {
  background: #fff;
  padding: 3rem 1rem;
}

.autocad-contents-container {
  max-width: 700px;
  margin: 0 auto;
}

.autocad-contents-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: crimson;
  text-align: center;
  margin-bottom: 2rem;
}

.contents-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.accordion-item {
  border: 1.5px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active {
  border-color: crimson;
  box-shadow: 0 3px 12px rgba(220, 20, 60, 0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
  background: crimson;
  color: #fff;
}

.accordion-label {
  font-weight: 600;
  font-size: 1rem;
}

.accordion-item.active .accordion-label {
  color: #fff;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: #fff;
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 1.5rem;
  max-height: 250px;
}

.accordion-list {
  list-style: none;
}

.accordion-list li {
  padding: 0.4rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.accordion-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: crimson;
  font-weight: bold;
}

@media (max-width: 768px) {
  .autocad-contents-title {
    font-size: 1.8rem;
    text-align: left;
  }

  .accordion-header {
    padding: 0.8rem 1.2rem;
  }

  .accordion-item.active .accordion-content {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .autocad-contents-container {
    padding: 0 8px;
  }

  .section-autocad-contents {
    padding: 30px 8px;
  }

  .autocad-contents-title {
    font-size: 1.5rem;
    text-align: left;
  }
}

/* ===========================
   Benefits of Learning AutoCAD Section
=========================== */

.section-autocad-benefits {
  background: #f9f9f9;
  padding: 3rem 1rem;
}

.autocad-benefits-container {
  max-width: 1000px;
  margin: 0 auto;
}

.autocad-benefits-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: crimson;
  text-align: center;
  margin-bottom: 2rem;
}

.autocad-benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  background: #fff;
  padding: 1.8rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item span {
  display: inline-block;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: crimson;
}

.benefit-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #333;
}

.benefit-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .autocad-benefits-title {
    font-size: 1.8rem;
    text-align: left;
  }

  .benefit-item {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .section-autocad-benefits {
    padding: 30px 8px;
  }

  .autocad-benefits-title {
    font-size: 1.5rem;
  }

  .benefit-item span {
    font-size: 1.5rem;
  }
}

/* ===========================
   Course Contents Section
=========================== */

.section-autocad-contents {
  background: #fff;
  padding: 3rem 1rem;
}

.autocad-contents-container {
  max-width: 700px;
  margin: 0 auto;
}

.autocad-contents-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: crimson;
  text-align: center;
  margin-bottom: 2rem;
}

.contents-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.accordion-item {
  border: 1.5px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active {
  border-color: crimson;
  box-shadow: 0 3px 12px rgba(220, 20, 60, 0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
  background: crimson;
  color: #fff;
}

.accordion-label {
  font-weight: 600;
  font-size: 1rem;
}

.accordion-item.active .accordion-label {
  color: #fff;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: #fff;
}

.accordion-content {
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 1rem 1.2rem;
  max-height: 250px;
}

.accordion-list {
  list-style: none;
}

.accordion-list li {
  padding: 0.4rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.accordion-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: crimson;
  font-weight: bold;
}

@media (max-width: 768px) {
  .autocad-contents-title {
    font-size: 1.8rem;
    text-align: left;
  }

  .accordion-header {
    padding: 0.8rem 1rem;
  }

  .accordion-item.active .accordion-content {
    padding: 1rem 1rem;
  }
}

@media (max-width: 480px) {
  .autocad-contents-container {
    padding: 0 8px;
  }

  .section-autocad-contents {
    padding: 30px 8px;
  }

  .autocad-contents-title {
    font-size: 1.5rem;
    text-align: left;
  }
}

/* ============================
   SECTION: Benefits of Learning AutoCAD
============================ */

.section-autocad-benefits {
  background: #f8f9fa;
}

.autocad-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.autocad-benefits-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: crimson;
  margin-bottom: 1rem;
}

.autocad-benefits-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  color: crimson;
  margin-bottom: 1.5rem;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.benefit-text {
  color: #666;
  line-height: 1.6;
}

/* ===== Benefits Section Responsive: Tablet (768px - 1024px) ===== */
@media (max-width: 1024px) {
  .benefits-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===== Benefits Section Responsive: Mobile (Below 768px) ===== */
@media (max-width: 767px) {
  .autocad-benefits-title {
    font-size: 1.5rem;       /* Smaller font size */
    text-align: center;       /* Center alignment */
  }

  .autocad-benefits-subtitle {
    font-size: 1rem;          /* Optional: slightly smaller subtitle */
    text-align: center;
  }

  .benefit-card {
    padding: 1.5rem 1rem;     /* Slightly reduced padding */
  }
}

/* ===== Counter Section - Desktop ===== */
.counter-section {
  background: linear-gradient(135deg, crimson 0%, #9b59b6 100%);
  color: #fff;
}

.counter-section .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.counter-box {
  text-align: center;
  flex: 1;
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.counter-box p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.divider {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 2rem;
}
@media (max-width: 1024px) {
  .counter {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .counter-section .container {
    flex-direction: column;
    gap: 2rem;
  }

  .divider {
    width: 60px;
    height: 2px;
    margin: 0;
  }

  .counter {
    font-size: 2rem;
  }
}

/* ===== Core Competencies Section - Desktop ===== */
.section-competency {
  background: #f8f9fa;
  text-align: center;
}

.competency-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: crimson;
  margin-bottom: 1rem;
}

.competency-subtitle {
  font-size: 1.1rem;
  color: black;
  margin-bottom: 3rem;
}

.competency-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}

.competency-box {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  position: relative;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid;
}

.competency-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.competency-box.pink { border-left-color: #e91e63; }
.competency-box.orange { border-left-color: #ff9800; }
.competency-box.purple { border-left-color: #9c27b0; }
.competency-box.yellow { border-left-color: #ffeb3b; }
.competency-box.violet { border-left-color: #673ab7; }
.competency-box.red { border-left-color: #f44336; }

.competency-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.competency-content h3 i {
  margin-right: 0.5rem;
  color: crimson;
}

.competency-content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.competency-step {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: crimson;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
}
@media (max-width: 1024px) {
  .competency-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .competency-title {
    font-size: 2rem;
  }

  .competency-container {
    grid-template-columns: 1fr;
  }

  .competency-box {
    padding: 1.5rem;
  }
}

/* ===== Our CAD Advantages Section - Global Styles ===== */
.cad-feature-section {
  background: #fff;
}

.cad-feature-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.cad-feature-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: crimson;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cad-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cad-feature-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;

  /* Animation Initial State */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1s ease forwards;
}

/* Animation Delays for Staggered Effect */
.cad-feature-card:nth-child(1) { animation-delay: 0.2s; }
.cad-feature-card:nth-child(2) { animation-delay: 0.4s; }
.cad-feature-card:nth-child(3) { animation-delay: 0.6s; }

.cad-feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #9b59b6;
}

.cad-feature-card .material-icons {
  font-size: 3rem;
  color: crimson;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.cad-feature-card:hover .material-icons {
  transform: scale(1.2);
  color: #9b59b6;
}

.cad-feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.cad-feature-card p {
  color: #666;
  line-height: 1.6;
}

/* ===== Our CAD Advantages Section - Tablet ===== */
@media (max-width: 1024px) {
  .cad-feature-heading {
    font-size: 2rem;
  }

  .cad-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cad-feature-card {
    padding: 2rem 1.5rem;
  }
}

/* ===== Our CAD Advantages Section - Mobile ===== */
@media (max-width: 767px) {
  .cad-feature-heading {
    font-size: 2rem;
  }

  .cad-feature-grid {
    grid-template-columns: 1fr;
  }

  .cad-feature-card {
    padding: 2rem 1.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;

    /* Mobile also gets same animation (already applied globally) */
  }

  .cad-feature-card:active {
    transform: scale(0.97);
  }

  .cad-feature-card:hover {
    transform: scale(1.03);
  }

  .cad-feature-card .material-icons {
    font-size: 2.5rem;
  }
}

/* ================================
   Companies where our students got jobs Section
================================== */

.section-hiring {
  background: #f8f9fa;
}

.hiring-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 2rem;
}

.hiring-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hiring-title .crimson {
  color: #dc143c;
}

.hiring-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hiring-btn {
  display: inline-block;
  background: linear-gradient(45deg, #dc143c, purple);
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.hiring-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.company-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.company-logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
  transition: all 0.3s ease;
  border-radius: 5px;
  padding: 0.5rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.company-logo:hover {
  transform: scale(1.1);
}

.more-companies {
  grid-column: span 2;
  text-align: center;
  color: #666;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hiring-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .company-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .company-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================
   Reviews Section
================================== */

.section-reviews {
  padding: 4rem 2rem;
  background: #fff;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.reviews-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.review-card {
  padding: 1.2rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.25rem;
}

.reviewer-course {
  font-size: 0.85rem;
  color: #666;
}

.review-text {
  color: #555;
  line-height: 1.6;
  font-style: italic;
  font-size: 0.95rem;
}

.google-rating-box {
  background: #fff;
  border: 3px solid #f0f0f0;
  border-radius: 15px;
  padding: 3rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: fit-content;
  width: 100%;
  margin: auto;
}

.google-rating-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: crimson;
}

.google-logo {
  height: 70px;
  margin-bottom: 2rem;
}

.rating-value {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.rating-stars {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.rating-label {
  color: #666;
  font-weight: 500;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .reviews-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .reviews-cards {
    grid-template-columns: 1fr;
  }

  .review-header {
    justify-content: center;
  }

  .google-rating-box {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .rating-value {
    font-size: 2.2rem;
  }

  .rating-stars {
    font-size: 1.5rem;
  }

  .rating-label {
    font-size: 0.9rem;
  }
}

/* ===== Certificate Section - How will you get your certificate? ===== */

.section-certificate {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.certificate-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 2rem;
}

.certificate-left {
  text-align: left;
}

.certificate-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
  text-align: left;
}

.certificate-timeline {
  position: relative;
  counter-reset: step-counter;
}

.certificate-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 60px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.timeline-step.active {
  opacity: 1;
  transform: translateX(0);
}

.timeline-circle {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  color: #667eea;
  font-weight: 600;
  font-size: 0.9rem;
}

.timeline-circle::after {
  content: counter(step-counter);
  counter-increment: step-counter;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  width: 100%;
}

.timeline-step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.timeline-step-text {
  opacity: 0.9;
  line-height: 1.6;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Certificate Image Section */
.certificate-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.certificate-image-container {
  position: relative;
  max-width: 400px;
}

.certificate-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
  transition: all 0.3s ease;
}

.certificate-image:hover {
  transform: rotate(0deg) scale(1.05);
}

.certificate-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: #667eea;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-width: 80px;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.certificate-badge:hover {
  transform: scale(1);
}

.certificate-badge .material-icons {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.certificate-badge p {
  font-size: 0.7rem;
  font-weight: 600;
  margin: 0;
}

/* Certificate Section - Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.timeline-step.active {
  opacity: 1;
  transform: translateY(0);
}

/* Certificate Section - Mobile */
@media (max-width: 1024px) {
  .certificate-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .certificate-left {
    text-align: center;
  }

  .certificate-title {
    text-align: center;
    font-size: 2.2rem;
  }

  .certificate-right {
    order: -1;
  }

  .certificate-image-container {
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .certificate-title {
    font-size: 2rem;
  }

  .certificate-right {
    display: none;
  }

  .certificate-left {
    text-align: center;
  }

  .timeline-step {
    padding-left: 40px;
  }

  .timeline-circle {
    left: 15px;
    width: 30px;
    height: 30px;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .timeline-step-title {
    font-size: 1.1rem;
  }
}



/* footer */

.footer {
  background-color: #1c1c22;
  color: white;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

/* Fix logo spacing */
.footer-logo-img {
  width: 100px;
  margin: -25px 0; /* adds top and bottom spacing */
}

/* Make the paragraph justified */
.footer-col p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;  /* <-- this makes it align full */
}


.footer-logo-text {
  font-size: 20px;
  color: crimson;
  margin-bottom: 15px; /* increased from 10px */
}


.footer-col h3 {
  color: crimson;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: crimson;
}

.footer-col p,
.footer-col a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  text-align: left;
}
.location-link {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.6;
  display: inline-block;
}

.location-link:hover {
  color: crimson;
  text-decoration: underline;
}


.social-icons a {
  display: inline-flex;                  /* Centers icon in circle */
  align-items: center;
  justify-content: center;
  width: 36px;                           /* Fixed width */
  height: 36px;                          /* Same height = circle */
  border-radius: 50%;                   /* Makes it a circle */
  border: 1px solid crimson;
  background-color: transparent;
  color: white;
  font-size: 16px;
  margin-right: 8px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background-color: crimson;
  color: white;
}


.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  color: #aaa;
  font-size: 13px;
}
/* Normal-looking link */
.plain-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.plain-link:hover {
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
.footer-container {
  gap: 0px !important;
}

.footer-col {
  margin-bottom: 10px !important;
}


  .footer-col h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .footer-col ul li {
    margin-bottom: 4px;
  }

  .footer-logo-img {
    width: 80px;
  }

  .footer-logo-text {
    font-size: 18px;
  }

  .social-icons {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .footer-bottom {
    text-align: left;
    margin-top: 20px;
  }
}


/* WhatsApp Floating Button with Font Icon */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebd5a;
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Mobile Responsive */
@media screen and (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 24px;
    bottom: 15px;
    left: 15px;
  }
}


/* Scroll to Top Button Bottom Right */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  font-size: 24px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
#scrollTopBtn:hover {
  background-color: #0056b3;
}




/* Enroll Button */
.enroll-btn {
  background-color: crimson;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.enroll-btn:hover {
  background-color: darkred;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Form Container */
.form-container {
  background: #fff;
  padding: 5px 20px;         /* 🔻 Reduced padding */
  border-radius: 12px;
  width: 90%;
  max-width: 400px;           /* 🔻 Reduced width too */
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}



.form-container h2 {
  margin-bottom: 20px;
  color: crimson;
  text-align: center;
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  color: crimson;
  cursor: pointer;
}

/* Form Fields */
.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: crimson;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: crimson;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: darkred;
}

/* Responsive */
@media (max-width: 600px) {
  .form-container {
    padding: 20px;
  }

  .enroll-btn {
    width: 100%;
  }
}