  /* Show arrows only on mobile view */

@media (min-width: 1024px) {
  .academy-slider-arrows {
    display: none !important;
  }
}
html, body {
  overflow-x: hidden;
}
/* Right-align the saloon service button */
.saloon-btn-wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

/* Course Card Right Corner Arrow Button */
.course-arrow-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: #fff;
  border: none;
  border-radius: 0 18px 18px 0;
  box-shadow: 0 2px 8px 0 rgba(208, 208, 208, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #222;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.course-arrow-corner:hover {
  background: #FFC57B;
  color: #fff;
  transform: scale(1.05);
}


/* Academy Testimonials Slider Custom Styles (moved from academy.html) */
.academy-slider-track {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
}
.academy-testimonial-card {
 
  max-width: 440px;
  flex: 1 0 0;
  margin: 0;
  display: none;
}
@media (max-width: 1200px) {
  .academy-slider-track {
    gap: 16px;
  }
  .academy-testimonial-card {
    width: 340px;
    min-width: 340px;
    max-width: 340px;
  }
}
@media (max-width: 1024px) {
  .academy-slider-track {
    gap: 8px;
  }
  .academy-testimonial-card {
    width: 220px;
    min-width: 180px;
    max-width: 220px;
  }
}
/* Wider testimonials slider section */
/* Wider testimonials slider section */
.academy-slider-wrapper {
  max-width: 1400px;
  margin: auto;
}
@media (max-width: 1200px) {
  .academy-slider-wrapper {
    max-width: 900px;
  }
}
@media (max-width: 1024px) {
  .academy-slider-wrapper {
    max-width: 98vw;
  }
}
/* Align Who we are section with other sections */
.who-content.container {
  max-width: 1400px !important;
  padding-left: 113px !important;
  padding-right: 113px !important;
}
/* PRODUCT TAB PAGE CUSTOM STYLES */
/* Default desktop styles */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 391px;
  width: 391px;
  position: relative;
  transition: box-shadow 0.2s;
}
.product-card img {
  width: 351px;
  height: 280px;
  margin-top: 20px;
  border-radius: 16px;
  margin-left: 20px;
  margin-right: 20px;
  display: block;
}

/* Tablet view: fit grid/cards within container */
@media (max-width: 1200px) and (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .product-card {
    min-width: 320px;
    width: 320px;
    height: 440px;
  }
  .product-card img {
    width: 300px;
    height: 240px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    object-fit: contain;
    object-position: center;
    background-color: #f8f8f8;
  }
}
.product-info {
  padding: 18px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info h3 {
  color: #FFC57B;
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 4px 0;
}
.product-desc {
  color: #1A1518;
  font-size: 16px;
  margin-bottom: 18px;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-price {
  background: #F0EBEB;
  color: #222;
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
}
.product-buy-btn {
  background: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 8px 12px 8px 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-left: 220px;
  width: auto;
  height: 40px;
     position: relative;
   display: flex;
   align-items: center;
   gap: 8px;
}
.product-buy-btn::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #444444;
  border-radius: 50%;
  margin-left: 8px;
  position: relative;
}
.product-buy-btn::after {
  /* Arrow SVG as background */
  background: #444444 url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="12" fill="%23444444"/><path d="M8 16L16 8M16 8H10M16 8V14" stroke="%23FFC57B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
  background-size: 24px 24px;
}
.product-buy-btn:active,
/* Remove outline and box-shadow only for button, not anchor */
.product-buy-btn:active,
.product-buy-btn:focus {
  outline: none;
  box-shadow: none;
}
a .product-buy-btn,
/* Remove underline from anchor wrapping button */
a,
a:visited {
  text-decoration: none !important;
}


.product-buy-btn:hover {
  background: #FFC57B;
  color: #1A1A1A;
}
/* PRODUCTS & SERVICES PAGE CUSTOM STYLES */
.products-hero {
  width: 100%;
  height: 437px;
  position: relative;
  margin-bottom: 80px;
}
.products-hero-img {
  width: 100%;
  height: 100%;
  background: url('images/product.jpg') center center/cover no-repeat;
  position: relative;
}
.products-hero-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 60px;
  background: rgba(0,0,0,0.45);
}
.products-hero-overlay h1 {
  color: #FFC57B;
  font-size: 72px;
  font-weight: 700;
  margin-left: 85px;
  letter-spacing: 1px;

}

.products-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 36px 0 32px 0;
  margin-bottom: 80px;
}
.products-tab {
  background: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 10px 32px;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.products-tab.active {
  background: #1A1A1A;
  color: #FFC57B;
  font-size: 24px;
  font-weight: 600;
}
.products-tab:not(.active) {
  background: #fff;
  color: #1A1A1A;
  font-size: 24px;
  font-weight: 400;
}

.products-section-title {
  color: #FFC57B;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
  margin-top: 80px;

}


.products-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  max-width: 100vw;
  width: 100%;
  padding-right: 0;
  
  
}
.products-premium-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
  height: 380px;
  min-width: 340px;
  padding: 28px 28px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.products-premium-icon {
  width: 80px;
  height: 80px;
  background: #FFF6E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.products-premium-icon img {

  object-fit: contain;
  object-position: center;
}
.products-premium-card h3 {
  color: #FFC57B;
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 8px 0;
}
.products-premium-card p {
  color: #222;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 18px;
  margin-top: 4px;
}
.products-premium-bottom {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  justify-content: flex-end;
}
.products-premium-price {
  color: #222;
  border-radius: 999px;
  /* padding: 7px 18px; */
  font-size: 32px;
  width: 140px;
  font-weight: 700;
  display: inline-block;
}

.products-btn {
  background: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: auto;
  margin-bottom: 0;
  align-items: flex-end;
  justify-content: flex-end;
  width: 110px;
  height: 40px;
  float: right;
  margin-left: 300px;
}


.products-saloon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 80px;
  width: 1200px;
  max-width: 100%;

}
.products-saloon-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
  width: 577px;
  min-width: 260px;
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-height: 280px;
}
.products-saloon-card h4 {
  color: #FFC57B;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px; /* spacing between child elements */
  justify-content: flex-start;
  text-align: left;
}
.products-saloon-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  width: 100%;
  flex: 1;
}
.products-saloon-card ul li {
  display: flex;
  justify-content: space-between;
  color: #1A1518;
  font-size: 24px;
  margin-bottom: 6px;
}
.products-saloon-card ul li span {
  color: #1A1518;
  font-weight: 600;
  font-size: 20px;
}
.products-badge {
  background: #FFC57B;
  color: #fff;
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-left: 6px;
}

.products-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 32px 0 48px 0;
  margin-bottom: 100px;
}
.products-pagination-arrow {
  color: #1A1A1A;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0 8px;
  user-select: none;
}
.products-pagination-page {
  color: #222;
  font-size: 1.1rem;
  font-weight: 600;
}


/* ACADEMY PAGE CUSTOM STYLES */
.academy-hero {
  width: 100%;
  height: 444px;
  position: relative;
  margin-bottom: 0;
}
.academy-hero-img {
  width: 100%;
  height: 100%;
  background: url('images/academy.png') center center/cover no-repeat;
  position: relative;
}
.academy-hero-img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  pointer-events: none;
  z-index: 1;
}
.academy-hero-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 60px;
   background: rgba(0,0,0,0.25);
   z-index: 2;
}
.academy-hero-overlay h1 {
  color: #FFC57B;
  font-size: 72px;
  font-weight: 700;
  margin-left: 60px;
  letter-spacing: 1px;
}
.academy-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  padding-left: 113px;
  padding-right: 113px;
  margin-bottom: 80px;
}

/* Ensure academy content aligns with navbar logo */
.academy-details .academy-container,
.makeup-syllabus .academy-container {
  padding-left: 113px;
  padding-right: 113px;
}

.academy-section-title {
  color: #FFC57B;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
  margin-top: 46px;
  margin-left: 0;
  text-align: left;
  position: relative;
  left: 0;
}

/* Ensure Beautician Syllabus and Makeup Syllabus align with navbar logo */
.academy-details .academy-section-title,
.makeup-syllabus .academy-section-title {
  margin-left: 0;
  padding-left: 0;
  position: relative;
  left: 0;
}

/* Ensure testimonials section also aligns properly */
.academy-testimonials .academy-container {
  padding-left: 113px;
  padding-right: 113px;
  max-width: 1400px;
}

/* Ensure all academy content aligns with navbar logo */
.academy-course-row {
  margin-left: 0;
  padding-left: 0;
}

.academy-course-info {
  margin-left: 0;
  padding-left: 0;
}

/* Force academy content to align with navbar logo starting point */
.academy-details,
.makeup-syllabus,
.academy-testimonials {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.academy-courses-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.academy-course-row {
  display: flex;
  align-items: stretch;
  gap: 34px;
  margin-bottom: 0;
  min-height: 481px;
}
.academy-course-img {
  width: 597px;
  height: 481px;
  object-fit: cover;
  border-radius: 18px;
  flex-shrink: 0;
}
.academy-course-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-left: 0;
  justify-content: space-between;
  align-items: flex-start;
}

.academy-course-title {
  font-size: 40px;
  font-weight: 700;
  color: #FFC57B;
  margin-bottom: 0;
}
.academy-course-title.basic { color: #FFC57B; }
.academy-course-title.advance { color: #FFC57B; }
.academy-course-title.pro-advance { color: #FFC57B; }
.academy-course-cert {
  font-size: 32px;
  font-weight: 600;
  color: #222;
}

.academy-course-live-demos {
  font-size: 18px;
  font-weight: 500;
  color: #FFC57B;
  margin-bottom: 8px;
}
.academy-course-details-label {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}
.academy-course-details-desc {
  font-size: 16px;
  color: #222;
  margin-bottom: 16px;
}
.academy-course-meta {
  display: flex;
  gap: 60px;
  margin: 18px 0 0 0;
  font-size: 16px;
}

.academy-course-top-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.academy-course-bottom-button {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: auto;
}
.academy-course-meta-label {
  color: #222;
  font-weight: 600;
  font-size: 24px;
}
.academy-course-fee {
  background: #F0EBEB;
  color: #222;
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
  display: inline-block;
}
.academy-enquiry-btn1 {
  background: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 24px;
  font-weight: 700;
  align-self: flex-end;
  margin-top: 20px;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.academy-enquiry-btn {
  background: #1A1A1A;
  color: #FFC57B;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 24px;
  font-weight: 700;
  align-self: flex-end;
  margin-top: 20px;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.academy-enquiry-btn2 {
  background: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 24px;
  font-weight: 700;
  align-self: flex-end;
  margin-top: 20px;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.2s;
}



.academy-testimonials-title{
  font-size: 40px;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 40px;
}
.academy-testimonial-grid {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 32px;
}
.academy-testimonial-video {
  width: 350px;
  height: 677px;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.academy-slider-track {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
}

/* CONTACT US PAGE CUSTOM STYLES */
.contactus-hero {
  width: 100%;
  height: 480px;
  position: relative;
  margin-bottom: 69px;/* Adjusted padding to ensure content fits well */
}
.contactus-hero-img {
  width: 100%;
  height: 100%;
  background: url('images/contactus.png') center center/cover no-repeat;
  position: relative;
}
.contactus-hero-img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  pointer-events: none;
  z-index: 1;
}
.contactus-hero-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 60px;
  background: rgba(0,0,0,0.25);
  z-index: 2;
}
.contactus-hero-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 60px;
  background: rgba(0,0,0,0.25);
}
.contactus-hero-overlay h1 {
  color: #FFC57B;
  font-size: 72px;
  font-weight: 700;
  margin-left: 85px;
  letter-spacing: 1px;
}

.contactus-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: -40px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  max-width: 100vw;
  width: 100%;
}
/* Contact Us Section Custom Classes (from contactus.html inline styles) */
.contact-padding {
  padding-top: 69px;
}
.contactus-title {
  font-size: 2.2rem;
  color: #FFC57B;
  font-weight: 700;
  margin-bottom: 28px;
  background: none;
}
.contactus-title-margin {
  margin-top: 40px;
}
.contactus-socials-margin {
  margin-top: 18px;
}
.contactus-form-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: none;
  box-shadow: none;
  padding: 0;
}
.contactus-form-nostyle {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.contactus-info {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
  padding: 38px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-width: 320px;
  max-width: 350px;
}
.contactus-info-title {
  color: #FFC57B;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
 background:none;
}
.contactus-info-item {
  color: #222;
  font-size: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contactus-socials {
  margin-top: 18px;
  display: flex;
  gap: 16px;
}
.contactus-socials span {
  background: #1A1A1A;
  color: #FFF;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.contactus-socials span:hover {
  background: #FFC57B;
  color: #1A1A1A;
}
.contactus-info-block {
  margin-bottom: 18px;
}
.contactus-hours {
  color: #222;
  font-size: 16px;
  margin-top: 16px;
}
.contactus-hours div {
  margin-bottom: 6px;
}
.contactus-hours span:first-child {
  color: #FFA94D;
  font-weight: 600;
  margin-right: 8px;
}
.contactus-form {
 
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  max-width: 100vw;
  width: 100%;
  margin-left: 0;
}
.contactus-form input,
  .contactus-form textarea {
  background: #F0EBEB;
  border: none;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 0;
  resize: none;
  width: 100%;
  max-width: 850px;
  box-sizing: border-box;
}
.contactus-form textarea {
  min-height: 120px;
  max-height: 180px;
}
.contactus-submit {
  background: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 20px;
  font-weight: 600;
  align-self: flex-end;
  margin-top: 8px;
  width: 122px;
  height: 46px;
  cursor: pointer;
  transition: background 0.2s;
}

.contactus-map-section {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 0;
  margin-top: 0;
}
.contactus-map {
  width: 100%;
  max-width: 100vw;
  position: relative;

}
.contactus-map-img {
  width: 100vw;
  min-height: 320px;
  max-height: 400px;
  object-fit: cover;
  display: block;
}
.contactus-map-address {
  position: absolute;
  top: 32px;
  left: 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  padding: 18px 22px 14px 18px;
  min-width: 260px;
  max-width: 340px;
  z-index: 2;
  font-size: 1.05rem;
}
.contactus-map-address-title {
  font-weight: 600;
  margin-left: 8px;
  color: #222;
}
.contactus-map-address i {
  color: #222;
  margin-right: 4px;
}

.contact {
  margin-bottom: 80px;
  width: 100%;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  margin: 14px auto;

  box-sizing: border-box;
}
.contact-image-box {
  background: url('images/contact.jpg') center center/cover no-repeat;
  border-radius: 18px;
  height: 448px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.contact-image-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
  color: #fff;
  padding: 270px 28px 28px 28px;
  width: 100%;
  border-radius: 0 0 18px 18px;
}
.contact-image-overlay h3 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #FFC57B;
  line-height: 1.1;
}
.contact-image-overlay p {
  font-size: 16px;
  color: #fff;
  margin: 0;
}
.contact-form {
  background: none; /* Setting background to none */
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  min-height: 320px;
  width: 100%;
  max-width: 100%;
}
.contact-form input,
.contact-form textarea {
  background: #F0EBEB;
  border: none;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 16px;
  padding: 16px 16px 16px 0;
  color: #222;
  margin-bottom: 0;
  resize: none;
  width: 100%;
  height: 56px;
  box-sizing: border-box;
}
.contact-form textarea {
  font-size: 16px;
  height: 190px;
}
.contact-submit {
  background: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 20px;
  font-weight: 700;
  align-self: flex-end;
  margin-top: 8px;
  width: 122px;
  height: 46px;
  cursor: pointer;
  transition: background 0.2s;
}

nav ul {
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
nav ul li {
  cursor: pointer;
  font-size: 24px;
  font-weight: 400;
}
.container.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 113px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 80px;
}
header {
  width: 100%;
  height: 108px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0 20px;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  padding-top: 80px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 113px;
  padding-right: 113px;
}

header {
  background: #fff;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav ul li.active {
  color: #FFC57B;
  border-bottom: 3px solid #FFC57B;
  font-weight: 600;
}

/* Hide hamburger menu on desktop */
.hamburger {
  display: none !important;
}

/* Ensure desktop navigation is visible */
nav {
  display: flex !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
  width: auto !important;
  background: transparent !important;
  box-shadow: none !important;
}

nav ul {
  display: flex !important;
  position: static !important;
  width: auto !important;
  background: transparent !important;
  flex-direction: row !important;
  gap: 40px !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

nav ul li {
  padding: 0 !important;
  border-bottom: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}



/* Who section custom styles moved from index.html */
.who-section-padding {
  padding-top: 10px;
  padding-bottom: 80px;
  padding-left: 40px;
  padding-right: 40px;
}
.who-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}
.who-img {
  width: 597px;
  height: 443px;
}

.who-content h2,
.expertise h2,
.products h2,
.courses h2,
.testimonials h2 {
  color: #FFC57B;
  font-size: 40px;
  font-weight: 700;
  margin-top: 40px;
}

.who-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.who-inner > div:first-child {
  flex: 1;
  display: flex;
  justify-content: center;
}

.who-img {
  width: 100%;
  height: 443px;
  object-fit: cover;
  border-radius: 8px;
}

.who-inner > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-inner p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

.expertise {
  background: url('images/2.png') center center/cover no-repeat;
  color: #fff;
  padding: 80px 0 60px 0;
  width: 100%;
  height: 650px;
  text-align: left;
  position: relative;
   margin-bottom: 20px;
}
.expertise-title {
  color: #FFC57B;
  font-size: 40px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 6px;
}
.expertise-subtitle {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 52px;
}
.expertise-grid {
  display: flex;
  justify-content: space-between;
  gap: 84px;
  padding-right: 30px;
  margin-bottom: 40px;
}

.exp-box {
  background: transparent;
  color: #fff;
  flex: 1;
  padding: 0 10px;
  text-align: left;
}
.exp-icon {
  width: 98px;
  height: 98px;
  background: #2d241b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.exp-icon img {
  width: 50px;
  height: 56px;
}
.exp-box h4 {
  color: #FFC57B;
  font-size: 32px;
  font-weight: 600;
   margin-bottom: 32px;
 
}
.exp-box p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
 
}
.expertise-btn {
  background: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 8px 24px;
  font-weight: 600;
  font-size: 20px;
  height: 46px;
  width: 127px;
  margin: 10px auto 0 auto;
  display: block;
  letter-spacing: 0.5px;
  box-shadow: none;
  line-height: 1;

}

.products-section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Products section styling to start closer to header */
.products {
  margin-top: 0;
  padding-top: 20px;
}

.products h2 {
  margin-top: 10px;
}

.products .courses-subtitle {
  margin-top: 0;
  margin-bottom: 16px;
}
.products-card-gap {
  gap: 50px;
}
.products-img-full {
  width: 100%;
  height: 468px;
  object-fit: contain;
  object-position: center;
}
.products-img-auto {
  width: auto;
  height: 468px;
  object-fit: contain;
  object-position: center;
}
.products-price-font {
  font-family: Arial, Helvetica, sans-serif !important;
}

.courses {
  padding: 40px 0 20px 0;
  background: rgba(255, 197, 123, 0.07);
}
.courses-subtitle {
  color: #222;
  font-size: 24px;
  margin-top: 6px;
  margin-bottom: 24px;
}
.card-grid {
  padding-bottom: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.course-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
  overflow: hidden;
  flex: 1;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 280px;
  margin-bottom: 0;
}


.course-card .course-bottom {
  padding: 0;
}
.course-card img {
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin: 5px 5px 5px 5px;
}

/* Responsive breakpoints for course cards */
@media (max-width: 1200px) {
  .card-grid {
    gap: 15px;
    padding-bottom: 20px;
  }
  .course-card {
    min-width: 260px;
  }
  .course-arrow-corner {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .card-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20px;
  }
  .course-card {
    flex: 1 1 calc(50% - 10px);
    max-width: none;
    margin-bottom: 0;
  }
  .course-arrow-corner {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .card-grid {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
  }
  .course-card {
    flex: 1 1 100%;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
  }
  .course-arrow-corner {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
.course-info {
  padding: 22px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-info h3 {
  color: #FFC57B;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
  margin: 0 0 6px 0;
}
.course-cert {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}
.course-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-price {
  display: inline-block;
  background: #F6F6F6;
  color: #222;
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.card {
  border: 1px solid #ddd;
  padding: 0;
  width: 30%;
  border-radius: 16px;
  text-align: left;
  height: 468px;
  position: relative;
  overflow: hidden;
  background: #000;
}


.card img {
  width: 100%;
  display: block;
  height: 468px;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 54px 20px 18px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1.1) 100%);
  color: #fff;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.card-overlay h3 {
  color: #FFC57B;
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 4px 0;
  padding-bottom: 4px;
}
.card-overlay p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 10px 0;
  padding-bottom: 4px;
}
.card-overlay span {
  display: inline-block;
  background: rgba(255,255,255,0.10); /* 10% opacity white */
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
}


.testimonials {
  background: #fff;
  padding: 40px 0 40px 0;
}
.testimonials-subtitle {
  color: #222;
  font-size: 24px;
  font-weight: 400;

}
.testimonial-grid {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  flex-wrap: wrap;
 }

/* Show only 3 testimonial cards at a time */
.testimonial-card:nth-child(-n+3) {
  display: flex;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.2);
  width: 400px;
  min-width: 320px;
  padding: 28px 36px 18px 36px;
  position: relative;
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}
.testimonial-content {
  margin-top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-name {
  margin-top: 37px;
  color: #FFA94D;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 2px;
  text-align: center;
}
.testimonial-location {
  color: #888;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}
.testimonial-stars {
  margin-bottom: 10px;
  font-size: 24px;
  margin-bottom: 16px;
}
.testimonial-text {
  color: #222;
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}
.testimonial-quote {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  margin-top: 24px;
}

.testimonial-quote svg {
  width: 35px;
  height: 31px;
}

.testimonial-quote:hover {
  opacity: 1;
}
.testimonial-arrows {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}
/* Disabled state for testimonial slider arrows */
.testimonial-arrow:disabled {
  background: #e0e0e0;
  color: #888;
  cursor: not-allowed;
  box-shadow: none;
}

.testimonial-arrow {
  background: #FFC57B;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.testimonial-arrow:hover {
  background: #FFA94D;
  color: #fff;
}

.testimonial-grid {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
   scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  justify-content: center;
}

.testimonial {
  text-align: center;
  max-width: 250px;
}



.contact-grid {
  display: flex;
  gap: 8px;
  align-items: center;
  
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact input,
.contact textarea {
  padding: 10px;
  border-radius: 4px;
}

footer {
  background: #1A1518;
  color: #fff;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0px 0px;
  gap: 60px;
  margin-top: 80px;
  box-sizing: border-box;
}

/* Remove margin-top from footer on contact page */
.contact-page footer {
  margin-top: 0;
}

/* Make social media icons black in contact page "Get in touch" section */
.contact-page .contactus-socials .footer-social-icon {
  background: #ffffff;
}


/* Other social media icons: white background with black icons */
.contact-page .contactus-socials .footer-social-icon:not([href*="x.com"]) img {
  filter: brightness(0);
}

.footer-main-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 108px;                   /* Figma gap */
  width: 100%;
  max-width: 1214px;            /* Figma container width */
  height: 248px;                /* Figma height */
  padding: 0;                   /* no side padding so it aligns with navbar start */
  margin: 0 auto;               /* center in page */
  box-sizing: border-box;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 18px;
  width: 98px;
  height: 60px;
  flex-shrink: 0;
}

.footer-logo {
  width: 98px;
  height: 60px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-company-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 122px;
  height: 228px;
  flex-shrink: 0;
}

.footer-company-title {
  width: 122px;
  height: 36px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #FFC57B;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 78px;
  height: 168px;
}

.footer-link {
  width: 78px;
  height: 24px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFC57B;
  margin: 0;
  text-decoration: none;
}

.footer-contact-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 338px;
  height: 248px;
  flex: 1;
}

.footer-contact-title {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #FFC57B;
  margin: 0;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 24px;
  width: 338px;
  height: 132px;
}

.footer-contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;
  width: 338px;
  height: 24px;
}

.footer-contact-icon {

  color: #FFC57B;
}

.footer-contact-text {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFC57B;
  margin: 0;
}

.footer-social-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 338px;
  height: 92px;
}

.footer-social-title {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #FFC57B;
  margin: 0;
}

.footer-social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 16px;
  width: 176px;
  height: 32px;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.footer-social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFC57B;
  opacity: 0;
  z-index: 1;
}

.footer-social-icon img {
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  object-fit: contain;
}





.footer-address-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 332px;
  height: 204px;
  flex-shrink: 0;
}

.footer-address-title {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #FFC57B;
  margin: 0;
}

.footer-address-text {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFC57B;
  margin: 0;
}

.footer-copyright {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  gap: 20px;
  width: 100%;
  height: auto;
  border-top: 1px solid #FFC57B;
  margin: 0;                    /* remove auto margin to span full width */
  box-sizing: border-box;
}

.footer-copyright-text {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFC57B;
  margin: 0;
}

/* Responsive footer */
@media (max-width: 1024px) {
  .footer-main-content {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    max-width: 100%;
  }

  .footer-company-section,
  .footer-contact-section,
  .footer-address-section {
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-contact-info {
    align-items: center;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-copyright {
    padding: 24px 20px;
    width: 100%;
    margin: 0;
  }
}

/* Responsive contact form */
@media (min-width: 1200px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 20px;
    max-width: 100%;
  }
  
  .contact-image-box {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  .contact-form {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 16px;
    max-width: 100%;
  }
  
  .contact-image-box {
    max-width: 100%;
  }
  
  .contact-form {
    max-width: 100%;
    padding: 24px 20px 20px 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    font-size: 14px;
  }
  
  .contact-submit {
    font-size: 16px;
    padding: 10px 20px;
    width: 100px;
    height: 40px;
  }
}



.socials {
  display: flex;          /* makes them horizontal */
  gap: 8px;               /* space between icons */
}

.socials a {
  text-decoration: none;  /* removes blue underline */
}

.socials i {
  background: #FFC57B;
  color: #1A1A1A;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}


.product-btn {
  background-color: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 20px;
  width: 127px;
  height: 46px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: center;
  display: block;
  margin: 40px auto 40px auto;
  cursor: pointer;
  letter-spacing: 0.2px;
  line-height: 1;
  transition: background-color 0.3s ease;
  position: relative;
}

.product-btn a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.product-btn1 {
  background-color: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 20px;
  width: 127px;
  height: 46px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: center;
  display: block;
  margin: 24px auto 0 auto;
  cursor: pointer;
  letter-spacing: 0.2px;
  line-height: 1;
  transition: background-color 0.3s ease;
  margin-bottom: 40px;
}

/* Ensure video controls don't exceed video boundaries */
.hero iframe[src*="vimeo"] {
  max-width: 100% !important;
  max-height: 100% !important;
  overflow: hidden !important;
}

/* Force Vimeo player to respect container boundaries */
.hero iframe[src*="vimeo"] {
  width: 100% !important;
  height: 100% !important;
  left: 0 !important;
  top: 0 !important;
  position: absolute !important;
  transform: none !important;
  transform-origin: 0 0 !important;
}

/* Force Vimeo player to stay within container */
.hero iframe[src*="vimeo"] {
  clip-path: inset(0 0 0 0) !important;
  clip: rect(0, auto, auto, 0) !important;
}

/* Additional containment for Vimeo player */
.hero iframe[src*="vimeo"] {
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Play button overlay */
.play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-button-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 197, 123, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 3px solid #fff;
}

.play-button:hover {
  background: rgba(255, 197, 123, 1);
  transform: scale(1.1);
}

.play-button i {
  color: #fff;
  font-size: 32px;
  margin-left: 4px;
}

/* Makeup Syllabus Section Styles */
.makeup-syllabus {
  background: #fff;
}

.makeup-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.makeup-course-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.makeup-course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px 0 rgba(0,0,0,0.15);
}

/* Create curved bottom-right corner using pseudo-element */
.makeup-course-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 0 0 16px 0;
  z-index: 1;
}

.makeup-course-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  display: block;
}

.makeup-course-content {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.makeup-course-title {
  color: #FFC57B;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.makeup-course-cert {
  color: #666;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.makeup-course-demos {
  color: #888;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 16px;
}

.makeup-course-details {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  min-height: 80px;
}

.makeup-course-duration {
  color: #666;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.makeup-enquiry-btn {
  background: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto;
}

.makeup-enquiry-btn:hover {
  background: #FFC57B;
  color: #1A1A1A;
  transform: scale(1.02);
}

/* Responsive design for makeup syllabus */
@media (max-width: 1200px) {
  .makeup-courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .makeup-courses-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .makeup-course-card::after {
    width: 50px;
    height: 50px;
  }
  
  .makeup-course-content {
    padding: 20px;
  }
  
  .makeup-course-title {
    font-size: 28px;
  }
  
  .makeup-course-img {
    height: 250px;
  }
}
