/* Custom Home Styles extracted from index.blade.php */

/* Base Styles */
    .th-hero-wrapper {
      position: relative;
      width: 100%;
      height: 88vh;
      display: flex;
      align-items: center;
      color: #fff;
      z-index: 1;
      overflow: hidden;
    }

    .slide-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: -3;
      transform: scale(1);
      transition: transform 8s ease-out;
    }

    .swiper-slide-active .slide-image {
      transform: scale(1.05);
    }

    .gradient-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg,
          rgba(0, 80, 200, 0.65) 0%,
          rgba(220, 80, 0, 0.75) 110%);
      z-index: -1;
      mix-blend-mode: multiply;
    }

    .overlay-dark {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.0);
      z-index: -2;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .hero-content {
      width: 100%;
      padding-top: 120px;
      animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-title {
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 25px;
      color: white;
      text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }

    .highlight {
      color: #ffa300;
      display: block;
      background: #b0671e;
      -webkit-background-clip: text;
    }

    .hero-subtitle {
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      line-height: 1.7;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.9);
      max-width: 700px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      background: linear-gradient(to right,
          rgba(0, 42, 78, 0.7) 0%,
          rgba(50, 130, 200, 0.20) 100%);
      padding: 1rem 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
      text-align: left;
    }

    .hero-subtitle strong {
      font-weight: 600;
      color: #ffb347;
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: #fff;
      background: linear-gradient(135deg,
          rgba(0, 100, 255, 0.9) 0%,
          rgba(255, 100, 0, 0.9) 100%);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      backdrop-filter: blur(5px);
      transition: all 0.3s ease;
      border: 2px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      background: linear-gradient(135deg,
          rgba(0, 120, 255, 0.9) 0%,
          rgba(255, 120, 0, 0.9) 100%);
      transform: scale(1.15);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 1.8rem;
      font-weight: bold;
    }

    .swiper-pagination-bullet {
      background: rgba(255, 255, 255, 0.6);
      opacity: 0.8;
      width: 14px;
      height: 14px;
      transition: all 0.3s ease;
    }

    .swiper-pagination-bullet-active {
      background: linear-gradient(135deg, #0066ff 0%, #ff8c00 100%);
      opacity: 1;
      transform: scale(1.3);
      box-shadow: 0 0 10px rgba(255, 140, 0, 0.7);
    }

    @media (max-width: 992px) {
      .th-hero-wrapper {
        height: 80vh;
      }

      .hero-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
      }
    }

    @media (max-width: 768px) {
      .th-hero-wrapper {
        height: 80vh;
        text-align: center;
      }

      .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
      }

      .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
      }

      .swiper-button-next,
      .swiper-button-prev {
        width: 45px;
        height: 45px;
        top: auto;
        bottom: 20px;
      }

      .swiper-button-next::after,
      .swiper-button-prev::after {
        font-size: 1.4rem;
      }
    }

    @media (max-width: 480px) {
      .th-hero-wrapper {
        height: 60vh;
      }

      .hero-title {
        font-size: 1.8rem;
      }

      .hero-title .highlight {
        display: inline;
      }

      .hero-subtitle {
        font-size: 1rem;
      }

      .gradient-overlay {
        background: linear-gradient(135deg,
            rgba(0, 80, 200, 0.4) 0%,
            rgba(220, 80, 0, 0.4) 100%);
      }

      .overlay-dark {
        background-color: rgba(0, 0, 0, 0.0);
      }
    }

/* Font */
    .font-fredoka {
      font-family: "Fredoka One", cursive;
    }

    /* Floating shapes no animation */
    .floating-shape {
      position: absolute;
      pointer-events: none;
    }

    .cta-section {
      background: #054da2;
      padding: 1.5rem 1rem;
    }

    .cta-container {
      max-width: 56rem;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .cta-content {
        flex-direction: row;
      }
    }

    .cta-graphics {
      display: none;
      flex-shrink: 0;
    }

    @media (min-width: 768px) {
      .cta-graphics {
        display: block;
        order: 1;
      }
    }

    .graphics-container {
      position: relative;
      width: 6rem;
      height: 6rem;
    }

    .shape {
      width: 2rem;
      height: 2rem;
    }

    .top-left {
      top: 0;
      left: 0;
    }

    .top-right {
      top: 0;
      right: 0;
    }

    .bottom-left {
      bottom: 0;
      left: 0;
    }

    .bottom-right {
      bottom: 0;
      right: 0;
    }

    .cta-main {
      text-align: center;
      flex: 1 1 0%;
    }

    @media (min-width: 768px) {
      .cta-main {
        text-align: left;
        order: 2;
      }
    }

    .cta-title {
      color: white;
      font-weight: bold;
      font-size: 8.25rem;
      line-height: 1.25;
      margin-bottom: 0.25rem;
    }

    .cta-highlight {
      color: #ffa300;
    }

    .cta-subtitle {
      color: white;
      font-size: 1.05rem;
      margin-bottom: 0.75rem;
      max-width: 24rem;
      margin-left: auto;
      margin-right: auto;
    }

    @media (min-width: 768px) {
      .cta-subtitle {
        margin-left: 0;
        margin-right: 0;
      }
    }

    .cta-actions {
      width: 100%;
    }

    @media (min-width: 768px) {
      .cta-actions {
        width: auto;
        order: 3;
      }
    }

    .cta-button-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25rem;
    }

    .cta-button {
      position: relative;
      z-index: 10;
      background-color: #ffa300;
      color: #023b68;
      font-weight: bold;
      font-size: 0.95rem;
      border-radius: 9999px;
      padding: 0.5rem 1.25rem;
      outline: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .cta-button:hover {
      background-color: #FFC107;
      transform: scale(1.05);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .cta-button:focus {
      box-shadow: 0 0 0 2px rgba(255, 214, 0, 0.5);
    }

    .cta-button-icon {
      margin-left: 0.25rem;
    }

    .cta-note {
      color: white;
      font-size: 0.625rem;
      text-align: center;
      max-width: 20rem;
      line-height: 1.25;
    }

.about-section {
      font-family: 'Inter', sans-serif;
      padding: 80px 0;
    }

    .section-header {
      padding: 0 20px;
    }

    .section-title {
      font-weight: 700;
      line-height: 1.3;
    }

    .section-subtitle {
      font-size: 1rem;
      text-transform: uppercase;
      display: inline-block;
    }

    .feature-card {
      background: #ffffff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      border: 1px solid rgba(0, 0, 0, 0.03);
      overflow: hidden;
      margin-bottom: 10px;
    }

    .feature-card:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      transform: translateY(-2px);
    }

    .feature-header {
      display: flex;
      align-items: center;
      cursor: pointer;
      position: relative;
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 16px;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .feature-icon img {
      width: 22px;
      height: 22px;
    }

    .feature-title {
      flex: 1;
      margin: 0;
      color: #023b68;
      transition: color 0.3s ease;
    }

    .feature-arrow {
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .feature-content {
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s ease;
      padding-left: 64px;
      margin-top: 0;
      opacity: 0;
      color: #5a6d80;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    .feature-card.active .feature-content {
      max-height: 200px;
      margin-top: 12px;
      opacity: 1;
    }

    .feature-card.active .feature-arrow {
      transform: rotate(180deg);
    }

    .about-image-container {
      position: relative;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (max-width: 991px) {
      .about-section {
        padding: 60px 0;
      }

      .section-title {
        font-size: 2rem;
      }

      .feature-card {
        padding: 18px;
      }

      .feature-title {
        font-size: 1.2rem !important;
      }
    }

    @media (max-width: 767px) {
      .feature-card {
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
      }
    }

/* Modern responsive styles */
    .core-values-area {
      transition: all 0.3s ease;
    }

    .accordion-button:not(.collapsed) {
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .accordion-button::after {
      background-size: 1rem;
    }

    .accordion-card {
      transition: transform 0.2s ease;
    }

    .accordion-card:hover {
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .core-values-area {
        padding: 50px 0 !important;
      }

      .accordion-button {
        padding: 12px 15px !important;
        font-size: 0.9rem;
      }

      .accordion-number {
        width: 25px !important;
        height: 25px !important;
        font-size: 0.8rem;
      }
    }

/* Modern Testimonial Styles */
    .testimonial-modern {
      position: relative;
      z-index: 1;
    }

    .testimonial-bg-elements {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: -1;
      overflow: hidden;
    }

    .bg-circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 127, 0, 0.05);
    }

    .bg-circle-1 {
      width: 400px;
      height: 400px;
      top: -150px;
      left: -150px;
    }

    .bg-circle-2 {
      width: 600px;
      height: 600px;
      bottom: -300px;
      right: -200px;
      background: rgba(1, 34, 69, 0.03);
    }

    .bg-wave {
      position: absolute;
      width: 100%;
      height: 150px;
      bottom: 0;
      left: 0;
      background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23ffffff" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23ffffff" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"/></svg>');
      background-size: cover;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #012245;
      margin-bottom: 2.5rem;
      position: relative;
    }

    .title-highlight {
      position: relative;
      display: inline-block;
    }

    .title-underline {
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 100%;
      height: 8px;
    }

/* Articles Section */
.articles-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}
.article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.article-img {
  position: relative;
  overflow: hidden;
  padding-top: 65%; /* aspect ratio */
}
.article-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .article-img img {
  transform: scale(1.05);
}
.article-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #FF5E00;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 2;
}
.article-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.article-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 12px;
}
.article-meta i {
  color: #FF5E00;
  margin-right: 5px;
}
.article-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}
.article-title a {
  color: #023b68;
  text-decoration: none;
  transition: color 0.3s ease;
}
.article-title a:hover {
  color: #FF5E00;
}
.article-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.article-footer {
  margin-top: auto;
}
.article-btn {
  color: #023b68;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}
.article-btn i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.article-btn:hover {
  color: #FF5E00;
}
.article-btn:hover i {
  transform: translateX(5px);
}    .floating-animation {
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-20px);
      }
    }

    .floating-dots {
      position: absolute;
      border-radius: 50%;
      background: #FF7F00;
      opacity: 0.2;
      z-index: 1;
    }

    .floating-dots-1 {
      width: 30px;
      height: 30px;
      top: -15px;
      left: -15px;
      animation: float-dots-1 8s ease-in-out infinite;
    }

    .floating-dots-2 {
      width: 20px;
      height: 20px;
      bottom: 30px;
      right: -10px;
      animation: float-dots-2 7s ease-in-out infinite;
    }

    .floating-shapes {
      position: absolute;
      background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="%23012245" stroke-width="2" stroke-dasharray="5,5"/></svg>');
      width: 60px;
      height: 60px;
      z-index: 1;
    }

    .floating-shapes-1 {
      bottom: -30px;
      left: 30px;
      animation: float-shapes 9s ease-in-out infinite;
      opacity: 0.15;
    }

    @keyframes float-dots-1 {

      0%,
      100% {
        transform: translate(0, 0);
      }

      25% {
        transform: translate(10px, 15px);
      }

      50% {
        transform: translate(20px, 5px);
      }

      75% {
        transform: translate(5px, 20px);
      }
    }

    @keyframes float-dots-2 {

      0%,
      100% {
        transform: translate(0, 0);
      }

      25% {
        transform: translate(-5px, 10px);
      }

      50% {
        transform: translate(-10px, 5px);
      }

      75% {
        transform: translate(-15px, 15px);
      }
    }

    @keyframes float-shapes {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      25% {
        transform: translate(10px, 5px) rotate(5deg);
      }

      50% {
        transform: translate(5px, 10px) rotate(10deg);
      }

      75% {
        transform: translate(15px, 5px) rotate(5deg);
      }
    }

    .testimonial-carousel {
      position: relative;
      padding-bottom: 60px;
    }

    .testimonial-card {
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(1, 34, 69, 0.08);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .swiper-slide-active .testimonial-card {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(1, 34, 69, 0.12);
    }

    .quote-mark {
      position: absolute;
      top: 20px;
      right: 30px;
      opacity: 0.1;
      z-index: 0;
    }

    .rating-stars {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .stars {
      color: #FFD700;
      font-size: 18px;
      letter-spacing: 2px;
    }

    .rating-line {
      height: 2px;
      width: 40px;
      background: linear-gradient(90deg, #FF7F00, transparent);
      margin-left: 15px;
    }

    .testimonial-text {
      font-size: 18px;
      line-height: 1.7;
      color: #4a5568;
      position: relative;
      z-index: 1;
      margin-bottom: 30px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
    }

    .author-avatar {
      flex-shrink: 0;
      margin-right: 15px;
    }

    .author-avatar img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #FF7F00;
      padding: 2px;
      box-shadow: 0 5px 15px rgba(255, 127, 0, 0.2);
    }

    .author-info h6 {
      color: #012245;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .author-info span {
      color: #718096;
      font-size: 14px;
    }

    .testimonial-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 30px;
    }

    .swiper-pagination {
      position: relative;
      bottom: auto;
      left: auto;
      width: auto;
    }

    .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background: rgba(1, 34, 69, 0.2);
      opacity: 1;
      transition: all 0.3s ease;
    }

    .swiper-pagination-bullet-active {
      background: #FF7F00;
      width: 30px;
      border-radius: 5px;
    }

    .swiper-nav-btns {
      display: flex;
      gap: 10px;
    }

    .swiper-button-prev,
    .swiper-button-next {
      width: 50px;
      height: 50px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #012245;
      box-shadow: 0 5px 15px rgba(1, 34, 69, 0.1);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
      background: #FF7F00;
      color: white;
      transform: translateY(-3px);
    }

    /* Responsive Styles */
    @media (max-width: 1199.98px) {
      .section-title {
        font-size: 2.2rem;
      }

      .testimonial-text {
        font-size: 17px;
      }
    }

    @media (max-width: 991.98px) {
      .testimonial-modern {
        padding: 60px 0;
      }

      .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
      }

      .title-underline {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
      }

      .student-img-container {
        margin-bottom: 40px;
        max-width: 400px;
      }
    }

    @media (max-width: 767.98px) {
      .testimonial-card {
        padding: 30px;
      }

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

      .author-avatar img {
        width: 50px;
        height: 50px;
      }
    }

    @media (max-width: 575.98px) {
      .testimonial-modern {
        padding: 50px 0;
      }

      .section-title {
        font-size: 1.8rem;
      }

      .testimonial-nav {
        flex-direction: column;
        gap: 20px;
      }

      .swiper-pagination {
        margin-bottom: 15px;
      }
    }

/* Modern Color Palette */
    :root {
      --primary-orange: #FF5E00;
      --primary-blue: #012245;
      --light-orange: #FFEEE6;
      --light-blue: #F0F5FF;
      --dark-blue: #011A38;
    }

    /* Base Styles */
    .modern-school-section {
      padding: 3rem 1rem;
      background: white;
      position: relative;
      overflow: hidden;
    }

    .section-header {
      text-align: center;
      margin-bottom: 2.5rem;
      position: relative;
    }

    .sub-title {
      color: var(--primary-orange);
      display: block;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
    }

    .sec-title {
      color: var(--primary-blue);
      margin: 0;
      font-size: 2.2rem;
      font-weight: 700;
      position: relative;
      display: inline-block;
    }

    /* Video Grid */
    .video-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      padding: 0 1rem;
    }

    /* Modern Video Card */
    .video-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(1, 34, 69, 0.08);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      border: 1px solid rgba(1, 34, 69, 0.05);
    }

    .video-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(1, 34, 69, 0.12);
    }

    .video-embed {
      position: relative;
      padding-bottom: 56.25%;
      background: var(--light-blue);
    }

    .video-embed iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .video-info {
      padding: 1.2rem;
    }

    .video-meta {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0.8rem;
      font-size: 0.85rem;
      color: #666;
    }

    .video-info h3 {
      margin: 0 0 1rem 0;
      font-size: 1.1rem;
      color: var(--primary-blue);
      line-height: 1.4;
    }

    .watch-btn {
      display: inline-block;
      padding: 0.5rem 1.2rem;
      background: var(--light-orange);
      color: var(--primary-orange);
      text-decoration: none;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.2s;
    }

    .watch-btn:hover {
      background: var(--primary-orange);
      color: white;
    }

    /* Modern Button */
    .modern-btn {
      display: inline-flex;
      align-items: center;
      padding: 0.8rem 2rem;
      background: linear-gradient(135deg, var(--primary-orange), #FF4500);
      color: white;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 600;
      font-size: 1rem;
      box-shadow: 0 4px 12px rgba(255, 94, 0, 0.25);
      transition: all 0.3s;
      margin-top: 1rem;
    }

    .modern-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(255, 94, 0, 0.3);
      background: linear-gradient(135deg, #FF6A00, #FF3000);
    }

    .modern-btn i {
      margin-left: 0.5rem;
      font-size: 0.9rem;
    }

    /* Social Media Buttons */
    .social-buttons-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
    }

    .social-button {
      display: inline-flex;
      align-items: center;
      padding: 12px 25px;
      border-radius: 30px;
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .social-button i {
      margin-right: 10px;
      font-size: 1.2rem;
    }

    .social-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .social-button.tiktok {
      background: linear-gradient(135deg, #25F4EE, #000000);
    }

    .social-button.instagram {
      background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
      background-size: 300% 300%;
      animation: gradient 4s ease infinite;
    }

    @keyframes gradient {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    /* Mobile Slider */
    @media (max-width: 768px) {
      .video-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 1rem;
      }

      .video-container::-webkit-scrollbar {
        display: none;
      }

      .video-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        margin-right: 1.5rem;
      }

      .sec-title {
        font-size: 1.8rem;
      }

      .social-buttons-container {
        flex-direction: column;
        align-items: center;
      }

      .social-button {
        width: 80%;
        justify-content: center;
      }
    }

