.youtube-shorts-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  padding: 30px 0;
}

.youtube-shorts-track {
  display: inline-flex;
  gap: 18px;
}

.youtube-shorts-track iframe {
  width: 240px;
  height: 420px;
  border-radius: 10px;
  flex-shrink: 0;
}


.certificate-slider{
    width:100%;
    overflow:hidden;
    padding:60px 0;
    background:#FEF1E4;
}

.certificate-track{
    display:flex;
    gap:30px;
    width:max-content;          /* 🔥 important */
    animation: certificateScroll 25s linear infinite;
}

.certificate-track img{
    width:320px;
    height:auto;
    flex-shrink:0;              /* 🔥 important */
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* Animation */
@keyframes certificateScroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* Mobile */
@media (max-width:768px){

    .certificate-track img{
        width:260px;
    }

    .certificate-track{
        gap:15px;
        animation: certificateScroll 35s linear infinite;
    }
}


.faq-container{
    max-width:600px;
    font-family:'Segoe UI', sans-serif;
}

.faq-container details{
    border:2px solid #f25234;
    margin-bottom:20px;
    background:#ffffff;
    padding:20px;
    transition:0.3s ease;
}

.faq-container summary{
    font-size:20px;
    font-weight:600;
    cursor:pointer;
    list-style:none;
    position:relative;
}

.faq-container summary::after{
    content:"+";
    position:absolute;
    right:0;
    font-size:24px;
    font-weight:bold;
    color:#1c3b73;
}

.faq-container details[open] summary::after{
    content:"−";
}

.faq-container p{
    margin-top:15px;
    font-size:16px;
    line-height:1.6;
    color:#555;
}



.pricing-table{
    width:100%;
    border-collapse:collapse;
    font-family:'Segoe UI', sans-serif;
    background:linear-gradient(to right,#ff4b2b,#ffd6cc);
    color:#fff;
}

.pricing-table th{
    font-size:42px;
    text-align:left;
    padding:40px 30px;
}

.pricing-table td{
    font-size:26px;
    padding:30px;
    text-align:left;
}

/* Price column black background */
.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2){
    background:#000;
}

/* Details column darker orange */
.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3){
    background:#f06548;
}

/* Golden Highlight Row */
.highlight td{
    border-top:4px solid gold;
    border-bottom:4px solid gold;
}

.highlight td:first-child{
    border-left:4px solid gold;
}

.highlight td:last-child{
    border-right:4px solid gold;
}

/* Make gold more shiny */
.highlight td{
    border-color:#ffd700;
} 
/* Mobile View */
@media (max-width: 768px) {

    .pricing-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .pricing-table th {
        font-size: 22px;
        padding: 20px 15px;
    }

    .pricing-table td {
        font-size: 16px;
        padding: 18px 15px;
    }

    /* Reduce gold border thickness for mobile */
    .highlight td {
        border-top: 2px solid #ffd700;
        border-bottom: 2px solid #ffd700;
    }

    .highlight td:first-child {
        border-left: 2px solid #ffd700;
    }

    .highlight td:last-child {
        border-right: 2px solid #ffd700;
    }

}

.testimonial-section {
    background: #FEF1E4;
    padding: px 0;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
}

.testimonial-track {
    display: flex;
    width: 55%; /* 7 testimonials */
    animation: scrollTestimonials 120s linear infinite;
}

.testimonial {
    width: 100%;
    flex-shrink: 0;
    text-align: center;
    padding: 0 px;
    box-sizing: border-box;
}

.quote {
    font-size: 60px;
    color: #3c6b57;
    margin-bottom: px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1;
    color: #2b1f18;
    max-width: 800px;
    margin: 0 auto 40px;
}

.testimonial h4 {
    font-size: 18px;
    margin: 5px 0;
    font-weight: 600;
}

.testimonial span {
    font-size: 14px;
    color: #666;
}

/* Animation for 7 testimonials */
@keyframes scrollTestimonials {
    0%   { transform: translateX(0); }
    14%  { transform: translateX(-100%); }
    28%  { transform: translateX(-200%); }
    42%  { transform: translateX(-300%); }
    57%  { transform: translateX(-400%); }
    71%  { transform: translateX(-500%); }
    85%  { transform: translateX(-600%); }
    100% { transform: translateX(0); }
}

/* Mobile View */
@media (max-width: 768px) {

    .testimonial-section {
        padding: 20px 10px;
    }

    .testimonial-track {
        animation: scrollTestimonials 40s linear infinite;
    }

    .testimonial {
        padding: 0 20px;
    }

    .quote {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .testimonial p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .testimonial h4 {
        font-size: 16px;
    }

    .testimonial span {
        font-size: 13px;
    }
}

.review-section {
    background-color: #FEF1E4;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.review-container {
    max-width: 1200px;
    margin: auto;
}

.review-header {
    max-width: 400px;
    margin-bottom: 40px;
}

.review-header small {
    letter-spacing: 2px;
    font-size: 12px;
    color: #7a6b5d;
    text-transform: uppercase;
}

.review-header h2 {
    font-size: 36px;
    margin: 10px 0;
    color: #1e1e1e;
}

.review-header p {
    color: #6a6a6a;
    font-size: 14px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.review-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

.review-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.review-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.review-author span {
    font-weight: 600;
    font-size: 14px;
}

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



.questions-container {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.questions-container details {
  flex: 1;
  min-width: 300px;
  border: 2px solid #ee5336;
  background: #ffffff;
  padding: 20px;
  transition: 0.3s ease;
}

.questions-container summary {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
  color: #1e2f45;
}

/* Remove default arrow */
.questions-container summary::-webkit-details-marker {
  display: none;
}

/* Custom + icon */
.questions-container summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  transition: 0.3s;
}

/* When opened */
.questions-container details[open] summary::after {
  content: "−";
}

.questions-container p {
  margin-top: 15px;
  line-height: 1.6;
  color: #444;
}



/* Remove default body spacing */
body {
  margin: 0;
  padding: 0;
}



html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

/* Remove boxed layout */
.site,
.site-content,
.content-area,
.container,
.wrap {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Force hero full width */
.hero-slider {
  width: 100% !important;
  height: 100vh;
  overflow: hidden;
}