﻿:root {
    --orange: #FF8C00;
    --dark-orange: #E67A00;
    --black: #1a1a1a;
    --light-bg: #fffaf5;
}

:root { --orange: #FF8C00; }
.hover-lift:hover { transform: translateY(-10px); transition: 0.3s; }
.italic { font-style: italic; }
.carousel-item img { max-height: 400px; object-fit: cover; }
@media (max-width: 768px) { .hero h1 { font-size: 2.5rem !important; } }

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: var(--light-bg); }
.logo-img { height: 45px; width: auto; margin-right: 10px; }
.brand-text { font-weight: bold; font-size: 1.5rem; color: white !important; }
.navbar { background: linear-gradient(135deg, var(--orange), var(--dark-orange)) !important; box-shadow: 0 2px 10px rgba(255,140,0,0.3); }
.nav-link { color: white !important; font-weight: 500; transition: all 0.3s; }
.nav-link:hover { color: var(--orange) !important; background: rgba(255,255,255,0.2); border-radius: 5px; }

/* HERO SECTION */
.hero { 
    background: linear-gradient(rgba(255,140,0,0.9), rgba(26,26,26,0.8)), url('hero-bg.jpg'); 
    background-size: cover; 
    color: white; 
    padding: 150px 0 100px; 
    text-align: center; 
}
.hero h1 { font-size: 3.5rem; font-weight: bold; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero p { font-size: 1.3rem; }
.hero { min-height: 100vh; } /* Prevents mobile collapse */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem !important; }
    .hero .lead { font-size: 1.2rem !important; }
}

/* CARDS */
.card { border: none; box-shadow: 0 10px 30px rgba(255,140,0,0.2); border-radius: 15px; transition: transform 0.3s; }
.card:hover { transform: translateY(-10px); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .navbar-brand { font-size: 1.2rem; }
}
.btn-orange { background: var(--orange); color: white; border: none; border-radius: 50px; font-weight: 600; }
.btn-orange:hover { background: var(--dark-orange); transform: translateY(-2px); }
.text-orange { color: var(--orange) !important; }
.bg-orange { background: var(--orange) !important; }
.card { transition: all 0.3s ease; border-radius: 20px; }
.mentor-img { width: 150px; height: 150px; object-fit: cover; border: 5px solid var(--orange); }
.video-card iframe { border-radius: 15px; }
/* compensate for fixed-top navbar height */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light-bg);
    padding-top: 80px;   /* adjust 70–90px depending on navbar height */
}

/* testimonial */
.testimonial-marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonial-marquee {
  display: flex;
  width: max-content;
  animation: testimonial-marquee 40s linear infinite;
}

.testimonial-item {
  flex: 0 0 350px; /* card width, adjust as needed */
  margin-right: 1.5rem;
}

/* pause on hover */
.testimonial-marquee-wrapper:hover .testimonial-marquee {
  animation-play-state: paused;
}

@keyframes testimonial-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* toppers marquee */
.toppers-marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.toppers-marquee {
  display: flex;
  width: max-content;
  align-items: center;
  animation: toppers-marquee 40s linear infinite; /* change 40s for speed */
}

.topper-item {
  flex: 0 0 180px; /* width of each topper block */
  margin-right: 1.5rem;
}

/* pause scroll on hover */
.toppers-marquee-wrapper:hover .toppers-marquee {
  animation-play-state: paused;
}

@keyframes toppers-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* WhatsApp messagge buttun design here stylesheetslokkslike */
#wa-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

/* round floating button */
#wa-chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* balloon chat box */
#wa-chat-box {
    width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    position: absolute;
    bottom: 75px;
    right: 0;
    display: none;
    overflow: hidden;
}

    #wa-chat-box .wa-header {
        background: #25D366;
        color: #fff;
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
    }

        #wa-chat-box .wa-header #wa-close {
            cursor: pointer;
        }

    #wa-chat-box .wa-body {
        padding: 12px;
        font-size: 14px;
    }

        #wa-chat-box .wa-body a {
            display: inline-block;
            margin-top: 10px;
            background: #25D366;
            color: #fff;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 6px;
            font-weight: bold;
        }
