* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

:root {
  --primary-red: #ff4444;
  --dark-text: #333;
  --light-gray: #f5f5f5;
}

body {
  line-height: 1.6;
  color: var(--dark-text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Section */
.header {
  padding: 20px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo {
  color: #666;
  /* margin-bottom: 20px; */
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 60px 30px;
  background: #fff;
  border-radius: 20px;
  margin: 20px 0;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
    rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.hero-content {
  padding-right: 40px;
}

.hero-image {
  background: var(--primary-red);
  border-radius: 20px;
  overflow: hidden;
}

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

h1 span {
  color: var(--primary-red);
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

h2 span {
  color: var(--primary-red);
}

h3 {
  font-size: 1.5rem;
  margin: 20px 0px 15px;
  line-height: 1.2;
}

.features-list {
  list-style: none;
  margin: 30px 0;
}

.features-list li {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list i {
  color: var(--primary-red);
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 40px 0;
  text-align: center;
}

.stat-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.featureicons {
  color: var(--primary-red);
  font-size: 22px;
  background-color: #fcf1f5;
  padding: 15px;
  border-radius: 100%;
}

.stat-number {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Buttons */
.button-group {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.btn-secondary {
  background: #fff;
  color: var(--dark-text);
  border: 1px solid #ddd;
}

/* Program Cards */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.program-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.program-card img {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
}

/* Compare Cards */
.cardssection {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0px;
  background-color: var(--bg-white);
  border-radius: 20px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
}

.comparison-header {
  margin-bottom: 40px;
}

.small-header {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.main-heading span {
  color: var(--primary-red);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin: 40px 0;
  position: relative;
}

.criteria-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 40px;
}

.criteria-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.criteria-item i {
  width: 20px;
  color: var(--text-gray);
}

.program-column {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}

.program-column.dba {
  border: 2px solid var(--primary-red);
}

.program-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.dba .program-title {
  color: var(--primary-red);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  min-height: 100px;
}

.customicon {
  color: #28a745 !important;
  margin-top: 4px !important;
}

.feature-text {
  font-size: 14px;
  color: var(--text-dark);
}

.contact-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 32px;
  background: #fff;
  color: var(--dark-text);
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-button:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

/* info card */
.card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
    rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  margin: 0px 0px 60px;
}

.highlight {
  color: #ff4444;
}

.specializations {
  padding-left: 20px;
}

.specializations li {
  margin-bottom: 15px;
  line-height: 1.5;
}

.specializations strong {
  color: #333;
}

p {
  line-height: 1.6;
  color: #444;
  margin: 20px 0;
}

.read-more-btn {
  background: none;
  border: none;
  color: #ff4444;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  margin-top: 20px;
  text-decoration: underline;
}

.read-more-btn:hover {
  color: #ff6666;
}

.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.content.expanded {
  max-height: 1000px;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
  transition: background-color 0.3s ease;
}

.accordion-button:hover {
  background-color: #ffeeee;
}

.accordion-button .icon {
  font-size: 20px;
  color: #ff4444;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-button .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: white;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  padding: 10px 20px 20px;
  margin: 0;
  line-height: 1.6;
  color: #444;
}

/* Affilation */
.content-wrapper {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.text-content {
  flex: 1;
}

.text-content h2 {
  font-size: 1.8rem;
  color: #333;
  margin: 0 0 20px 0;
}

.text-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.accreditation-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Footer */

.footer {
  background-color: #444;
  padding: 20px 0;
  text-align: center;
  margin-top: auto;
  width: 100%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.copyright {
  color: #e8e8e8;
  font-size: 14px;
  margin: 0 0 10px 0;
}

.footer-link {
  color: #ffd5d5;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff4444;
}

/* Form Modal */

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: modalopen 0.5s;
}

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

.close-btn {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #c3c3c3;
}

.form-header {
  background-color: #ee2c3c;
  color: white;
  padding: 15px 15px 5px;
  margin: -20px -20px 20px -20px;
  border-radius: 8px 8px 0 0;
  text-align: center;
}

.textinput {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.selectinput {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
}

#leadform {
  background-color: #ee2c3c;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 15px;
  font-weight: bold;
  transition: background-color 0.3s;
}

#leadform:hover {
  background-color: #d41929;
}

label p {
  margin: 5px 0;
  color: #444;
}

.security-note {
  background-color: #444;
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  margin: 15px 0;
  font-size: 12px;
}

.security-note i {
  margin-right: 5px;
}

/* Trigger button styling */
.modal-trigger {
  background-color: #ee2c3c;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.modal-trigger:hover {
  background-color: #d41929;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-right: 0;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .comparison-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .button-group {
    flex-direction: column;
  }

  .criteria-column {
    padding-top: 10px;
  }

  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  .content-wrapper {
    flex-direction: column;
  }

  .accreditation-image {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {


  .programs-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 15px 0;
  }

  .footer-nav {
    flex-direction: column;
    gap: 5px;
  }

  .separator {
    display: none;
  }
}
