

html, body {
  overflow-x: hidden;
}
/* Tablet view: fit all content and page within container */
@media (max-width: 1024px) {
/* Course Card Right Corner Arrow Button */
.course-arrow-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  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: 1rem;
  color: #222;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

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

/* Courses We Offer section - Home page mobile styles */
/* Add more gap around View All button */
.courses .product-btn {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

/* Additional spacing for course cards */
.courses .card-grid {
  gap: 32px !important;
}
/* Academy Testimonials Slider Custom Styles (moved from academy.html) */
.academy-slider-track {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
}
.academy-testimonial-card {
  width: 440px;
  min-width: 440px;
  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: 900px) {
  .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;
  }
}
/* Reduce left and right gap for Who we are section */
.who-content.container {
   max-width: 100vw !important;
    padding: 0 10px !important;
    margin: 0 !important;
    height: auto !important;
}

/* Add spacing between who we are and expertise sections */
.who {
    margin-bottom: 40px !important;
}
/* PRODUCT TAB PAGE CUSTOM STYLES */
/* Default desktop styles */
.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  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: 100%;
  width: 100%;
  position: relative;
  transition: box-shadow 0.2s;
}
.product-card img {

  margin-top: 20px;
  border-radius: 16px;
  margin-left: 20px;
  margin-right: 20px;
  object-fit: cover;
  display: block;
}

/* Tablet view: fit grid/cards within container */
@media (max-width: 1200px) and (min-width: 769px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .product-card {
    min-width: 320px;
    width: 320px;
    height: 440px;
  }
  .product-card img {
 
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
  }
}
.product-info {
  padding: 18px 18px 12px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info h3 {
  color: #FFC57B;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px 0;
}
.product-desc {
  color: #1A1518;
  font-size: 12px;
  margin-bottom: 18px;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
}
.product-price {
  background: #F0EBEB;
  color: #222;
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 1.08rem;
  font-weight: 700;
  display: inline-block;
}
.product-buy-btn {
  background: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 20px 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-left: auto;
  height: 36px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 80px;
  justify-content: center;
}
.product-buy-btn::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #444444;
  border-radius: 50%;
  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: 585px;
  position: relative;
  margin-bottom: 0;
}
.products-hero-img {
  width: 100%;
  height: 585px;
  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: 0px;
  background: rgba(0,0,0,0.45);
}
.products-hero-overlay h1 {
  color: #FFC57B;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
  padding: 0 20px;
}

/* Responsive padding for products hero text */
@media (max-width: 480px) {
  .products-hero-overlay h1 {
    padding: 0 16px;
    font-size: 36px;
  }
}

@media (max-width: 360px) {
  .products-hero-overlay h1 {
    padding: 0 12px;
    font-size: 32px;
  }
}

.products-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 32px 0 32px 0;
}
.products-tab {
  background: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 117px;
  height: 40px;
  transition: background 0.2s, color 0.2s;
}
.products-tab.active {
  background: #1A1A1A;
  color: #FFC57B;
}
.products-tab:not(.active) {
  background: #fff;
  color: #1A1A1A;
}

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

.products-premium-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-bottom: 48px;
  width: 100%;
  
  
}
.products-premium-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
  width: 100%;
  height: 282px;
  min-width: 340px;
  padding: 28px 28px 18px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 16px;
}
.products-premium-icon {
  width: 60px;
  height: 60px;
  background: #FFF6E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.products-premium-icon img {
  width: 36px;
  height: 45px;
  object-fit: contain;
  object-position: center;
}
.products-premium-card h3 {
  color: #FFC57B;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 2px 0;
}
.products-premium-card p {
  color: #1A1518;
  font-size: 12px;
  margin-bottom: 18px;
}
.products-premium-bottom {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  justify-content: flex-end;
  width: 100%;
}
.products-premium-price {
  background: #F0EBEB;
  color: #222;
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 1.08rem;
  font-weight: 700;
  display: inline-block;
}

.products-btn {
  background: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: auto;
  margin-top: auto;
  float: right;
  width: 120px;
  height: 48px;
}


.products-saloon-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  width: 100%;
  max-width: 100%;
}
.products-saloon-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
  width: 100%;
  min-width: 260px;
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
 
  position: relative;
}
.products-saloon-card h4 {
  color: #FFC57B;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.products-saloon-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  width: 100%;
}
.products-saloon-card ul li {
  display: flex;
  justify-content: space-between;
  color: #222;
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.products-saloon-card ul li span {
  color: #888;
  font-weight: 600;
  font-size: 15px;
}
.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;
}
.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: 585px;
  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: 0;
   background: rgba(0,0,0,0.25);
   z-index: 2;
}
.academy-hero-overlay h1 {
  color: #FFC57B;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
  padding: 0 20px;
  text-align: center;
}

/* Responsive padding for academy hero text */
@media (max-width: 480px) {
  .academy-hero-overlay h1 {
    padding: 0 16px;
    font-size: 36px;
  }
}

@media (max-width: 360px) {
  .academy-hero-overlay h1 {
    padding: 0 12px;
    font-size: 32px;
  }
}
.academy-container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 100%;
}

/* Ensure academy content aligns properly on mobile */
.academy-details .academy-container,
.makeup-syllabus .academy-container {
  padding-left: 20px;
  padding-right: 20px;
}

/* Ensure testimonials section also aligns properly on mobile */
.academy-testimonials .academy-container {
  padding-left: 20px;
  padding-right: 20px;
}

/* Ensure all academy content aligns properly on mobile */
.academy-course-row {
  margin-left: 0;
  padding-left: 0;
}

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

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

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

.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: 306px;
}

@media (max-width: 1024px) {
  .academy-course-row {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
}
.academy-course-img {
  width: 100%;
  height: 306px;
  object-fit: cover;
  border-radius: 18px;
  flex-shrink: 0;
}
.academy-course-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 0;
  margin-left: 0;
  justify-content: space-between;
  align-items: flex-start;
}

.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-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFC57B;
}
.academy-course-title.basic { color: #FFC57B; }
.academy-course-title.advance { color: #FFC57B; }
.academy-course-title.pro-advance { color: #FFC57B; }
.academy-course-cert {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.academy-course-live-demos {
  font-size: 14px;
  font-weight: 500;
  color: #FFC57B;
  margin-bottom: 6px;
}
.academy-course-details-label {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 3px;
}
.academy-course-details-desc {
  font-size: 12px;
  color: #222;
  margin-bottom: 8px;
}
.academy-course-meta {
  display: flex;
  gap: 60px;
  margin: 18px 0 0 0;
  font-size: 12px;
}
.academy-course-meta-label {
  color: #222;
  font-weight: 600;
  font-size: 16px;
}
.academy-course-fee {
  background: #F0EBEB;
  color: #222;
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
  display: inline-block;
}
.academy-enquiry-btn {
  background: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  float: right;
  align-self: flex-end;
  margin-top: 0px;
  cursor: pointer;
  width: 120px;
  height: 48px;
  transition: background 0.2s;
  margin-bottom: 36px;
}
.academy-enquiry-btn2 {
  background: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  align-self: flex-end;
  margin-top: 0;
  float: right;
  width: 120px;
  height: 48px;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 32px;
}
.academy-enquiry-btn1 {
  background: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  width: 120px;
  height: 48px;
  float: right;
  align-self: flex-end;
  margin-top: 0;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 32px;
}


/* Testimonials */
.academy-testimonials {
  background: #fff;
  padding: 3px ;
}
.academy-testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 0;
  margin-top: 32px;
}
  .academy-slider-track {
    justify-content: flex-start;
  }
.academy-testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
  width: 100%;
  max-width: 100%;
  padding: 10px;
  align-items: center;
  justify-content: center;
}
.academy-testimonials-title{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.academy-slider-arrows {
  display: flex;
  gap: 10px; /* space between arrows */
  justify-content: center; /* center them horizontally */
}
.academy-testimonials-arrow {
  background: #FFC57B;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem !important;
  width: 28px !important;
  height: 28px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  transition: background 0.2s;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}
.academy-testimonial-video {
  width: 100%;
  height: 659px;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
  background: #fff;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
/* CONTACT US PAGE CUSTOM STYLES */
.contactus-hero {
  width: 100%;
  height: 585px;
  position: relative;
  margin-bottom: 0;
}
.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: 0;
  background: rgba(0,0,0,0.25);
}
.contactus-hero-overlay h1 {
  color: #FFC57B;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
  padding: 0 20px;
  text-align: center;
}

/* Responsive padding for contact hero text */
@media (max-width: 480px) {
  .contactus-hero-overlay h1 {
    padding: 0 16px;
    font-size: 36px;
  }
}

@media (max-width: 360px) {
  .contactus-hero-overlay h1 {
    padding: 0 12px;
    font-size: 32px;
  }
}

.contactus-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .contactus-main-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
    margin-top: 0;
    margin-bottom: 32px;
  }
}
.contactus-info {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
  padding: 32px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-width: 320px;
  max-width: 350px;
}
.contactus-info-title {
  color: #FFC57B;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.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: 12px;
}
.contactus-socials span {
  background: #1A1A1A;
  color: #FFC57B;
  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: 10px;
}
.contactus-hours div {
  margin-bottom: 6px;
}
.contactus-hours span:first-child {
  color: #FFC57B;
  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: 100%;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
}
.contactus-form input,
  .contactus-form textarea {
  background: #F0EBEB;
  border: none;
  border-radius: 8px;
  padding: 10px ;
  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: 12px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  align-self: flex-end;
  margin-top: 8px;
  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;
  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-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.contact-image-box {
  background: url('images/contact.jpg') center center/cover no-repeat;
  border-radius: 18px;
  min-height: 400px;
  width: 100%;
  max-width: 494px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  margin: 0 auto 16px auto;
}
.contact-image-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
  color: #fff;
  padding: 36px 28px 28px 28px;
  width: 100%;
  border-radius: 0 0 18px 18px;
}
.contact-image-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #FFC57B;
  line-height: 1.1;
}
.contact-image-overlay p {
  font-size: 12px;
  color: #fff;
  margin: 0;
}
.contact-form {
  /* background: #F0EBEB; */ /* Commenting out the background color */
  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%;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  background: #F0EBEB;
  border: none;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 1.08rem;
  margin-bottom: 0;
  resize: none;
  width: 100%;
  box-sizing: border-box;
}
.contact-form textarea {
  min-height: 160px;
  max-height: 190px;
}
.contact-submit {
  background: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.2s;
  width: 140px;
  height: 48px;
}

nav ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
nav ul li {
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
}
.container.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  width: 100%;
  max-width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 60px;
}
.logo img {
  height: 60px;
  width: 60px;
}
header {
  width: 100%;
  height: 80px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0;
  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: 20px;
   padding-left: 113px;
  padding-right: 113px;
}

/* Mobile view: adjust container for small screens */
@media (max-width: 480px) {
  .container {
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    padding: 10px !important;
  }
  
  .product-buy-btn {
    font-size: 13px;
    padding: 20px 12px;
    height: 32px;
    min-width: 70px;
  }
  
  .product-card img {
    margin-left: 15px;
    margin-right: 15px;
  }
  
  .testimonial-card {
    width: 100%;
    min-width: 280px;
    min-height: 260px;
    padding: 20px 24px 45px 24px;
  }
  
  .testimonial-quote {
    bottom: 12px;
  }
  
  .testimonial-quote svg {
    width: 28px;
    height: 24px;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .testimonial-card {
    min-height: 240px;
    padding: 16px 20px 40px 20px;
  }
  
  .testimonial-quote {
    bottom: 10px;
  }
  
  .testimonial-quote svg {
    width: 24px;
    height: 20px;
  }
}
  .hamburger {
    display: block;
    position: relative;
    margin-left: auto;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  .hamburger span {
    display: block;
    position: absolute;
    left: 4px;
    right: 4px;
    height: 2px;
    background: #1A1518;
    border-radius: 1px;
    border: 1.5px solid #1A1518;
    transition: 0.3s;
  }
  .hamburger span:nth-child(1) { top: 7px; width: 70%; left: 7px; }
  .hamburger span:nth-child(2) { top: 13px; width: 90%; left: 2px; }
  .hamburger span:nth-child(3) { top: 19px; width: 50%; left: 12px; }

  nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100vw !important;
    z-index: 999;
    background: #fff;
  }
  nav ul {
    display: none;
    position: static;
    width: 100vw !important;
    background: #fff;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 0;
    margin: 0;
  }
  nav ul.open {
    display: flex;
  }
  nav ul li {
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    text-align: left;
  }
  .nav ul { gap: 0; }

.hero {
  margin-bottom: 32px;
}

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

.who-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.who-image-container,
.who-text-container {
  width: 100%;
}

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

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

/* Tablet view for who section */
@media (min-width: 769px) and (max-width: 1024px) {
  .who-inner {
    flex-direction: row;
    gap: 30px;
    align-items: center;
  }

  .who-image-container,
  .who-text-container {
    flex: 1;
  }

  .who-img {
    height: 350px;
  }

  .who-inner p {
    font-size: 20px;
    text-align: left;
  }
}

.expertise {
  background: url('images/2.png') center center/cover no-repeat;
  color: #fff;
  padding: 40px 20px 40px 20px;
  width: 100%;
  height: auto;
  text-align: center;
  position: relative;
  margin-bottom: 16px;
  box-sizing: border-box;
}
.expertise-title {
  color: #FFC57B;
  font-size: 28px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
  text-align: center;
}
.expertise-subtitle {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.4;
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 20px;
  margin-bottom: 32px;
  max-width: 100%;
}
.exp-box {
  background: transparent;
  color: #fff;
  padding: 20px 16px;
  text-align: center;
  margin-bottom: 0;
  border-radius: 12px;
  background: rgba(45, 36, 27, 0.1);
  backdrop-filter: blur(10px);
}
.exp-icon {
  width: 80px;
  height: 80px;
  background: #2d241b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.exp-icon img {
  width: 40px;
  height: 45px;
  object-fit: contain;
}
.exp-box h4 {
  color: #FFC57B;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}
.exp-box p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.5;
}
.expertise-btn {
  background: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 16px;
  margin: 20px auto 0 auto;
  display: block;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 197, 123, 0.3);
  line-height: 1;
  width: 140px;
  height: 48px;
  transition: all 0.3s ease;
}

/* Responsive breakpoints for expertise section */
@media (max-width: 480px) {
  .expertise {
    padding: 32px 16px 32px 16px;
  }
  
  .expertise-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .expertise-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .expertise-grid {
    padding: 0 16px;
  }
  
  .exp-box {
    padding: 16px 12px;
  }
  
  .exp-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
  }
  
  .exp-icon img {
    width: 35px;
    height: 40px;
  }
  
  .exp-box h4 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .exp-box p {
    font-size: 15px;
  }
  
  .expertise-btn {
    width: 140px;
    height: 48px;
    font-size: 16px;
    padding: 14px 28px;
  }
}

@media (max-width: 360px) {
  .expertise {
    padding: 24px 12px 24px 12px;
  }
  
  .expertise-title {
    font-size: 22px;
  }
  
  .expertise-subtitle {
    font-size: 15px;
  }
  
  .expertise-grid {
    padding: 0 12px;
  }
  
  .exp-box {
    padding: 14px 10px;
  }
  
  .exp-icon {
    width: 60px;
    height: 60px;
  }
  
  .exp-icon img {
    width: 30px;
    height: 35px;
  }
  
  .exp-box h4 {
    font-size: 20px;
  }
  
  .exp-box p {
    font-size: 14px;
  }
  
  .expertise-btn {
    width: 140px;
    height: 48px;
    font-size: 16px;
  }
}

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

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

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

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

.courses {
  padding-top: 10px;
  background: rgba(255, 197, 123, 0.07);
}
.courses-subtitle {
  color: #222;
  font-size: 16px;
  margin-bottom: 24px;
}
.card-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 0;
  gap: 16px;
  padding-bottom: 10px;
 
}
.course-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
  overflow: hidden;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 260px;
  margin-bottom: 0;
}

.course-card .course-bottom {
  padding: 0;
}
.course-card img {
  width: 100%;
  height: 306px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
}
.course-info {
  padding: 22px 18px 12px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-info h3 {
  color: #FFC57B;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 12px 0;
}
.course-cert {
  color: #000000;
  font-size: 16px;
  margin-bottom: 18px;
}
.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: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
}


.card-grid {
  display: flex;
  flex-wrap: wrap;
}

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

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

.card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 20px 18px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
  color: #fff;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.card-overlay h3 {
  color: #FFC57B;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 4px 0;
  margin-bottom: 8px;
}
.card-overlay p {
  color: #fff;
  font-size: 12px;
  margin: 0 0 10px 0;
}
.card-overlay span {
  display: inline-block;
  background: #1A1A1A;
  color: #fff;
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.testimonials {
  background: #fff;
  padding: 32px 0 40px 0;
}
.testimonials-subtitle {
  color: #222;
  font-size: 24;
  margin-bottom: 16px;
}
.testimonial-grid {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
  width: 400px;
  min-width: 320px;
  min-height: 280px;
  padding: 28px 36px 50px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-content {
  margin-top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-name {
  color: #FFA94D;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
}
.testimonial-stars {
  margin-bottom: 10px;
  font-size: 23px;
  margin-bottom: 15px;
}
.testimonial-text {
  color: #1A1518;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-quote svg {
  width: 30px;
  height: 26px;
}

.testimonial-quote:hover {
  opacity: 1;
}
.testimonial-arrows {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.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;
flex-direction: column;
  padding-left: 0;
}

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

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

footer {
  background: #2a2426;
  color: #fff;
  position: relative;
  width: 100%;
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

/* 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 {
  border: 2px solid #000000;
  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: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
}

.footer-logo-section {
  width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-company-title,
.footer-contact-title,
.footer-address-title {
  color: #FFC57B;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-company-section,
.footer-contact-section,
.footer-address-section {
  width: 100%;
  margin-bottom: 8px;
}

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

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFC57B;
}

.footer-address-text {
  color: #FFC57B;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 12px;
}

.footer-social-title {
  color: #FFC57B;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 12px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  border: 2px solid #FFC57B;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.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: 20px;
  height: 20px;
  object-fit: contain;
}



.footer-copyright {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  width: calc(100% + 40px);
  border-top: 1px solid #FFC57B;
  margin: 0 -20px;
  background: rgba(255, 197, 123, 0.05);
  position: relative;
}

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

/* Additional responsive improvements for very small screens */
@media (max-width: 480px) {
  footer {
    padding: 32px 16px 16px;
    gap: 20px;
  }

  .footer-main-content {
    gap: 20px;
    padding: 0 12px;
  }

  .footer-company-title,
  .footer-contact-title,
  .footer-address-title,
  .footer-social-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-link,
  .footer-contact-item,
  .footer-address-text {
    font-size: 13px;
  }

  .footer-social-icons {
    gap: 10px;
    margin-top: 12px;
  }

  .footer-social-icon {
    width: 30px;
    height: 30px;
  }

  .footer-copyright {
    padding: 16px 16px;
  }

  .footer-copyright-text {
    font-size: 13px;
    line-height: 20px;
  }
}

@media (max-width: 360px) {
  footer {
    padding: 28px 12px 12px;
    gap: 16px;
  }

  .footer-main-content {
    gap: 16px;
    padding: 0 8px;
  }

  .footer-company-title,
  .footer-contact-title,
  .footer-address-title,
  .footer-social-title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .footer-link,
  .footer-contact-item,
  .footer-address-text {
    font-size: 12px;
  }

  .footer-social-icons {
    gap: 8px;
    margin-top: 10px;
  }

  .footer-social-icon {
    width: 28px;
    height: 28px;
  }

  .footer-copyright {
    padding: 14px 12px;
  }

  .footer-copyright-text {
    font-size: 12px;
    line-height: 18px;
  }
}
}

/* Nest Hub Screen Optimizations - 1024x600 resolution */
@media (min-width: 1024px) and (max-width: 1024px) and (min-height: 600px) and (max-height: 600px) {
  /* Nest Hub Header/Navbar Adjustments - Match Desktop Exactly */
  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;
  }

  .container.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 113px;
    padding-right: 113px;
    position: relative;
    height: 80px;
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 80px;
  }

  .logo img {
    height: 80px;
    width: 80px;
  }

  /* Body padding adjustment for Nest Hub */
  body {
    padding-top: 108px;
  }

  /* Nest Hub Container Adjustments */
  .container {
    max-width: 1400px !important;
    padding-left: 113px !important;
    padding-right: 113px !important;
  }

  /* Ensure navbar matches desktop exactly */
  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;
    font-size: 18px;
    font-weight: 400;
  }

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

  /* Hide hamburger on Nest Hub */
  .hamburger {
    display: none !important;
  }

  /* Footer - Match Desktop Exactly */
  footer {
    background: #1A1518;
    color: #fff;
    position: relative;
    width: 100%;
    padding: 40px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
  }

  .footer-main-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 108px;
    width: 100%;
    max-width: 1400px;
    height: 248px;
    padding: 0 113px;
    margin: 0;
    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;
    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: 100vw;
    height: auto;
    border-top: 1px solid #FFC57B;
    margin: 0 -20px;
    box-sizing: border-box;
    position: relative;
  }

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

.product-btn {
  background-color: #1A1A1A;
  color: #FFC57B;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: center;
  display: block;
  cursor: pointer;
  letter-spacing: 0.2px;
  margin: auto;
  line-height: 1;
  transition: background-color 0.3s ease;
  width: 140px;
  height: 48px;
  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%;
}

/* 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: 60px;
  height: 60px;
  background: rgba(255, 197, 123, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

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

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

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

.makeup-courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
  padding: 0 20px;
}

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

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


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

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

.makeup-course-title {
  color: #FFC57B;
  font-size: 28px;
  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: 60px;
}

.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: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.makeup-enquiry-btn:hover {
  background: #FFC57B;
  color: #1A1A1A;
}