/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.68)), url(../assets/image/bg.webp?w=1200&h=600&fit=crop) center / cover;
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #ffffff;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    color: #ffffff;
}

.introduction-section {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 3.5rem;
  color: #70181f;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header .underline {
  width: 100px;
  height: 4px;
  background: #70181f;
  margin: 20px auto;
  border-radius: 2px;
}

.content-wrapper {
  background: white;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #70181f;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(112, 24, 31, 0.05);
  z-index: 0;
}

.shape1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
}

.shape2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -30px;
}

.content-text {
  position: relative;
  z-index: 1;
}

.content-text p {
  font-size: 1.15rem;
  line-height: 2;
  color: #444;
  margin-bottom: 30px;
}

.content-text p:last-child {
  margin-bottom: 0;
}

.highlight {
  background: rgba(112, 24, 31, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  color: #70181f;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 2px solid #f0f0f0;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: #70181f;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.stat-item h4 {
  font-size: 1.1rem;
  color: #70181f;
  margin-bottom: 8px;
  font-weight: 600;
}

.stat-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  body {
    padding: 40px 15px;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .content-wrapper {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .content-text p {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.mt-100 {
  margin-top: 100px;
}

.programs-wrapper {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  min-height: 100vh;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.programs-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.programs-hero {
  text-align: center;
  margin-bottom: 80px;
}

.programs-hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: #70181f;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.programs-hero-subtitle {
  font-size: 1.4rem;
  color: #666666;
  font-weight: 300;
}

.program-category-wrapper {
  margin-bottom: 80px;
}

.category-title-section {
  margin-bottom: 40px;
  position: relative;
}

.category-title-header {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #f8f9fa;
  padding: 20px 40px;
  border-radius: 50px;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
}

.category-icon-box {
  width: 60px;
  height: 60px;
  background: #70181f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(112, 24, 31, 0.3);
}

.category-icon-box svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.category-main-title {
  font-size: 2.5rem;
  color: #000000;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.overview-info-box {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 30px 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.overview-info-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #70181f;
}

.overview-info-item {
  color: #333333;
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 8px;
}

.overview-info-item:last-child {
  margin-bottom: 0;
}

.overview-label {
  color: #70181f;
  font-weight: 700;
  margin-right: 8px;
}

.program-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}

.program-card-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.program-card-item:hover {
  transform: translateY(-10px);
  border-color: #70181f;
  box-shadow: 0 15px 40px rgba(112, 24, 31, 0.2);
}

.program-card-title {
  font-size: 1.5rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.program-title-icon {
  width: 45px;
  height: 45px;
  background: #70181f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.program-details-list {
  position: relative;
  z-index: 1;
}

.program-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #666666;
  font-size: 1rem;
}

.detail-icon-dot {
  width: 6px;
  height: 6px;
  background: #70181f;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.detail-label {
  color: #70181f;
  font-weight: 600;
  margin-right: 6px;
}

.program-badge-status {
  display: inline-block;
  padding: 8px 20px;
  background: #427d3a;
  color: white;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.specialization-section {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #e0e0e0;
  position: relative;
  z-index: 1;
}

.spec-section-title {
  color: #666666;
  font-size: 0.95rem;
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spec-tag-item {
  background: #f8f9fa;
  border: 1px solid #70181f;
  color: #70181f;
  padding: 8px 16px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.spec-tag-item:hover {
  background: #70181f;
  color: white;
  transform: translateY(-2px);
}

.phd-description-text {
  color: #333333;
  line-height: 2;
  font-size: 1.1rem;
  margin-bottom: 40px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 4px solid #70181f;
}

.phd-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.phd-info-card {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.phd-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #427d3a;
}

.phd-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.phd-card-title {
  color: #70181f;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.phd-card-content {
  color: #666666;
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .programs-wrapper {
    padding: 50px 15px;
  }

  .programs-hero-title {
    font-size: 2.5rem;
  }

  .programs-hero-subtitle {
    font-size: 1.1rem;
  }

  .category-title-header {
    padding: 15px 25px;
  }

  .category-main-title {
    font-size: 1.8rem;
  }

  .program-cards-grid {
    grid-template-columns: 1fr;
  }

  .phd-info-grid {
    grid-template-columns: 1fr;
  }
}

.academic-features-wrapper {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  min-height: 100vh;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.features-container-main {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.features-header-section {
  text-align: center;
  margin-bottom: 80px;
}

.features-main-heading {
  font-size: 3.5rem;
  font-weight: 800;
  color: #70181f;
  margin-bottom: 20px;
  line-height: 1.2;
}

.features-subheading {
  font-size: 1.3rem;
  color: #666666;
  font-weight: 300;
}

.features-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
}

.feature-card-box {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  padding: 45px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-card-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #70181f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card-box:hover::after {
  transform: scaleX(1);
}

.feature-card-box:hover {
  transform: translateY(-10px);
  border-color: #70181f;
  box-shadow: 0 20px 50px rgba(112, 24, 31, 0.15);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: #70181f;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  transition: all 0.4s ease;
}

.feature-card-box:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.feature-icon-symbol {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
  color: white;
}

.feature-card-heading {
  font-size: 1.6rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.feature-card-box:hover .feature-card-heading {
  color: #70181f;
}

.feature-description-text {
  color: #666666;
  line-height: 1.9;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.feature-number-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border: 2px solid #70181f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #70181f;
  transition: all 0.4s ease;
}

.feature-card-box:hover .feature-number-badge {
  background: #70181f;
  color: white;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .academic-features-wrapper {
    padding: 50px 15px;
  }

  .features-main-heading {
    font-size: 2.2rem;
  }

  .features-subheading {
    font-size: 1.1rem;
  }

  .features-grid-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-card-box {
    padding: 35px 25px;
  }

  .feature-card-box:hover {
    transform: translateY(-10px);
  }
}

.departments-section-wrapper {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  min-height: 100vh;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.departments-main-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.dept-header-section {
  text-align: center;
  margin-bottom: 60px;
}

.dept-main-title {
  font-size: 4rem;
  font-weight: 800;
  color: #70181f;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.dept-subtitle-text {
  font-size: 1.4rem;
  color: #666666;
  font-weight: 300;
  margin-bottom: 25px;
}

.dept-intro-content {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 30px 40px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.dept-intro-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #70181f;
}

.dept-intro-text {
  color: #333333;
  font-size: 1.1rem;
  line-height: 1.9;
  text-align: center;
}

.departments-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 35px;
  margin-bottom: 60px;
}

.dept-card-wrapper {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.dept-card-wrapper:hover {
  transform: translateY(-10px);
  border-color: #70181f;
  box-shadow: 0 20px 50px rgba(112, 24, 31, 0.15);
}

.dept-image-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.dept-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dept-card-wrapper:hover .dept-card-image {
  transform: scale(1.1);
}

.dept-card-content {
  padding: 30px;
  position: relative;
}

.dept-card-title {
  font-size: 1.5rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dept-title-icon {
  width: 40px;
  height: 40px;
  background: #70181f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: white;
}

.dept-card-info {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dept-info-icon {
  color: #70181f;
  font-weight: bold;
}

.dept-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f8f9fa;
  border: 1px solid #70181f;
  color: #70181f;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.dept-card-wrapper:hover .dept-explore-btn {
  background: #70181f;
  color: white;
  transform: translateX(5px);
}

.dept-cta-section {
  text-align: center;
  margin-top: 70px;
}

.dept-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: #70181f;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(112, 24, 31, 0.3);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.dept-view-all-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(112, 24, 31, 0.4);
}

.btn-arrow-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.dept-view-all-btn:hover .btn-arrow-icon {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .departments-section-wrapper {
    padding: 50px 15px;
  }

  .dept-main-title {
    font-size: 2.5rem;
  }

  .dept-subtitle-text {
    font-size: 1.1rem;
  }

  .dept-intro-content {
    padding: 25px;
  }

  .departments-grid-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .dept-image-container {
    height: 200px;
  }
}

.calendar-section-wrapper {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  min-height: 100vh;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.calendar-main-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.calendar-header-block {
  text-align: center;
  margin-bottom: 60px;
}

.calendar-year-badge {
  display: inline-block;
  padding: 10px 25px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  color: #70181f;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.calendar-main-heading {
  font-size: 3.8rem;
  font-weight: 800;
  color: #70181f;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.calendar-subtitle {
  font-size: 1.2rem;
  color: #666666;
  font-weight: 300;
}

.calendar-content-block {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.calendar-content-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #70181f;
}

.semester-tabs-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.semester-tab-btn {
  padding: 15px 40px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  color: #666666;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
}

.semester-tab-btn.active {
  background: #70181f;
  color: white;
  border-color: #70181f;
}

.semester-tab-btn:hover:not(.active) {
  background: #f8f9fa;
  border-color: #70181f;
  color: #70181f;
}

.tab-content-panel {
  display: none;
}

.tab-content-panel.active-tab {
  display: block;
}

.calendar-table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
}

.academic-events-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
}

.table-header-row {
  background: #70181f;
}

.table-header-cell {
  padding: 20px 25px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table-header-cell:first-child {
  border-radius: 15px 0 0 15px;
}

.table-header-cell:last-child {
  border-radius: 0 15px 15px 0;
}

.table-data-row {
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.table-data-row:hover {
  background: rgba(112, 24, 31, 0.1);
  transform: translateX(5px);
}

.table-data-cell {
  padding: 22px 25px;
  color: #333333;
  font-size: 1rem;
  border: none;
  line-height: 1.6;
}

.table-data-cell:first-child {
  border-radius: 15px 0 0 15px;
  font-weight: 600;
  color: #000000;
}

.table-data-cell:last-child {
  border-radius: 0 15px 15px 0;
}

.event-name-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-icon-box {
  width: 40px;
  height: 40px;
  background: #70181f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: white;
}

.semester-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #f8f9fa;
  border: 1px solid #427d3a;
  border-radius: 20px;
  color: #427d3a;
  font-size: 0.9rem;
  font-weight: 600;
}

.download-section-block {
  text-align: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.download-calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: #70181f;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(112, 24, 31, 0.3);
  text-decoration: none;
}

.download-calendar-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(112, 24, 31, 0.4);
}

.download-icon {
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .calendar-section-wrapper {
    padding: 50px 15px;
  }

  .calendar-main-heading {
    font-size: 2.5rem;
  }

  .calendar-content-block {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .semester-tabs-container {
    flex-direction: column;
    gap: 15px;
  }

  .semester-tab-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .academic-events-table {
    font-size: 0.9rem;
  }

  .table-header-cell,
  .table-data-cell {
    padding: 15px;
  }

  .event-icon-box {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

.exam-system-wrapper {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  min-height: 100vh;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.exam-main-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.exam-header-wrapper {
  text-align: center;
  margin-bottom: 70px;
}

.exam-title-main {
  font-size: 4rem;
  font-weight: 800;
  color: #70181f;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.exam-intro-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 35px 45px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.exam-intro-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #70181f;
}

.exam-intro-text {
  color: #333333;
  font-size: 1.15rem;
  line-height: 1.9;
  text-align: center;
}

.exam-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.eval-pattern-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  padding: 45px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.eval-pattern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #70181f;
}

.eval-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.eval-percentage-circle {
  width: 90px;
  height: 90px;
  background: #70181f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(112, 24, 31, 0.3);
}

.percentage-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.percentage-label {
  font-size: 0.75rem;
  color: white;
}

.eval-card-title {
  flex: 1;
}

.eval-title-text {
  font-size: 1.8rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 8px;
}

.eval-title-subtitle {
  font-size: 1rem;
  color: #666666;
}

.eval-components-list {
  list-style: none;
}

.eval-component-item {
  padding: 15px 20px;
  background: #f8f9fa;
  border-left: 3px solid #70181f;
  border-radius: 10px;
  margin-bottom: 12px;
  color: #333333;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.eval-component-item:hover {
  background: rgba(112, 24, 31, 0.1);
  transform: translateX(8px);
}

.component-icon {
  font-size: 1.3rem;
}

.grading-system-section {
  margin-top: 50px;
  padding: 50px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.grading-system-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #70181f;
}

.grading-header {
  text-align: center;
  margin-bottom: 35px;
}

.grading-title {
  font-size: 2.5rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 15px;
}

.grading-description {
  color: #666666;
  font-size: 1.1rem;
  line-height: 1.8;
}

.cgpa-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cgpa-point-box {
  width: 100px;
  height: 100px;
  background: white;
  border: 2px solid #70181f;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #70181f;
  transition: all 0.4s ease;
  cursor: pointer;
}

.cgpa-point-box:hover {
  background: #70181f;
  color: white;
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 15px 40px rgba(112, 24, 31, 0.3);
}

.governance-section {
  margin-top: 50px;
  padding: 45px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.governance-section::before {
  content: '🎓';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 5rem;
  opacity: 0.1;
}

.governance-title {
  font-size: 2rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.governance-icon {
  width: 60px;
  height: 60px;
  background: #70181f;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
}

.governance-text {
  color: #333333;
  font-size: 1.1rem;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .exam-system-wrapper {
    padding: 50px 15px;
  }

  .exam-title-main {
    font-size: 2.5rem;
  }

  .exam-intro-box {
    padding: 25px;
  }

  .exam-content-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .eval-pattern-card {
    padding: 35px 25px;
  }

  .eval-card-header {
    flex-direction: column;
    text-align: center;
  }

  .grading-system-section,
  .governance-section {
    padding: 35px 25px;
  }

  .cgpa-point-box {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}

.support-services-wrapper {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  min-height: 100vh;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.support-main-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.support-header-section {
  text-align: center;
  margin-bottom: 70px;
}

.support-main-title {
  font-size: 4rem;
  font-weight: 800;
  color: #70181f;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.support-subtitle {
  font-size: 1.3rem;
  color: #666666;
  font-weight: 300;
}

.services-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 35px;
}

.service-card-container {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card-container:hover {
  transform: translateY(-10px);
  border-color: #70181f;
  box-shadow: 0 20px 50px rgba(112, 24, 31, 0.15);
}

.service-image-section {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-container:hover .service-card-image {
  transform: scale(1.15);
}

.service-icon-badge {
  position: absolute;
  bottom: 20px;
  left: 30px;
  width: 70px;
  height: 70px;
  background: #70181f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  color: white;
}

.service-card-container:hover .service-icon-badge {
  transform: scale(1.15) rotate(10deg);
}

.service-content-block {
  padding: 35px;
}

.service-title-heading {
  font-size: 1.8rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
}

.service-description-text {
  color: #666666;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-features-list {
  list-style: none;
  margin-top: 20px;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: #666666;
  font-size: 0.98rem;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.service-feature-item:last-child {
  border-bottom: none;
}

.service-feature-item:hover {
  color: #333333;
  transform: translateX(8px);
}

.feature-check-icon {
  color: #70181f;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-stats-row {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #f0f0f0;
}

.stat-box-item {
  flex: 1;
  text-align: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
}

.stat-number-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #70181f;
  display: block;
  margin-bottom: 5px;
}

.stat-label-text {
  font-size: 0.85rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .support-services-wrapper {
    padding: 50px 15px;
  }

  .support-main-title {
    font-size: 2.5rem;
  }

  .services-grid-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-image-section {
    height: 200px;
  }

  .service-content-block {
    padding: 30px 25px;
  }

  .service-stats-row {
    flex-direction: column;
    gap: 15px;
  }
}

.syllabus-section-wrapper {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  min-height: 100vh;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.syllabus-main-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.syllabus-header-block {
  text-align: center;
  margin-bottom: 60px;
}

.syllabus-main-heading {
  font-size: 4rem;
  font-weight: 800;
  color: #70181f;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.syllabus-intro-block {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 30px 40px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  position: relative;
}

.syllabus-intro-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #70181f;
}

.syllabus-intro-text {
  color: #333333;
  font-size: 1.15rem;
  line-height: 1.9;
  text-align: center;
}

.programs-category-section {
  margin-bottom: 50px;
}

.category-header-title {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 15px 35px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  margin-bottom: 35px;
}

.category-icon-circle {
  width: 50px;
  height: 50px;
  background: #70181f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(112, 24, 31, 0.3);
  color: white;
}

.category-title-text {
  font-size: 2rem;
  color: #000000;
  font-weight: 700;
}

.syllabus-downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

.download-card-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.download-card-item:hover {
  background: #f8f9fa;
  border-color: #70181f;
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(112, 24, 31, 0.15);
}

.download-info-section {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.download-file-icon {
  width: 55px;
  height: 55px;
  background: #70181f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  color: white;
}

.download-text-content {
  flex: 1;
}

.download-program-name {
  font-size: 1.2rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: 5px;
}

.download-file-meta {
  font-size: 0.85rem;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.file-size-badge {
  background: #f8f9fa;
  padding: 3px 10px;
  border-radius: 10px;
  color: #427d3a;
  font-weight: 600;
}

.download-button-link {
  padding: 12px 25px;
  background: #70181f;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.download-button-link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(112, 24, 31, 0.3);
}

.download-icon-symbol {
  font-size: 1.1rem;
}

.all-downloads-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid #e0e0e0;
}

.view-all-downloads-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 50px;
  background: #70181f;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(112, 24, 31, 0.3);
}

.view-all-downloads-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(112, 24, 31, 0.4);
}

@media (max-width: 768px) {
  .syllabus-section-wrapper {
    padding: 50px 15px;
  }

  .syllabus-main-heading {
    font-size: 2.5rem;
  }

  .syllabus-intro-block {
    padding: 25px;
  }

  .syllabus-downloads-grid {
    grid-template-columns: 1fr;
  }

  .download-card-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-button-link {
    width: 100%;
    justify-content: center;
  }
}

.cta-section-wrapper {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #70181f;
  min-height: 100vh;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-main-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  padding: 80px 60px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.cta-headline-text {
  font-size: 4.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -2px;
}

.cta-subheadline-text {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 50px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.cta-primary-btn {
  padding: 20px 50px;
  background: white;
  color: #70181f;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-secondary-btn {
  padding: 20px 50px;
  background: transparent;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  border: 2px solid white;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cta-secondary-btn:hover {
  background: white;
  color: #70181f;
  transform: translateY(-5px);
}

.cta-btn-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.cta-primary-btn:hover .cta-btn-icon {
  transform: translateX(5px);
}

.cta-stats-row {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-stat-item {
  text-align: center;
}

.cta-stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  display: block;
  margin-bottom: 10px;
}

.cta-stat-label {
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.cta-feature-box {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.cta-feature-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}

.cta-feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.cta-feature-title {
  font-size: 1.1rem;
  color: white;
  font-weight: 600;
  margin-bottom: 8px;
}

.cta-feature-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .cta-section-wrapper {
    padding: 60px 15px;
  }

  .cta-content-box {
    padding: 50px 30px;
    border-radius: 30px;
  }

  .cta-headline-text {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .cta-subheadline-text {
    font-size: 1.2rem;
  }

  .cta-buttons-container {
    flex-direction: column;
    gap: 20px;
  }

  .cta-primary-btn,
  .cta-secondary-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 40px;
  }

  .cta-stats-row {
    gap: 30px;
  }

  .cta-stat-number {
    font-size: 2.5rem;
  }

  .cta-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* HIT Introduction Section */
.hit-mt-100 {
  margin-top: 100px;
}

.hit-introduction-section {
  padding: 80px 0;
  position: relative;
  background: #ffffff;
}

.hit-section-header {
  text-align: center;
  margin-bottom: 70px;
}

.hit-section-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #000000;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

.hit-section-header h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(112, 24, 31, 0.08);
  border-radius: 50%;
  top: -15px;
  right: -40px;
  z-index: -1;
}

.hit-underline-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.hit-underline {
  width: 100px;
  height: 4px;
  background: #70181f;
  border-radius: 3px;
}

.hit-underline-dot {
  width: 8px;
  height: 8px;
  background: #427d3a;
  border-radius: 50%;
}

.hit-content-section {
  margin-bottom: 60px;
}

.hit-content-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  border-left: 5px solid #70181f;
  position: relative;
}

.hit-content-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: #70181f;
  opacity: 0.05;
  font-family: Georgia, serif;
  line-height: 1;
}

.hit-content-card p {
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 25px;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.hit-content-card p:last-child {
  margin-bottom: 0;
}

.hit-highlight {
  color: #70181f;
  font-weight: 700;
  background: rgba(112, 24, 31, 0.08);
  padding: 3px 10px;
  border-radius: 5px;
  display: inline-block;
}

.hit-feature-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.hit-feature-card:hover {
  border-color: #70181f;
  box-shadow: 0 8px 35px rgba(112, 24, 31, 0.15);
}

.hit-feature-number {
  width: 70px;
  height: 70px;
  background: #70181f;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.hit-feature-card:nth-child(2) .hit-feature-number {
  background: #427d3a;
}

.hit-feature-card:nth-child(3) .hit-feature-number {
  background: #000000;
}

.hit-feature-content h4 {
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 8px;
  font-weight: 700;
}

.hit-feature-content p {
  font-size: 1rem;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}

.hit-stats-section {
  margin-top: 50px;
}

.hit-stat-card {
  background: #ffffff;
  padding: 50px 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  border-top: 5px solid #70181f;
  transition: all 0.3s ease;
}

.hit-stat-card:nth-child(2) {
  border-top-color: #427d3a;
}

.hit-stat-card:nth-child(3) {
  border-top-color: #000000;
}

.hit-stat-card:hover {
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.12);
}

.hit-stat-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: #70181f;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hit-stat-card:nth-child(2) .hit-stat-icon {
  background: #427d3a;
}

.hit-stat-card:nth-child(3) .hit-stat-icon {
  background: #000000;
}

.hit-stat-icon svg {
  width: 45px;
  height: 45px;
  fill: #ffffff;
}

.hit-stat-card h4 {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 12px;
  font-weight: 800;
}

.hit-stat-card p {
  font-size: 1.05rem;
  color: #666666;
  margin: 0;
  font-weight: 500;
}

.hit-decorative-bg {
  position: absolute;
  width: 100%;
  height: 200px;
  background: rgba(112, 24, 31, 0.02);
  top: 0;
  left: 0;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .hit-introduction-section {
    padding: 60px 0;
  }

  .hit-section-header {
    margin-bottom: 50px;
  }

  .hit-content-card {
    padding: 35px 30px;
    margin-bottom: 30px;
  }

  .hit-feature-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .hit-introduction-section {
    padding: 50px 0;
  }

  .hit-section-header h2 {
    font-size: 2.2rem;
  }

  .hit-content-card {
    padding: 30px 25px;
  }

  .hit-feature-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
  }

  .hit-feature-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .hit-stat-card {
    padding: 40px 30px;
    margin-bottom: 25px;
  }

  .hit-stat-icon {
    width: 75px;
    height: 75px;
  }

  .hit-stat-icon svg {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 575px) {
  .hit-mt-100 {
    margin-top: 50px;
  }

  .hit-content-card {
    padding: 25px 20px;
  }

  .hit-feature-card {
    padding: 25px 20px;
  }

  .hit-stat-card {
    padding: 35px 25px;
  }
}