@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,700;1,700&display=swap");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif !important;
  font-optical-sizing: auto;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
div {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
/* General Styles */
.mh-100 {
  min-height: 100vh;
}
/* Desktop Tabs Styles (768px and above) */
@media (min-width: 768px) {
  .responsive-tabs-wrapper {
    display: flex;
    flex-direction: column;
  }

  .nav-item-wrapper {
    display: contents;
  }

  .responsive-tabs-wrapper .nav-link {
    background-color: #d1d5db;
    border: none;
    border-radius: 12px 12px 0 0;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
    position: relative;
    z-index: 1;
  }

  .responsive-tabs-wrapper .nav-link:hover {
    background-color: #fbbf24;
  }

  .responsive-tabs-wrapper .nav-link.active {
    background-color: #fbbf24;
    color: #000;
  }

  /* Tab header row */
  .responsive-tabs-wrapper::before {
    content: "";
    display: flex;
    gap: 10px;
    order: -1;
  }

  /* Position all nav-links in a row */
  .responsive-tabs-wrapper {
    display: grid;
    grid-template-columns: repeat(4, auto) 1fr;
    grid-template-rows: auto auto;
    gap: 0;
  }

  .nav-item-wrapper:nth-child(1) .nav-link,
  .nav-item-wrapper:nth-child(2) .nav-link,
  .nav-item-wrapper:nth-child(3) .nav-link,
  .nav-item-wrapper:nth-child(4) .nav-link {
    grid-row: 1;
    margin-bottom: 0;
  }

  .nav-item-wrapper:nth-child(1) .nav-link {
    grid-column: 1;
  }
  .nav-item-wrapper:nth-child(2) .nav-link {
    grid-column: 2;
    margin-left: 10px;
  }
  .nav-item-wrapper:nth-child(3) .nav-link {
    grid-column: 3;
    margin-left: 10px;
  }
  .nav-item-wrapper:nth-child(4) .nav-link {
    grid-column: 4;
    margin-left: 10px;
  }

  /* Content area */
  .tab-pane {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0 12px 12px 12px;
    padding: 30px;
    margin-top: 0;
  }

  .tab-pane.active {
    display: block;
  }

  .tab-content-text {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
  }
}

/* Mobile Accordion Styles (below 768px) */
@media (max-width: 767px) {
  .responsive-tabs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .nav-item-wrapper {
    border: 1px solid #d1d5db;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
  }

  .nav-link {
    width: 100%;
    background-color: #fff;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    padding: 18px 20px;
    border: none;
    cursor: pointer;
    text-align: left;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-link::after {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z'/%3e%3c/svg%3e");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .nav-link.active::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1 8a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H2a1 1 0 0 1-1-1z'/%3e%3c/svg%3e");
  }

  .tab-pane {
    display: none;
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background-color: #fff;
  }

  .tab-pane.active {
    display: block;
  }

  .tab-content-text {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
  }
}
.accordion .accordion-header {
  padding: 0 !important;
}
.accordion-button::after {
  right: 30px !important;
}

.program-overview-lp-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.program-overview-lp-title {
  font-size: 56px
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
}

.program-overview-lp-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}

.program-overview-lp-left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.program-overview-lp-students-image {
  max-width: 100%;
  height: auto;

  position: relative;
  z-index: 2;
}

.program-overview-lp-fee-box {
  background: linear-gradient(135deg, #fff9e6 0%, #ffe6e6 100%);
  border: 2px dashed #f0d9a8;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  width: 100%;
  max-width: 480px;
}

.program-overview-lp-fee-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.program-overview-lp-fee-amount {
  font-size: 4rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 10px;
}

.program-overview-lp-fee-description {
  font-size: 1.1rem;
  color: #666;
}

.program-overview-lp-scholarship-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.program-overview-lp-scholarship-subtitle {
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
  margin-bottom: 30px;
}

.program-overview-lp-table {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.program-overview-lp-table-header {
  background: linear-gradient(135deg, #ffd966 0%, #f4c542 100%);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.program-overview-lp-header-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-overview-lp-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid #f0f0f0;
}

.program-overview-lp-table-row:last-child {
  border-bottom: none;
}

.program-overview-lp-scholarship-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
}

.program-overview-lp-fee-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
}

@media (max-width: 991px) {
  .program-overview-lp-title {
    font-size: 38px
  }

  .program-overview-lp-fee-amount {
    font-size: 3rem;
  }

  .program-overview-lp-scholarship-title {
    font-size: 2rem;
    margin-top: 40px;
  }

  .program-overview-lp-left-content {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .program-overview-lp-title {
    font-size: 28px;
  }

  .program-overview-lp-fee-amount {
    font-size: 2.5rem;
  }

  .program-overview-lp-scholarship-title {
    font-size: 1.5rem;
  }

  .program-overview-lp-table-header,
  .program-overview-lp-table-row {
    padding: 15px 20px;
  }

  .program-overview-lp-header-text,
  .program-overview-lp-scholarship-name,
  .program-overview-lp-fee-value {
    font-size: 0.95rem;
  }
}

/* Program Details Section */
.program-details-section {
  position: relative;
  width: 100%;
  background: #fdfbf7;
  padding: 80px 0;
}

/* Container */
.program-details-section .container {
  max-width: 1200px;
}

/* Section Title */
.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a2b4a;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}

/* Accordion */
.program-accordion {
  --bs-accordion-border-color: transparent;
  --bs-accordion-border-radius: 0;
}

.accordion-item {
  background: #fff;
  border: 1px solid #e8e8e8 !important;
  border-radius: 8px !important;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

/* Accordion Header */
.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  background: #fff;
  padding: 20px 25px;
  border: none;
  box-shadow: none !important;
  position: relative;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  color: #000;
}

.accordion-button::after {
  content: "+";
  background-image: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 400;
  color: #000;
  flex-shrink: 0;
}

.accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

/* Accordion Body */
.accordion-body {
  padding: 25px;
  background: #fff;
}

.accordion-body p {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

.accordion-body ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.accordion-body ul li {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 10px;
}

.accordion-body ul li:last-child {
  margin-bottom: 0;
}

/* Schedule Header */
.schedule-header {
  background: linear-gradient(135deg, #f4d675 0%, #f0c86e 100%);
  font-size: 14px;
  font-weight: 700;
  color: #000;
  text-align: center;
  padding: 12px 20px;
  letter-spacing: 1px;
  margin-bottom: 0;
  border-radius: 8px 8px 0 0;
}

/* Schedule Table */
.schedule-table {
  background: #fff;
}

.schedule-row {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
  padding: 18px 20px;
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-label {
  flex: 0 0 45%;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  padding-right: 20px;
}

.schedule-value {
  flex: 1;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
}

/* Schedule Note */
.schedule-note {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
  margin-bottom: 25px;
}

/* Current Schedule Title */
.current-schedule-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  margin-top: 30px;
}

/* Rounds Table */
.rounds-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  font-size: 14px;
}

.rounds-table thead {
  background: linear-gradient(135deg, #f4d675 0%, #f0c86e 100%);
}

.rounds-table thead th {
  padding: 15px 12px;
  text-align: left;
  font-weight: 700;
  color: #000;
  border: 1px solid #e8d98a;
  font-size: 13px;
  line-height: 1.4;
}

.rounds-table tbody td {
  padding: 15px 12px;
  border: 1px solid #f0f0f0;
  color: #333;
  line-height: 1.6;
}

.rounds-table tbody tr:nth-child(even) {
  background: #fafafa;
}

/* Notes Section */
.notes-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.notes-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.note-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.note-item:last-child {
  margin-bottom: 0;
}

.note-icon {
  flex-shrink: 0;
  font-size: 10px;
  color: #f4d675;
  margin-top: 5px;
}

.note-text {
  flex: 1;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}

.sub-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  margin-left: 10px;
}

.sub-icon {
  flex-shrink: 0;
  font-size: 8px;
  color: #999;
  margin-top: 6px;
}

.link-text {
  color: #0066cc;
  text-decoration: underline;
}

.link-text:hover {
  color: #0052a3;
}

.important-note .note-text {
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .section-title {
    font-size: 44px;
  }

  .schedule-label {
    flex: 0 0 42%;
  }
}

@media (max-width: 992px) {
  .program-details-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 38px;
    margin-bottom: 40px;
  }

  .accordion-button {
    font-size: 15px;
    padding: 18px 20px;
  }

  .schedule-row {
    flex-direction: column;
    padding: 15px 18px;
  }

  .schedule-label {
    flex: none;
    margin-bottom: 8px;
    padding-right: 0;
  }

  .schedule-value {
    flex: none;
  }
}

@media (max-width: 768px) {
  .program-details-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 35px;
  }

  .accordion-item {
    border-radius: 6px !important;
    margin-bottom: 12px;
  }

  .accordion-button {
    font-size: 14px;
    padding: 16px 18px;
  }

  .accordion-body {
    padding: 20px;
  }

  .accordion-body p,
  .accordion-body ul li {
    font-size: 14px;
  }

  .schedule-header {
    font-size: 13px;
    padding: 10px 15px;
  }

  .schedule-row {
    padding: 12px 15px;
  }

  .schedule-label,
  .schedule-value {
    font-size: 14px;
  }

  .current-schedule-title {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  /* Make table responsive */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .rounds-table {
    font-size: 13px;
    min-width: 700px;
  }

  .rounds-table thead th {
    padding: 12px 10px;
    font-size: 12px;
  }

  .rounds-table tbody td {
    padding: 12px 10px;
  }

  .notes-title {
    font-size: 16px;
  }

  .note-text {
    font-size: 13px;
  }
  .note-text br, .step-content br {
    display: inline-block !important;
  }
}

@media (max-width: 576px) {
  .program-details-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .accordion-item {
    border-radius: 5px !important;
    margin-bottom: 10px;
  }

  .accordion-button {
    font-size: 13px;
    padding: 14px 16px;
  }

  .accordion-button::after {
    width: 20px;
    height: 20px;
    font-size: 20px;
  }

  .accordion-body {
    padding: 18px;
  }

  .accordion-body p,
  .accordion-body ul li {
    font-size: 13px;
  }

  .schedule-header {
    font-size: 12px;
    padding: 10px 12px;
  }

  .schedule-row {
    padding: 10px 12px;
  }

  .schedule-label,
  .schedule-value {
    font-size: 13px;
  }

  .schedule-note {
    font-size: 12px;
  }

  .current-schedule-title {
    font-size: 16px;
    margin-top: 20px;
  }

  .rounds-table {
    font-size: 12px;
  }

  .rounds-table thead th,
  .rounds-table tbody td {
    padding: 10px 8px;
  }

  .notes-title {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .note-item {
    gap: 10px;
    margin-bottom: 15px;
  }

  .note-text {
    font-size: 12px;
  }

  .sub-note {
    margin-top: 8px;
    margin-left: 8px;
  }
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  animation: fadeInUp 0.8s ease-out;
}

.program-accordion {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* How to Apply Section */
.how-to-apply-section {
  position: relative;
  width: 100%;

  background: linear-gradient(
    135deg,
    #6dd5c3 0%,
    #a8d98f 30%,
    #f4e86d 70%,
    #fbb040 100%
  );
  padding: 100px 0;
}

/* Container */
.how-to-apply-section .container {
  max-width: 1400px;
}

/* Section Title */
.how-to-apply-section .section-title {
  font-size: 56px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
  letter-spacing: -1px;
}

/* Step Tabs */
.step-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.step-tab {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 15px 50px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.step-tab:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.step-tab.active {
  background: #000;
  color: #fff;
}

/* Steps Slider */
.steps-slider {
  position: relative;
}

/* Step Slide */
.step-slide {
  outline: none;
}

/* Step Content */
.step-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Step Heading */
.step-heading {
  font-size: 35px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* Step List */
.step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
}

.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 17px;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
}

.step-list li:last-child {
  margin-bottom: 0;
}

/* Checkmark Icon */
.checkmark-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Apply Button */
.apply-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffd97d 0%, #ffc857 100%);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 50px;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 200, 87, 0.3);
}

.apply-btn:hover {
  background: linear-gradient(135deg, #ffc857 0%, #ffb627 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 200, 87, 0.4);
  color: #000;
}

/* Slick Dots Styling */
.steps-slider .slick-dots {
  bottom: -60px;
  display: flex !important;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.steps-slider .slick-dots li {
  width: 14px;
  height: 14px;
  margin: 0;
}

.steps-slider .slick-dots li button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
}

.steps-slider .slick-dots li button:before {
  display: none;
}

.steps-slider .slick-dots li button:hover {
  background: rgba(255, 255, 255, 0.5);
}

.steps-slider .slick-dots li.slick-active button {
  background: #fff;
  border-color: #9b6fff;
  box-shadow: 0 0 0 3px #9b6fff;
}

/* Hide Slick Arrows */
.steps-slider .slick-prev,
.steps-slider .slick-next {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 1400px) {
 .how-to-apply-section .section-title {
    font-size: 50px;
    margin-bottom: 50px;
  }

  .step-heading {
    font-size: 38px;
  }

  .step-list li {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
.how-to-apply-section .section-title {
    font-size: 46px;
  }

  .step-heading {
    font-size: 34px;
    margin-bottom: 35px;
  }

  .step-list li {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .step-tab {
    padding: 14px 45px;
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .how-to-apply-section {
    padding: 80px 0;
  }

 .how-to-apply-section .section-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .step-tabs {
    gap: 15px;
    margin-bottom: 50px;
  }

  .step-tab {
    padding: 12px 40px;
    font-size: 12px;
  }

  .step-heading {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .step-list li {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .how-to-apply-section {
    padding: 60px 0;
  }

 .how-to-apply-section .section-title {
    font-size: 34px;
    margin-bottom: 35px;
  }

  /* Hide step tabs on mobile */
  .step-tabs {
    display: none;
  }

  .step-heading {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .step-list {
    margin-bottom: 40px;
  }

  .step-list li {
    font-size: 14px;
    gap: 12px;
    margin-bottom: 18px;
  }

  .checkmark-icon {
    width: 22px;
    height: 22px;
  }

  .apply-btn {
    padding: 14px 40px;
    font-size: 14px;
  }

  .steps-slider .slick-dots {
    bottom: -50px;
    gap: 10px;
  }

  .steps-slider .slick-dots li {
    width: 12px;
    height: 12px;
  }

  .steps-slider .slick-dots li button {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 576px) {
  .how-to-apply-section {
    padding: 50px 0;
  }

.how-to-apply-section .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .step-content {
    padding: 0 15px;
  }

  .step-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .step-list {
    margin-bottom: 35px;
  }

  .step-list li {
    font-size: 13px;
    gap: 10px;
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .checkmark-icon {
    width: 20px;
    height: 20px;
  }

  .apply-btn {
    padding: 12px 35px;
    font-size: 13px;
    border-radius: 8px;
  }

  .steps-slider .slick-dots {
    bottom: -45px;
    gap: 8px;
  }

  .steps-slider .slick-dots li {
    width: 10px;
    height: 10px;
  }

  .steps-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    border-width: 1.5px;
  }

  .steps-slider .slick-dots li.slick-active button {
    box-shadow: 0 0 0 2px #9b6fff;
  }
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  animation: fadeInUp 0.8s ease-out;
}

.step-tabs {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.step-content {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}
.video-wrapper-you {
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px; /* Optional: Rounded corners */
}

.video-wrapper-you img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  display: block;
}

.play-icon-you {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-icon-you i {
  color: #fff;
  font-size: 28px;
  margin-left: 4px; /* Optical center adjustment */
}

/* Hover Effects */
.video-wrapper-you:hover .play-icon-you {
  background: #ff0000; /* YouTube Red */
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.video-wrapper-you:hover img {
  transform: scale(1.05); /* Subtle zoom on image */
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8ddd0 50%, #d4c4b0 100%);
  background-image: url("../images/top-bg.webp");
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-section .container {
  max-width: 1440px;
  padding: 0 40px;
}

/* Background AI Image Effect */
.hero-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  background: url("ai-robot.png") no-repeat center right;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

/* Top Banner */
.top-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #ffbe48 0%, #ffbe48 100%);
  color: #000;
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  z-index: 10;
}

/* Container */
.hero-section .container-fluid {
  padding-top: 50px;
  height: 100vh;
  position: relative;
  z-index: 5;
}

/* Content Column */
.content-column {
  padding-left: 80px;
  padding-top: 60px;
}

/* Logo Container */
.logo-container {
  margin-bottom: 40px;
}

.lpu-logo {
  max-width: 220px;
  height: auto;
}

/* Trust Badge */
.trust-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fdd7a1 0%, #f8c291 100%);
  color: #d35400;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.2);
}

/* Main Heading */
.main-heading {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

/* Subheading */
.subheading {
  font-size: 20px;
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 40px;
  margin-top: 10px;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-apply {
  background: #ffbe48;
  color: #000;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-apply:hover {
  background: #ffbe48;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
  color: #000;
}

.btn-download {
  background: #000;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-download:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .main-heading {
    font-size: 55px;
  }

  .content-column {
    padding-left: 60px;
  }
}

@media (max-width: 1200px) {
  .main-heading {
    font-size: 55px;
  }

  .hero-section::after {
    width: 45%;
  }
}

@media (max-width: 992px) {
  .content-column {
    padding-left: 40px;
    padding-right: 40px;
  }
  .mh-100 {
    min-height: auto;
  }

  .hero-section {
    position: relative;
    min-height: auto;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8ddd0 50%, #d4c4b0 100%);
    background-image: url("../images/top-bg-1.png");
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 50px 0;
  }

  .main-heading {
    font-size: 55px;
  }

  .hero-section::after {
    width: 40%;
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .top-banner {
    font-size: 12px;
    padding: 10px 15px;
  }

  .content-column {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
  }

  .main-heading {
    font-size: 45px;
  }

  .subheading {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-section::after {
    width: 100%;
    opacity: 0.3;
    right: -20%;
  }
}

@media (max-width: 576px) {
  .main-heading {
    font-size: 35px;
  }

  .lpu-logo {
    max-width: 210px;
  }
  .hero-section .container {
    padding: 20px;
    height: auto;
  }

  .trust-badge {
    font-size: 11px;
    padding: 8px 16px;
  }
}

/* Stats Section */
.stats-section {
  position: relative;
  height: 100%;
  background: linear-gradient(
    135deg,
    #6dd5c3 0%,
    #a8d98f 30%,
    #f4e86d 70%,
    #fbb040 100%
  );
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.stats-section .container-fluid {
  max-width: 1400px;
  padding: 0 40px;
}

/* Image Container */
.image-container {
  padding: 0 20px;
}

.meeting-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  display: block;
  object-fit: cover;
  max-height: 500px;
}

/* Stats Card */
.stats-section .stats-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 40px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Main Stat */
.main-stat {
  margin-bottom: 20px;
      display: flex;
    justify-content: flex-start;
    align-items: center;
}

.stat-number {
  font-size: 90px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: -2px;
}

.stat-description {
 font-size: 30px;
    font-weight: 500;
    color: #000;
    line-height: 1;
    margin: 0;
    padding-left: 20px;
}

/* Sub Stats */
.sub-stats {
  margin-top: 40px;
}

.stat-item {
  padding: 20px 0;
}

.stat-value {
  font-size: 72px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .stat-number {
    font-size: 75px;
  }

  .stat-value {
    font-size: 60px;
  }

  .stats-card {
    padding: 50px 40px;
  }
}

@media (max-width: 1200px) {
  .stat-number {
    font-size: 65px;
  }

  .stat-value {
    font-size: 52px;
  }

  .stat-description {
    font-size: 18px;
  }

  .stat-label {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .stats-section {
    padding: 60px 0;
  }

  .stats-card {
    margin-left: 0;

    padding: 40px 35px;
  }

  .meeting-image {
    max-height: 400px;
  }

  .main-stat {
    margin-bottom: 40px;
  }

  .stat-number {
    font-size: 55px;
  }

  .stat-value {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 40px 0;
  }

  .stats-section .container-fluid {
    padding: 0 20px;
  }

  .image-container {
    padding: 0 10px;
  }

  .meeting-image {
    border-radius: 20px;
    max-height: 300px;
  }

  .stats-card {
    border-radius: 30px;
    padding: 40px 30px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-description {
    font-size: 18px;
  }

  .stat-value {
    font-size: 42px;
  }

  .stat-label {
    font-size: 14px;
  }

  .main-stat {
    margin-bottom: 35px;
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding: 30px 0;
    min-height: auto;
  }
  .stats-section .stats-card {
    margin-top: 20px;
  }

  .stats-card {
    padding: 35px 25px;
    border-radius: 25px;
  }

  .stat-number {
    font-size: 42px;
  }

  .stat-description {
    font-size: 18px;
  }

  .stat-value {
    font-size: 38px;
  }

  .stat-label {
    font-size: 13px;
  }

  .meeting-image {
    border-radius: 15px;
    max-height: 250px;
  }

  .sub-stats .col-md-6 {
    margin-bottom: 20px;
  }

  .sub-stats .col-md-6:last-child {
    margin-bottom: 0;
  }
}

/* Animation on Scroll (Optional Enhancement) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stats-card {
  animation: fadeInUp 0.6s ease-out;
}

.image-container {
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

/* Philosophy Section */
.philosophy-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  overflow: hidden;
}

.philosophy-section::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 300px;
  width: 800px;
  height: 460px;
  background-image: url(../images/core-principles-bg.png);
}

/* Alternative: Solid beige background if no image */
.philosophy-section {
  background: #ffffff;
}

.philosophy-section .container {
  max-width: 1400px;
}
.philosophy-section .section-title {
  text-align: start;
  margin-bottom: 10px;
}
.philosophy-section .section-subtitle {
  text-align: start;
}
/* Section Header */
.section-header {
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  margin: 0;
}

/* Custom Arrows Container */
.custom-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.slick-prev-custom,
.slick-next-custom {
  width: 50px;
  height: 50px;
  background: #e5e5e5;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #000;
}

.slick-next-custom {
  background: #000;
  color: #fff;
}

.slick-prev-custom:hover {
  background: #e5e5e5;
  transform: translateX(-2px);
}

.slick-next-custom:hover {
  background: #333;
  transform: translateX(2px);
}

.slick-prev-custom svg,
.slick-next-custom svg {
  width: 24px;
  height: 24px;
}

/* Philosophy Slider */
.philosophy-slider {
  margin-top: 40px;
}

/* Slider Item */
.slider-item {
  padding: 0 15px;
  outline: none;
}

/* Philosophy Card */
.philosophy-card {
  border-radius: 30px;
  padding: 50px 40px !important;
  height: 550px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-5px);
}

/* Card Icon */
.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  color: #000;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

/* Card Title */
.card-title {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Card Description */
.card-description {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Hide default Slick arrows */
.philosophy-slider .slick-prev,
.philosophy-slider .slick-next {
  display: none !important;
}

/* Slick Dots (Optional) */
.philosophy-slider .slick-dots {
  bottom: -50px;
}

.philosophy-slider .slick-dots li button:before {
  font-size: 12px;
  color: #000;
  opacity: 0.3;
}

.philosophy-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #000;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .section-title {
    font-size: 46px;
  }

  .philosophy-card {
    height: 480px;
    padding: 45px 35px;
  }

  .card-title {
    font-size: 24px;
  }
}

@media (max-width: 1200px) {
  .section-title {
    font-size: 42px;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .philosophy-card {
    height: 500px;
    padding: 40px 30px;
  }

  .card-title {
    font-size: 22px;
  }

  .card-description {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .philosophy-section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .philosophy-section .section-title {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .custom-arrows {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .philosophy-card {
    height: auto;
    min-height: 460px;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .philosophy-section {
    padding: 60px 0;
  }
    .philosophy-section .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .slick-prev-custom,
  .slick-next-custom {
    width: 45px;
    height: 45px;
  }

  .philosophy-card {
    border-radius: 25px;
    padding: 35px 25px;
    min-height: 460px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
  }

  .card-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .card-description {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .philosophy-section {
    padding: 50px 0;
  }
    .philosophy-section .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .slider-item {
    padding: 0 10px;
  }

  .philosophy-card {
    border-radius: 20px;
    padding: 30px 20px;
    min-height: 380px;
  }

  .card-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 13px;
    line-height: 1.5;
  }

  .slick-prev-custom,
  .slick-next-custom {
    width: 40px;
    height: 40px;
  }

  .slick-prev-custom svg,
  .slick-next-custom svg {
    width: 20px;
    height: 20px;
  }
}

/* Animation for Cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.philosophy-card {
  animation: fadeInUp 0.6s ease-out;
}
/* Reset and Base Styles */

/* Progression Section */
.progression-section {
  width: 100%;
  background: linear-gradient(
    135deg,
    #6dd5c3 0%,
    #a8d98f 30%,
    #f4e86d 70%,
    #fbb040 100%
  );
  padding: 80px 0 80px;
  overflow: hidden;
}

/* Section Main Title */
.section-main-title {
  font-size: 56px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: -1px;
}

/* Progression Container */
.progression-container {
  max-width: 1600px;
  padding: 0 40px;
}

/* Image Column */
.image-column {
  position: relative;
}

.sticky-image-wrapper {
  position: sticky;
  top: 100px;
  height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vr-image {
  max-width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  border-radius: 20px;
}

/* Cards Column */
.cards-column {
  position: relative;
  padding-left: 40px;
}

/* Navigation Dots */
.progression-dots {
  position: fixed;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
}

.dot-nav {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot-nav:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.dot-nav.active {
  background: #ff6b6b;
  border-color: #ff6b6b;
  width: 16px;
  height: 16px;
}

/* Sticky Cards Wrapper */
.sticky-cards-wrapper {
  position: relative;
  min-height: 400vh; /* Creates scroll space for 4 cards */
}

/* Progression Card */
.progression-card {
  position: sticky;
  top: 100px;
  margin-bottom: 40px;
  width: 100%;
}

/* Each card stacks with slight offset */
.progression-card:nth-child(1) {
  top: 100px;
  z-index: 4;
}

.progression-card:nth-child(2) {
  top: 120px;
  z-index: 3;
}

.progression-card:nth-child(3) {
  top: 140px;
  z-index: 2;
}

.progression-card:nth-child(4) {
  top: 160px;
  z-index: 1;
}

/* Card Inner */
.card-inner {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 30px;
  padding: 45px 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.progression-card:hover .card-inner {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

/* Year Badge */
.year-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* Card Title */
.card-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

/* Card Location */
.card-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 30px;
}

.card-location svg {
  flex-shrink: 0;
}

/* Card Divider */
.card-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

/* Card Section */
.card-section {
  margin-bottom: 30px;
}

.card-section:last-child {
  margin-bottom: 0;
}

/* Section Heading */
.section-heading {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Section Text */
.section-text {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* Skills Tags */
.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  transition: all 0.2s ease;
}

.skill-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.skill-tag.orange {
  background: rgba(255, 152, 0, 0.2);
  color: #e65100;
}

.skill-tag.purple {
  background: rgba(156, 39, 176, 0.2);
  color: #6a1b9a;
}

.skill-tag.blue {
  background: rgba(33, 150, 243, 0.2);
  color: #1565c0;
}

.skill-tag.teal {
  background: rgba(0, 150, 136, 0.2);
  color: #00695c;
}

.skill-tag.red {
  background: rgba(244, 67, 54, 0.2);
  color: #c62828;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .section-main-title {
    font-size: 48px;
    margin-bottom: 60px;
  }

  .card-title {
    font-size: 32px;
  }

  .progression-dots {
    right: 30px;
  }
}

@media (max-width: 1200px) {
  .section-main-title {
    font-size: 42px;
  }

  .card-title {
    font-size: 28px;
  }

  .card-inner {
    padding: 40px 35px;
  }

  .cards-column {
    padding-left: 30px;
  }
}

@media (max-width: 992px) {
  .progression-section {
    padding: 80px 0 100px;
  }

  .section-main-title {
    font-size: 38px;
    margin-bottom: 50px;
  }

  .progression-container {
    padding: 0 20px;
  }

  /* Stack layout on tablet */
  .image-column {
    margin-bottom: 50px;
  }

  .sticky-image-wrapper {
    position: relative;
    top: 0;
    height: auto;
    margin-bottom: 40px;
  }

  .vr-image {
    max-height: 500px;
  }

  .cards-column {
    padding-left: 0;
  }

  .progression-card {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 30px;
  }

  .sticky-cards-wrapper {
    min-height: auto;
  }

  .progression-dots {
    position: absolute;
    right: 20px;
    top: 20px;
    transform: none;
    flex-direction: row;
  }

  .dot-nav {
    width: 12px;
    height: 12px;
  }

  .dot-nav.active {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 768px) {
  .progression-section {
    padding: 60px 0 80px;
  }

  .section-main-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .card-inner {
    padding: 35px 25px;
    border-radius: 25px;
  }

  .card-title {
    font-size: 24px;
  }

  .card-location {
    font-size: 14px;
  }

  .section-heading {
    font-size: 12px;
  }

  .section-text {
    font-size: 14px;
  }

  .skill-tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .vr-image {
    max-height: 400px;
  }
}

@media (max-width: 576px) {
  .progression-section {
    padding: 50px 0 60px;
  }

  .section-main-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .card-inner {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .card-title {
    font-size: 22px;
  }

  .year-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .card-divider {
    margin: 20px 0;
  }

  .card-section {
    margin-bottom: 25px;
  }

  .skills-tags {
    gap: 8px;
  }

  .skill-tag {
    font-size: 11px;
    padding: 5px 10px;
  }

  .vr-image {
    max-height: 300px;
    border-radius: 15px;
  }

  .progression-dots {
    gap: 10px;
  }

  .dot-nav {
    width: 10px;
    height: 10px;
  }

  .dot-nav.active {
    width: 12px;
    height: 12px;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.progression-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Tech Hub Section */
.tech-hub-section {
  position: relative;
  width: 100%;
  background: #000;
  background-image: url("../images/ai-bg.webp");

  background-position: bottom right;
  background-repeat: no-repeat;
  padding: 80px 0;
  overflow: hidden;
}

/* Background Overlay for better text readability */

/* Bottom Right Line Element */
.bottom-line-element {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #00bcd4 50%,
    #00bcd4 100%
  );
  z-index: 2;
}

.bottom-line-element::before {
  content: "";
  position: absolute;
  right: 0;
  top: -100px;
  width: 3px;
  height: 100px;
  background: linear-gradient(to bottom, transparent 0%, #00bcd4 100%);
}

/* Container */
.tech-hub-section .container {
  position: relative;
  z-index: 3;
}

/* Content Wrapper */
.content-wrapper {
  padding-left: 40px;
}

/* Main Title */
.main-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: -1px;
  text-align: center;
}

/* Main Description */
.main-description {
  font-size: 18px;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* Why Tech Hub Card */
.why-tech-hub-card {
  background: rgba(30, 30, 30, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 45px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Title */
.tech-hub-section .card-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.6;
}

.benefits-list li:last-child {
  margin-bottom: 0;
}

/* Bullet Icon */
.bullet-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.bullet-icon svg {
  width: 100%;
  height: 100%;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .main-title {
    font-size: 48px;
  }

  .main-description {
    font-size: 17px;
  }

  .card-title {
    font-size: 28px;
  }
}

@media (max-width: 1200px) {
  .tech-hub-section {
    padding: 100px 0;
    background-position: right center;
  }

  .main-title {
    font-size: 42px;
  }

  .main-description {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .card-title {
    font-size: 26px;
  }

  .why-tech-hub-card {
    padding: 40px 35px;
  }

  .content-wrapper {
    padding-left: 20px;
  }
}

@media (max-width: 992px) {
  .tech-hub-section {
    padding: 80px 0;
    background-position: center;
  }

  /* Full width on tablet */
  .tech-hub-section .col-lg-7 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .content-wrapper {
    padding-left: 0;
  }

  .main-title {
    font-size: 38px;
  }

  .main-description {
    font-size: 16px;
  }

  .card-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .why-tech-hub-card {
    padding: 35px 30px;
  }

  .benefits-list li {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .bottom-line-element {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .tech-hub-section {
    padding: 60px 0;
    background-position: 70% center;
  }
  .tech-hub-section .card-title {
  font-size: 28px;

}


  .background-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.85) 100%
    );
  }

  .main-title {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .main-description {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .card-title {
    font-size: 22px;
  }

  .why-tech-hub-card {
    padding: 30px 25px;
    border-radius: 15px;
  }

  .benefits-list li {
    font-size: 14px;
    gap: 12px;
    margin-bottom: 18px;
  }

  .bullet-icon {
    width: 20px;
    height: 20px;
  }

  .bottom-line-element {
    width: 60%;
    height: 2px;
  }

  .bottom-line-element::before {
    width: 2px;
    height: 80px;
    top: -80px;
  }
}

@media (max-width: 576px) {
  .tech-hub-section {
    padding: 50px 0;
  }

  .main-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .main-description {
    font-size: 14px;
    margin-bottom: 35px;
    line-height: 1.6;
  }

  .card-title {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .why-tech-hub-card {
    padding: 25px 20px;
  }

  .benefits-list li {
    font-size: 13px;
    gap: 10px;
    margin-bottom: 15px;
  }

  .bullet-icon {
    width: 18px;
    height: 18px;
  }

  .bottom-line-element {
    width: 70%;
  }
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-title {
  animation: fadeInUp 0.8s ease-out;
}

.main-description {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.why-tech-hub-card {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Hover Effect on Card */
.why-tech-hub-card {
  transition: all 0.3s ease;
}

.why-tech-hub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 188, 212, 0.3);
  border-color: rgba(0, 188, 212, 0.3);
}

/* List Item Hover Effect */
.benefits-list li {
  transition: all 0.2s ease;
  padding-left: 5px;
}

.benefits-list li:hover {
  padding-left: 15px;
  color: #fff;
}

.benefits-list li:hover .bullet-icon svg circle {
  fill: #00bcd4;
}
/* Reset and Base Styles */

/* Curriculum Section */
.curriculum-section {
  padding: 80px 0;
}

/* Background Overlay for better text readability */
.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

/* Container */
.curriculum-section .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  position: relative;
  background: #000;
  background-image: url("../images/robo.png");
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  padding: 50px 0;
  overflow: hidden;
  border-radius: 60px;
  margin: 0 auto;
}

/* Section Header */
.curriculum-section .section-header {
  text-align: center;
  margin-bottom: 20px;
}

.curriculum-section .section-title {
  font-size: 58px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.curriculum-section .section-description {
  font-size: 18px;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 25px;
}

/* Curriculum Content */
.curriculum-content {
  width: 100%;
}

/* Domain Block */
.curriculum-section .domain-block {
  margin-bottom: 0px;
  background: rgba(000, 000, 000, 0.8);
}

.domain-block:last-child {
  margin-bottom: 0;
}

/* Domain Header */
.domain-header {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

/* Domain Icon */
.domain-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(255, 167, 38, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffa726;
  border: 2px solid rgba(255, 167, 38, 0.3);
}

.domain-icon svg {
  width: 32px;
  height: 32px;
}

/* Domain Title Wrapper */
.domain-title-wrapper {
  flex: 1;
}

.domain-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffa726;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.domain-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

/* Domain List */
.domain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 80px;
}

.domain-list li {
  display: flex;

  gap: 12px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.6;
  align-items: center;
}

.domain-list li:last-child {
  margin-bottom: 0;
}

.domain-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .section-title {
    font-size: 52px;
  }

  .section-description {
    font-size: 17px;
  }

  .domain-title {
    font-size: 26px;
  }
}

@media (max-width: 1200px) {
  .curriculum-section {
    background-size: 45%;
    background-position: bottom right -50px;
    border-radius: 50px;
  }

  .section-header {
    margin-bottom: 60px;
  }


.curriculum-section .section-title {
    font-size: 46px;
  }

  .section-description {
    font-size: 16px;
  }

  .domain-title {
    font-size: 24px;
  }

  .domain-list {
    padding-left: 70px;
  }
}

@media (max-width: 992px) {
  .curriculum-section {
    padding: 80px 0;
    background-size: 50%;
    background-position: bottom center;
    border-radius: 40px;
    margin: 0 15px;
  }
  .curriculum-section .container{border-radius: 30px;}

  .background-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.9) 60%,
      rgba(0, 0, 0, 0.7) 100%
    );
  }

  .section-header {
    margin-bottom: 50px;
  }

.curriculum-section .section-title {
    font-size: 40px;
  }

  .section-description {
    font-size: 16px;
  }

  .domain-block {
    margin-bottom: 50px;
  }

  .domain-header {
    gap: 15px;
  }

  .domain-icon {
    width: 50px;
    height: 50px;
  }

  .domain-icon svg {
    width: 28px;
    height: 28px;
  }

  .domain-title {
    font-size: 22px;
  }

  .domain-subtitle {
    font-size: 15px;
  }

  .domain-list {
    padding-left: 65px;
  }

  .domain-list li {
    font-size: 15px;
    margin-bottom: 14px;
  }
}

@media (max-width: 768px) {
  .curriculum-section {
    padding: 60px 0;
    background-size: 60%;
    background-position: bottom center;
    border-radius: 30px;
    margin: 0 10px;
  }

  .background-overlay {
    background: rgba(0, 0, 0, 0.92);
  }

  .section-header {
    margin-bottom: 40px;
  }

.curriculum-section .section-title {
    font-size: 34px;
  }

  .section-description {
    font-size: 15px;
  }

  .domain-block {
    margin-bottom: 40px;
  }

  .domain-header {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
  }

  .domain-icon {
    width: 55px;
    height: 55px;
  }

  .domain-title {
    font-size: 20px;
  }

  .domain-subtitle {
    font-size: 14px;
  }

  .domain-list {
    padding-left: 0;
  }

  .domain-list li {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .domain-list li svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 576px) {
  .curriculum-section {
    padding: 50px 0;
    background-size: 70%;
    border-radius: 25px;
    margin: 0 5px;
  }

.curriculum-section .section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .section-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .domain-block {
    margin-bottom: 35px;
  }

  .domain-icon {
    width: 50px;
    height: 50px;
  }

  .domain-icon svg {
    width: 24px;
    height: 24px;
  }

  .domain-title {
    font-size: 18px;
  }

  .domain-subtitle {
    font-size: 13px;
  }

  .domain-list li {
    font-size: 13px;
    gap: 10px;
    margin-bottom: 10px;
  }

  .domain-list li svg {
    width: 16px;
    height: 16px;
  }
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header {
  animation: fadeInUp 0.8s ease-out;
}

.domain-block:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.domain-block:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Hover Effects */
.domain-block {
  transition: all 0.3s ease;
  padding: 30px;
  border-radius: 20px;
}

.domain-block:hover {
  background: rgba(255, 167, 38, 0.05);
  transform: translateX(10px);
}

.domain-icon {
  transition: all 0.3s ease;
}

.domain-block:hover .domain-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 167, 38, 0.25);
  border-color: #ffa726;
}

.domain-list li {
  transition: all 0.2s ease;
}

.domain-list li:hover {
  color: #fff;
  transform: translateX(5px);
}

.domain-list li:hover svg circle {
  fill: #ffa726;
  filter: drop-shadow(0 0 8px rgba(255, 167, 38, 0.6));
}

/* Reset and Base Styles */

/* Industry Section */
.industry-section {
  position: relative;
  background: #fff;
  background-image: url("background-pattern-light.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  overflow: hidden;
}

/* Add decorative background circles */
.industry-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(173, 216, 230, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.industry-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 235, 153, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

/* Container */
.industry-section .container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
}

/* Section Title */
.industry-section .section-title {
  font-size: 56px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 70px;
  line-height: 1.2;
  letter-spacing: -1px;
}

/* Cards Row */
.cards-row {
  margin-bottom: 40px;
}

/* Info Card */
.industry-section .info-card {
  position: relative;
  border-radius: 30px;
  padding: 35px;
  min-height: 450px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Yellow Card */
.yellow-card {
  background-image: url("../images/bg-gray.webp"),
    linear-gradient(135deg, #ffd97d 0%, #ffc857 100%);
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  min-height: auto;
}

/* Purple Card */
.purple-card {
  background-image: url("../images/bg-gray.webp"),
    linear-gradient(135deg, #9b6fff 0%, #7b4fd9 100%);
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  min-height: auto;
}

.purple-card .card-title,
.purple-card .card-intro,
.purple-card .card-list,
.purple-card .card-list li {
  color: #fff;
}

/* Light Purple Card */
.light-purple-card {
  background-image: url("../images/bg-blue.webp"),
    linear-gradient(135deg, #e6d7ff 0%, #d8c3ff 100%);
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  min-height: auto;
  padding-bottom: 0 !important;
}

/* Card Content */
.card-content {
  flex: 1;
  max-width: 70%;
  padding-right: 10px;
}

.card-content-full {
  flex: 1;
  max-width: 55%;
  padding-right: 0px;
}

/* Card Title */
.card-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* Card Intro */
.card-intro {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Card Description */
.card-description {
  font-size: 17px;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
  margin: 0;
}

/* Card List */
.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

.card-list li:last-child {
  margin-bottom: 0;
}

/* Year Label */
.year-label {
  font-weight: 700;
  color: #000;
  display: inline-block;
  margin-right: 5px;
}

.year-text {
  font-weight: 400;
}

/* Bulleted List */
.bulleted-list li {
  position: relative;
  padding-left: 25px;
}

.bulleted-list li::before {
  content: "•";
  position: absolute;
  left: 5px;
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
}

/* Card Image */
.industry-section .card-image {
  position: relative;
  flex-shrink: 0;
  width: 35% !important;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.card-image-full {
  position: relative;
  flex-shrink: 0;
  width: 45%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.student-img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  position: relative;
  bottom: -45px;
  right: -55px;
}

.books-img {
  max-width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  position: relative;
  bottom: -45px;
  right: -35px;
}

.students-group-img {
  max-width: 100%;
  height: auto;

  object-fit: contain;
  position: relative;
  bottom: -45px;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .section-title {
    font-size: 50px;
    margin-bottom: 60px;
  }

  .card-title {
    font-size: 28px;
  }

  .card-intro,
  .card-list li {
    font-size: 15px;
  }

  .card-description {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .industry-section .section-title {
    font-size: 46px;
  }

  .info-card {
    padding: 40px 35px;
    min-height: 420px;
  }

  .card-content {
    max-width: 58%;
  }

  .card-content-full {
    max-width: 63%;
  }

  .card-image {
    width: 38%;
  }

  .card-image-full {
    width: 37%;
  }
}

@media (max-width: 992px) {
  .industry-section {
    padding: 80px 0;
  }

  .industry-section .section-title {
    font-size: 40px;
    margin-bottom: 50px;
  }

  .industry-section .info-card {
    flex-direction: column;
    padding: 35px 30px;
    min-height: auto;
    min-height: auto;
  }

  .card-content,
  .card-content-full {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .card-image,
  .card-image-full {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
  .year-progression-nav-dots,
  .year-progression-image,
  .student-outcomes-img,
  .books-img,
  .student-img {
    display: none !important;
  }

  .student-img,
  .books-img,
  .students-group-img {
    max-height: 300px;
    bottom: 0;
  }

  .card-title {
    font-size: 26px;
  }

  .card-intro,
  .card-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .industry-section {
    padding: 60px 0;
  }

  .industry-section .section-title {
    font-size: 34px;
    margin-bottom: 40px;
  }

  .info-card {
    border-radius: 25px;
    padding: 30px 25px;
  }

  .card-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .card-intro,
  .card-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .card-list li {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .student-img,
  .books-img,
  .students-group-img {
    max-height: 250px;
  }

  .cards-row {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .industry-section {
    padding: 50px 0;
  }

  .industry-section .section-title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .info-card {
    border-radius: 20px;
    padding: 25px 20px;
  }

  .card-title {
    font-size: 22px;
  }

  .card-intro,
  .card-description {
    font-size: 13px;
    line-height: 1.6;
  }

  .card-list li {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .bulleted-list li {
    padding-left: 20px;
  }

  .bulleted-list li::before {
    font-size: 20px;
    left: 3px;
  }

  .student-img,
  .books-img,
  .students-group-img {
    max-height: 200px;
  }
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  animation: fadeInUp 0.8s ease-out;
}

.info-card:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.info-card:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.light-purple-card {
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* Image Animation */
@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Reset and Base Styles */

/* Freelancing Section */
.freelancing-section {
  position: relative;
  width: 100%;
  background: #f5f5f5;
  padding: 80px 0;
}

/* Container */
.freelancing-section .container {
  max-width: 1400px;
}

/* Section Title */
.freelancing-section .section-title {
  font-size: 56px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 60px;
  letter-spacing: -1px;
  text-align: start;
}

/* Slider Wrapper */
.slider-wrapper {
  position: relative;
  width: 97%;
}

/* Yellow Border Accent (Behind the card) */
.yellow-border-accent {
  position: absolute;
  top: -1px;
  left: 3px;
  right: -1px;
  bottom: -15px;
  background: linear-gradient(135deg, #ffd97d 0%, #ffc857 100%);
  border-radius: 40px;
  z-index: 0;
  height: 100%;
  rotate: 1deg;
}

/* Freelancing Slider */
.freelancing-slider {
  position: relative;
  z-index: 1;
}

/* Slider Item */
.slider-item {
  padding: 0 10px;
  outline: none;
}

/* Freelancing Card */
.freelancing-card {
  background: #000;
  border-radius: 40px;
  padding: 50px 50px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 50px;

  position: relative;
  overflow: hidden;
}

/* Purple Accent Stripes (Background) */

/* Card Content Area */
.card-content-area {
  flex: 1;
  max-width: 60%;
  position: relative;
  z-index: 1;
}

/* Card Title */

.freelancing-section .card-title {
  font-size: 42px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

/* Card Description */
.freelancing-section .card-description {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 30px;
  margin-top: 20px;
}

/* Platforms List */
.platforms-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.platforms-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.platforms-list li:last-child {
  margin-bottom: 0;
}

/* Platform Badge */
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.platform-badge svg {
  flex-shrink: 0;
}

/* Platform Text */
.platform-text {
  font-size: 15px;
  font-weight: 400;
  color: #d0d0d0;
  line-height: 1.6;
  margin-top: 4px;
}

/* Benefits Section */

.benefits-label {
  font-size: 14px;
  font-weight: 700;
  color: #ffa726;
  display: inline-block;
  margin-right: 1px;
}

.benefits-text {
  font-size: 15px;
  font-weight: 400;
  color: #d0d0d0;
  line-height: 1.7;
}

/* Card Image Area */
.card-image-area {
  position: relative;
  width: 35%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}

/* Freelancer Image */
.freelancer-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: contain;
  bottom: -60px;
}

/* Hide Slick Arrows */
.freelancing-slider .slick-prev,
.freelancing-slider .slick-next {
  display: block !important;

}
/* Hide Slick Arrows */

.freelancing-slider .slick-next {
  right:15px;

}

.freelancing-slider .slick-prev {
  left:15px;
  z-index: 1;

}
.slick-next

/* Slick Dots */
.freelancing-slider .slick-dots {
  bottom: -50px;
  display: flex !important;
  justify-content: center;
  gap: 10px;
}

.freelancing-slider .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0;
}

.freelancing-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
}

.freelancing-slider .slick-dots li button:before {
  font-size: 12px;
  width: 12px;
  height: 12px;
  color: #9b6fff;
  opacity: 0.4;
}

.freelancing-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #9b6fff;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .freelancing-section .section-title {
    font-size: 50px;
  }

  .freelancing-card {
    padding: 50px 45px;
    gap: 40px;
  }

  .freelancing-section .card-title {
    font-size: 38px;
  }

  .yellow-circle-bg {
    width: 400px;
    height: 400px;
  }

  .freelancer-img {
    max-height: 500px;
  }
}

@media (max-width: 1200px) {
  .freelancing-section .section-title {
    font-size: 46px;
    margin-bottom: 50px;
  }

  .freelancing-card {
    padding: 45px 40px;
    gap: 35px;
  }

  .card-content-area {
    max-width: 58%;
  }

  .card-image-area {
    width: 38%;
  }

  .freelancing-section .card-title {
    font-size: 36px;
  }

  .card-description,
  .platform-text,
  .benefits-text {
    font-size: 14px;
  }

  .yellow-circle-bg {
    width: 350px;
    height: 350px;
  }

  .freelancer-img {
    max-height: 450px;
  }
}

@media (max-width: 992px) {
  .freelancing-section {
    padding: 80px 0;
  }

  .freelancing-section .section-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .yellow-border-accent {
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border-radius: 35px;
  }

  .freelancing-card {
    flex-direction: column;
    padding: 40px 35px;
    gap: 30px;
    border-radius: 35px;
  }

  .card-content-area {
    max-width: 100%;
  }

  .card-image-area {
    width: 100%;
    justify-content: center;
  }

  .yellow-circle-bg {
    width: 300px;
    height: 300px;
    right: 50%;
    transform: translateX(50%);
  }

  .freelancer-img {
    max-height: 400px;
    bottom: -40px;
  }

  .freelancing-section .card-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .freelancing-section {
    padding: 60px 0;
  }

  .freelancing-section .section-title {
    font-size: 34px;
    margin-bottom: 35px;
  }

  .yellow-border-accent {
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border-radius: 30px;
  }

  .freelancing-card {
    padding: 35px 30px;
    border-radius: 30px;
  }

  .freelancing-section .card-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .card-description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .platform-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .platform-text {
    font-size: 13px;
  }

  .benefits-section {
    padding: 18px 20px;
  }

  .benefits-label {
    font-size: 13px;
  }

  .benefits-text {
    font-size: 13px;
  }

  .platforms-list li {
    gap: 12px;
    margin-bottom: 18px;
  }

  .yellow-circle-bg {
    width: 250px;
    height: 250px;
  }

  .freelancer-img {
    max-height: 350px;
  }
}

@media (max-width: 576px) {
  .freelancing-section {
    padding: 50px 0;
  }

  .freelancing-section .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .yellow-border-accent {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border-radius: 25px;
  }

  .freelancing-card {
    padding: 30px 25px;
    border-radius: 25px;
  }

  .slider-item {
    padding: 0 5px;
  }

  .freelancing-section .card-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .card-description {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .platforms-list {
    margin-bottom: 25px;
  }

  .platforms-list li {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
  }

  .platform-badge {
    font-size: 10px;
    padding: 4px 10px;
  }

  .platform-text {
    font-size: 12px;
  }

  .benefits-section {
    padding: 15px 18px;
  }

  .benefits-label,
  .benefits-text {
    font-size: 12px;
  }

  .yellow-circle-bg {
    width: 200px;
    height: 200px;
    bottom: -20px;
  }

  .freelancer-img {
    max-height: 300px;
    bottom: -30px;
  }
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  animation: fadeInUp 0.8s ease-out;
}

.slider-wrapper {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Floating Animation for Image */
@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.freelancer-img {
  animation: floatImage 4s ease-in-out infinite;
}
/* Reset and Base Styles */

/* Resources Section */
.resources-section {
  position: relative;
  width: 100%;
  background: #f5f5f5;
  padding: 80px 0;
}

/* Container */
.resources-section .container {
  max-width: 1400px;
}

/* Resources Container (Yellow rounded box) */
.resources-container {
  background-image: url("../images/pattern.webp"),
    linear-gradient(135deg, #ffd97d 0%, #ffc857 100%);
  position: relative;
  border-radius: 50px;
  padding: 50px;
  overflow: hidden;
  background-position: top left;
  background-repeat: no-repeat, no-repeat;
  min-height: auto;
}

/* Background Shape Text (LPU) */
.bg-shape-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 350px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: -10px;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* Section Title */
.section-title {
  position: relative;
  z-index: 1;
  font-size: 56px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
  letter-spacing: -1px;
}

/* Cards Row */
.resources-container .row {
  position: relative;
  z-index: 1;
}

/* Resource Card */
.resource-card {
  position: relative;
  background: #fff;
  border-radius: 30px;
  padding: 45px 40px;
  min-height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Card Title */
.card-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}

/* Resource List */
.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.resource-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

.resource-list li:last-child {
  margin-bottom: 0;
}

.resource-list li::before {
  content: "•";
  position: absolute;
  left: 5px;
  font-size: 24px;
  line-height: 1.4;
  color: #ffa726;
}

/* Card Shapes */
.card-shape {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}

.card-shape svg {
  width: 120px;
  height: 120px;
}

/* Shape 1 - Cross/Plus pattern */
.card-shape-1 {
  /* Already positioned */
}

/* Shape 2 - Circles pattern */
.card-shape-2 {
  /* Already positioned */
}

/* Responsive Design */
@media (max-width: 1400px) {
  .resources-container {
    padding: 70px 50px;
    border-radius: 45px;
  }

  .resources-container .section-title {
    font-size: 50px;
    margin-bottom: 50px;
  }

  .bg-shape-text {
    font-size: 300px;
  }

  .card-title {
    font-size: 28px;
  }

  .resource-list li {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .resources-container {
    padding: 60px 45px;
    border-radius: 40px;
  }

.resources-container .section-title {
    font-size: 46px;
  }

  .bg-shape-text {
    font-size: 250px;
  }

  .resource-card {
    padding: 40px 35px;
    min-height: 380px;
  }

  .card-title {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .resource-list li {
    font-size: 15px;
    margin-bottom: 16px;
  }
}

@media (max-width: 992px) {
  .resources-section {
    padding: 60px 0;
  }

  .resources-container {
    padding: 50px 40px;
    border-radius: 35px;
  }

 .resources-container .section-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .bg-shape-text {
    font-size: 200px;
  }

  .resource-card {
    padding: 35px 30px;
    min-height: auto;
    margin-bottom: 20px;
  }

  .card-title {
    font-size: 24px;
  }

  .resource-list li {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .card-shape svg {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .resources-section {
    padding: 50px 0;
  }

  .resources-container {
    padding: 40px 30px;
    border-radius: 30px;
  }

.resources-container .section-title {
    font-size: 34px;
    margin-bottom: 35px;
  }

  .bg-shape-text {
    font-size: 150px;
  }

  .resource-card {
    padding: 30px 25px;
    border-radius: 25px;
  }

  .card-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .resource-list li {
    font-size: 14px;
    padding-left: 20px;
    margin-bottom: 12px;
  }

  .resource-list li::before {
    font-size: 20px;
    left: 3px;
  }

  .card-shape {
    bottom: -15px;
    right: -15px;
  }

  .card-shape svg {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 576px) {
  .resources-section {
    padding: 40px 0;
  }

  .resources-container {
    padding: 35px 25px;
    border-radius: 25px;
  }

 .resources-container .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .bg-shape-text {
    font-size: 100px;
    opacity: 0.1;
  }

  .resource-card {
    padding: 25px 20px;
    border-radius: 20px;
  }

  .card-title {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .resource-list li {
    font-size: 13px;
    padding-left: 18px;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .resource-list li::before {
    font-size: 18px;
  }

  .card-shape {
    bottom: -10px;
    right: -10px;
  }

  .card-shape svg {
    width: 80px;
    height: 80px;
  }
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  animation: fadeInUp 0.8s ease-out;
}

.resource-card-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0px;
  width: 226px;
  height: 207px;
  background-image: url(../images/student-s-1.webp);
}

.resource-card-2::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0px;
  width: 226px;
  height: 207px;
  background-image: url(../images/student-s-2.webp);
}

/* Shape Rotation Animation */
@keyframes rotateShape {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

.card-shape {
  animation: rotateShape 6s ease-in-out infinite;
}

/* Background Text Subtle Animation */
@keyframes pulseText {
  0%,
  100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.08;
  }
}

.bg-shape-text {
  animation: pulseText 8s ease-in-out infinite;
}
/* Reset and Base Styles */

/* Outcomes Section */
.outcomes-section {
  position: relative;
  width: 100%;
  background: #fffcf4;
  padding: 100px 0;
  overflow: hidden;
}

.outcomes-section::before {
  content: "";
  position: absolute;
  bottom: 100px;
  left: 0px;
  width: 500px;
  height: 500px;
  background-image: url(../images/shape-2.webp);
}

/* Container */
.outcomes-section .container {
  position: relative;
  max-width: 1400px;
  z-index: 2;
}

/* Background Shape (Bottom Left) */
.bg-shape-left {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-shape-left svg {
  display: block;
}

/* Section Title */
.outcomes-section .section-title {
  font-size: 56px;
  font-weight: 700;
  color: #000;
  margin-bottom: 60px;
  line-height: 1.2;
  letter-spacing: -1px;
  text-align: start;
}

/* Image Container */
.image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

/* Purple Circle Background */
.purple-circle-bg {
  position: absolute;
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, #b794f6 0%, #9b6fff 100%);
  border-radius: 50%;
  z-index: 0;
}

/* Student Image */
.student-image {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

/* Accordion Styling */
.outcomes-accordion {
  --bs-accordion-border-color: transparent;
  --bs-accordion-border-radius: 0;
}

.accordion-item {
  background: #fff;
  border: 1px solid #e0e0e0 !important;
  border-radius: 15px !important;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.accordion-item:last-child {
  margin-bottom: 0;
}

/* Accordion Header */
.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  background: #fff;
  padding: 25px 30px;
  border: none;
  box-shadow: none !important;
  position: relative;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  color: #000;
}

.accordion-button::after {
  content: "+";
  background-image: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 400;
  color: #000;
  flex-shrink: 0;
}

.accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
  background-image: none;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

/* Accordion Body */
.accordion-body {
  padding: 30px;
  padding-top: 10px;
}

/* Outcomes List */
.outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.outcomes-list li {
  margin-bottom: 25px;
  display: flex;
}

.outcomes-list li:last-child {
  margin-bottom: 0;
}

/* Outcome Item */
.outcome-item {
  display: flex;

  gap: 15px;
  border: 1px solid #e9e9e9;
  border-radius: 30px;
  padding: 5px 15px;
  margin-right: 12px;
}

/* Outcome Icon (Colored Dot) */
.outcome-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 6px;
}

.orange-dot {
  background: #ff8c42;
}

.purple-dot {
  background: #b794f6;
}

.blue-dot {
  background: #60c5f1;
}

/* Outcome Content */
.outcome-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.outcome-label {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.outcome-text {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .outcomes-section .section-title {
    font-size: 50px;
    margin-bottom: 50px;
  }

  .purple-circle-bg {
    width: 400px;
    height: 400px;
  }

  .student-image {
    max-height: 550px;
  }

  .accordion-button {
    font-size: 20px;
    padding: 22px 28px;
  }
}

@media (max-width: 1200px) {
 .outcomes-section .section-title {
    font-size: 46px;
  }

  .purple-circle-bg {
    width: 350px;
    height: 350px;
  }

  .student-image {
    max-height: 500px;
  }

  .accordion-button {
    font-size: 19px;
    padding: 20px 25px;
  }

  .outcome-text {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .outcomes-section {
    padding: 80px 0;
  }

  .outcomes-section .section-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .image-container {
    margin-bottom: 40px;
  }

  .purple-circle-bg {
    width: 300px;
    height: 300px;
  }

  .student-image {
    max-height: 450px;
  }

  .accordion-button {
    font-size: 18px;
    padding: 18px 22px;
  }

  .accordion-body {
    padding: 25px;
  }

  .outcome-text {
    font-size: 15px;
  }

  .bg-shape-left svg {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .outcomes-section {
    padding: 60px 0;
  }

  .outcomes-section .section-title {
    font-size: 34px;
    margin-bottom: 35px;
  }

  .purple-circle-bg {
    width: 280px;
    height: 280px;
  }

  .student-image {
    max-height: 400px;
  }

  .accordion-item {
    border-radius: 12px !important;
    margin-bottom: 12px;
  }

  .accordion-button {
    font-size: 17px;
    padding: 16px 20px;
  }

  .accordion-button::after {
    width: 26px;
    height: 26px;
    font-size: 24px;
  }

  .accordion-body {
    padding: 20px;
  }

  .outcomes-list li {
    margin-bottom: 20px;
  }

  .outcome-item {
    gap: 12px;
  }

  .outcome-label {
    font-size: 12px;
  }

  .outcome-text {
    font-size: 14px;
  }

  .bg-shape-left svg {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 576px) {
  .outcomes-section {
    padding: 50px 0;
  }

 .outcomes-section .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .purple-circle-bg {
    width: 240px;
    height: 240px;
  }

  .student-image {
    max-height: 350px;
  }

  .accordion-item {
    border-radius: 10px !important;
    margin-bottom: 10px;
  }

  .accordion-button {
    font-size: 16px;
    padding: 15px 18px;
  }

  .accordion-button::after {
    width: 24px;
    height: 24px;
    font-size: 22px;
  }

  .accordion-body {
    padding: 18px;
  }

  .outcomes-list li {
    margin-bottom: 18px;
    display: block;
  }

  .outcome-item {
    gap: 10px;
  }

  .outcome-icon {
    width: 10px;
    height: 10px;
    margin-top: 5px;
  }

  .outcome-label {
    font-size: 11px;
  }

  .outcome-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .bg-shape-left svg {
    width: 200px;
    height: 200px;
  }
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  animation: fadeInUp 0.8s ease-out;
}

.image-container {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.accordion-item:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.accordion-item:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.accordion-item:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

/* Floating Animation for Student Image */
@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.student-image {
  animation: floatImage 4s ease-in-out infinite;
}
/* Reset and Base Styles */

/* Graduates Section */
.graduates-section {
  position: relative;
  width: 100%;
  background: #f9f9f9;
  padding: 100px 0 0 0;
}

/* Container */
.graduates-section .container {
  max-width: 1400px;
}

/* Section Title */
.graduates-section .section-title {
  font-size: 56px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.2;
  letter-spacing: -1px;
}

/* Features Grid */
.features-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* Center Image Container */
.center-image-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Beige Circle Background */
.beige-circle-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #f5e6d3 0%, #edd9c0 100%);
  border-radius: 50%;
  z-index: 0;
}

/* Yellow Brush Stroke */
.yellow-brush-stroke {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 150px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #ffd97d 10%,
    #ffc857 50%,
    #ffd97d 90%,
    transparent 100%
  );
  border-radius: 100px;
  opacity: 0.8;
  z-index: 1;
  filter: blur(2px);
}

/* Graduate Image */
.graduate-image {
  position: relative;
  z-index: 2;
  max-width: 450px;
  height: auto;
  object-fit: contain;
}

/* Feature Card */
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  transition: all 0.3s ease;
  min-height: 180px;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Card Icon */
.card-icon {
  width: 48px;
  height: 48px;
  color: #000;
  flex-shrink: 0;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

/* Card Text */
.card-text {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  margin: 0;
}

/* Grid Positioning */
.card-left-1 {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  max-width: 350px;
}

.card-left-2 {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
  max-width: 350px;
}

.card-left-3 {
  grid-column: 1;
  grid-row: 3;
  justify-self: end;
  max-width: 350px;
}

.card-right-1 {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  max-width: 350px;
}

.card-right-2 {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
  max-width: 350px;
}

.card-right-3 {
  grid-column: 2;
  grid-row: 3;
  justify-self: start;
  max-width: 350px;
}

/* Footer Section */
.university-footer {
  background: linear-gradient(135deg, #ffd97d 0%, #ffc857 100%);
  padding: 30px 0;
}



.footer-logo {
  max-width: 60px;
  height: auto;
  margin: 0 auto;
}

.footer-text {
  text-align: center;
}

.footer-info {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin: 0 0 5px 0;
  line-height: 1.6;
}

.footer-info strong {
  font-weight: 700;
}

.footer-contact {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1400px) {
.graduates-section .section-title {
    font-size: 50px;
    margin-bottom: 70px;
  }

  .beige-circle-bg {
    width: 450px;
    height: 450px;
  }

  .yellow-brush-stroke {
    width: 550px;
  }

  .graduate-image {
    max-width: 400px;
  }

  .feature-card {
    padding: 28px 22px;
    min-height: 170px;
  }

  .card-text {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
.graduates-section .section-title {
    font-size: 46px;
    margin-bottom: 60px;
  }

  .features-grid {
    gap: 25px;
  }

  .beige-circle-bg {
    width: 400px;
    height: 400px;
  }

  .yellow-brush-stroke {
    width: 500px;
    height: 130px;
  }

  .graduate-image {
    max-width: 350px;
  }

  .feature-card {
    padding: 25px 20px;
    min-height: 160px;
  }

  .card-left-1,
  .card-left-2,
  .card-left-3,
  .card-right-1,
  .card-right-2,
  .card-right-3 {
    max-width: 320px;
  }
}

@media (max-width: 992px) {
  .graduates-section {
    padding: 80px 0 0 0;
  }

.graduates-section .section-title {
    font-size: 40px;
    margin-bottom: 50px;
  }

  .features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 450px;
  }

  .center-image-container {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
  }

  .beige-circle-bg {
    width: 350px;
    height: 350px;
  }

  .yellow-brush-stroke {
    width: 450px;
    height: 120px;
  }

  .graduate-image {
    max-width: 300px;
  }

  .feature-card {
    max-width: 100% !important;
    justify-self: center !important;
  }

  .card-icon {
    width: 44px;
    height: 44px;
  }

  .card-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .graduates-section {
    padding: 60px 0 50px;
  }

 .graduates-section .section-title {
    font-size: 34px;
    margin-bottom: 40px;
  }

  .features-grid {
    padding-top: 380px;
    gap: 18px;
  }

  .center-image-container {
    top: 100px;
  }

  .beige-circle-bg {
    width: 300px;
    height: 300px;
  }

  .yellow-brush-stroke {
    width: 380px;
    height: 100px;
  }

  .graduate-image {
    max-width: 250px;
  }

  .feature-card {
    border-radius: 15px;
    padding: 22px 18px;
    min-height: 140px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
  }

  .card-text {
    font-size: 14px;
  }

  .footer-info,
  .footer-contact {
    font-size: 13px;
  }

  .footer-logo {
    max-width: 50px;
  }
}

@media (max-width: 576px) {
  .graduates-section {
    padding: 50px 0 40px;
  }

 .graduates-section .section-title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .features-grid {
    padding-top: 320px;
    gap: 15px;
  }

  .center-image-container {
    top: 80px;
  }

  .beige-circle-bg {
    width: 250px;
    height: 250px;
  }

  .yellow-brush-stroke {
    width: 320px;
    height: 80px;
  }

  .graduate-image {
    max-width: 200px;
  }

  .feature-card {
    border-radius: 12px;
    padding: 20px 16px;
    min-height: 130px;
    gap: 15px;
    width: 100%;
  }

  .card-icon {
    width: 36px;
    height: 36px;
  }

  .card-text {
    font-size: 13px;
    line-height: 1.4;
  }

  .university-footer {
    padding: 25px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 15px;
  }

  .footer-info,
  .footer-contact {
    font-size: 12px;
  }
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  animation: fadeInUp 0.8s ease-out;
}

.center-image-container {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.feature-card:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.feature-card:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.feature-card:nth-child(4) {
  animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.feature-card:nth-child(5) {
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.feature-card:nth-child(6) {
  animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.feature-card:nth-child(7) {
  animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

/* Floating Animation for Graduate Image */
@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.graduate-image {
  animation: floatImage 4s ease-in-out infinite;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Immersion Section */
.immersion-section {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 80px 0;
}

/* Container */
.immersion-section .container {
  max-width: 1400px;
}

/* Section Header */
.immersion-section .section-header {
  margin-bottom: 20px;
}

.immersion-section .section-title {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: start;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #666;
  font-style: italic;
  margin: 0;
}

/* Table Container */
.table-container {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.table-responsive {
  border-radius: 30px;
  overflow: hidden;
}

/* Immersion Table */
.immersion-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
}

/* Table Header */
.immersion-table thead {
  background: linear-gradient(135deg, #ffd97d 0%, #ffc857 100%) !important;
}

.immersion-table thead th {
  background: linear-gradient(135deg, #ffd97d 0%, #ffc857 100%) !important;
  padding: 25px 30px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  text-align: left;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
}

.immersion-table thead th:first-child {
  border-top-left-radius: 30px;
}

.immersion-table thead th:last-child {
  border-top-right-radius: 30px;
}

/* Column Widths */
.col-year {
  width: 18%;
}

.col-location {
  width: 18%;
}

.col-focus {
  width: 64%;
}

/* Table Body */
.immersion-table tbody tr {
  background: #fff !important;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

.immersion-table tbody tr:hover {
  background: #fafafa !important;
}

.immersion-table tbody tr:last-child {
  border-bottom: none;
}

.immersion-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 30px;
}

.immersion-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 30px;
}

/* Table Cells */
.immersion-table td {
  padding: 25px 30px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  vertical-align: top;
  border: none;
}

/* Year Cell */
.year-cell {
  font-weight: 500;
  color: #000;
}

/* Location Cell */
.location-cell {
  font-weight: 500;
  color: #000;
}

.location-highlight {
  font-weight: 700;
}

/* Focus Cell */
.focus-cell {
  font-weight: 400;
  color: #333;
}

/* Alternating Row Colors (Optional) */
.immersion-table tbody tr:nth-child(even) {
  background: #fff9e9 !important;
}

.immersion-table tbody tr:nth-child(even):hover {
  background: #f5f5f5 !important;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .section-title {
    font-size: 50px;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .immersion-table thead th {
    padding: 22px 28px;
    font-size: 13px;
  }

  .immersion-table td {
    padding: 22px 28px;
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .section-title {
    font-size: 46px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .immersion-table thead th {
    padding: 20px 25px;
    font-size: 12px;
  }

  .immersion-table td {
    padding: 20px 25px;
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .immersion-section {
    padding: 80px 0;
  }



  .immersion-section .section-title {
    font-size: 40px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .table-container {
    border-radius: 25px;
  }

  .table-responsive {
    border-radius: 25px;
  }

  .immersion-table thead th:first-child {
    border-top-left-radius: 25px;
  }

  .immersion-table thead th:last-child {
    border-top-right-radius: 25px;
  }

  .immersion-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 25px;
  }

  .immersion-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 25px;
  }

  .immersion-table thead th {
    padding: 18px 20px;
    font-size: 11px;
  }

  .immersion-table td {
    padding: 18px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .immersion-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

   .immersion-section  .section-title {
    font-size: 34px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .table-container {
    border-radius: 20px;
  }

  .table-responsive {
    border-radius: 20px;
  }

  /* Stack table on mobile */
  .immersion-table {
    display: block;
  }

  .immersion-table thead {
    display: none;
  }

  .immersion-table tbody {
    display: block;
  }

  .immersion-table tbody tr {
    display: block;
    margin-bottom: 20px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
  }

  .immersion-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .immersion-table td {
    display: block;
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
  }

  .immersion-table td:last-child {
    border-bottom: none;
  }

  .immersion-table td::before {
    content: attr(data-label);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
  }

  .year-cell::before {
    content: "YEAR/SEMESTER";
  }

  .location-cell::before {
    content: "LOCATION";
  }

  .focus-cell::before {
    content: "FOCUS AREA & EXPOSURE";
  }

  .year-cell,
  .location-cell {
    background: #fafafa;
    font-weight: 700;
  }
}

@media (max-width: 576px) {
  .immersion-section {
    padding: 50px 0;
  }

   .immersion-section  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .table-container {
    border-radius: 15px;
  }

  .immersion-table tbody tr {
    border-radius: 12px;
    margin-bottom: 15px;
  }

  .immersion-table td {
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.5;
  }

  .immersion-table td::before {
    font-size: 11px;
    margin-bottom: 6px;
  }
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header {
  animation: fadeInUp 0.8s ease-out;
}

.table-container {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Row Animation on Hover */
.immersion-table tbody tr {
  position: relative;
}

.immersion-table tbody tr:hover::before {
  opacity: 1;
}

/* year-progression  Specific Styles */
.year-progression {
  background: linear-gradient(
    135deg,
    #6dd5c3 0%,
    #a8d98f 30%,
    #f4e86d 70%,
    #fbb040 100%
  );

  position: relative;
  padding: 80px 0 0 0;
}

.year-progression-title {
  font-size: 52px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -1px;
  /*   position: sticky;*/
}

.year-progression-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.year-progression-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: start;
}

/* Sticky Image */
.year-progression-image-wrapper {
  position: sticky;
  top: 220px;
  height: fit-content;
}

.year-progression-image {
  width: 100%;
  height: auto;
  border-radius: 20px;

  transform: translateZ(0);
  transition: transform 0.3s ease;
}

.year-progression-image:hover {
  transform: translateY(-10px) translateZ(0);
}

/* Cards Container */
.year-progression-cards-wrapper {
  position: relative;
  padding-top: 20px;
  width: 90%;
}

.year-progression-card {
  background: #ffffff;
  border-radius: 24px;

  margin-bottom: 30px;
  position: sticky;

  transition: all 0.3s ease;
  scroll-margin-top: 100px;
}

/* Sticky positioning with overlap effect - cards scroll in front */
.year-progression-card:nth-child(1) {
  top: 100px;
  z-index: 1;
}

.year-progression-card:nth-child(2) {
  top: 120px;
  z-index: 2;
}

.year-progression-card:nth-child(3) {
  top: 140px;
  z-index: 3;
}

.year-progression-card:nth-child(4) {
  top: 160px;
  z-index: 4;
}

.year-progression-card:nth-child(5) {
  top: 180px;
  z-index: 5;
}

.year-progression-card.active {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}

.year-progression-year-badge {
  background: #1a1a1a;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.year-progression-year-badge::before {
  content: "●";
  color: #f59e42;
  font-size: 1.2rem;
}

.year-progression-card-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.year-progression-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666666;
  font-size: 1rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.year-progression-location::before {
  content: "🏛️";
  font-size: 1.2rem;
}

.year-progression-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #e0e0e0, transparent);
  margin: 25px 0;
}

.year-progression-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.year-progression-content {
  color: #666666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.year-progression-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.year-progression-skill-tag {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.year-progression-skill-tag:hover {
  transform: translateY(-2px);
}

.year-progression-skill-tag.python {
  background: #ffe8d6;
  color: #d35400;
}

.year-progression-skill-tag.cpp {
  background: #e8d4f7;
  color: #7d3c98;
}

.year-progression-skill-tag.algorithms {
  background: #d6e8ff;
  color: #2e5c8a;
}

.year-progression-skill-tag.database {
  background: #d6f5e8;
  color: #1e7e5c;
}

.year-progression-skill-tag.git {
  background: #ffd6e0;
  color: #c0392b;
}

.year-progression-skill-tag.web {
  background: #fff4d6;
  color: #d68910;
}

.year-progression-skill-tag.ai {
  background: #e0d6ff;
  color: #5b3c98;
}

.year-progression-skill-tag.cloud {
  background: #d6f0ff;
  color: #1f618d;
}

/* Navigation Dots */
.year-progression-nav-dots {
  position: fixed;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.year-progression.in-view .year-progression-nav-dots {
  opacity: 1;
}

.year-progression-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1b88a;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.year-progression-nav-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.year-progression-nav-dot:hover {
  background: #1a1a1a;
  transform: scale(1.3);
}

.year-progression-nav-dot.active {
  background: #1a1a1a;
  width: 16px;
  height: 16px;
}

.year-progression-nav-dot.active::after {
  border-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .year-progression-layout {
    grid-template-columns: 40% 60%;
    gap: 40px;
  }

  .year-progression-nav-dots {
    right: 20px;
  }
}

@media (max-width: 992px) {
  .year-progression-layout {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .year-progression-cards-wrapper {
    width: 100%;

  }
  .year-progression-title {
    font-size: 42px;

  }

  .year-progression-image-wrapper {
    position: relative;
    top: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .year-progression-card {
    position: relative !important;
    top: 0 !important;
  }

  .year-progression-nav-dots {
    right: 10px;
    gap: 12px;
  }

  .year-progression-nav-dot {
    width: 10px;
    height: 10px;
  }

  .year-progression-nav-dot.active {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 576px) {
  .year-progression {
    padding: 40px 0;
  }
    .year-progression-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .year-progression-skills {
    gap: 8px;
  }

  .year-progression-skill-tag {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  .section-title br{display: none;}
}
