/* ===================================
   CSS Variables (Color Theme)
   =================================== */
   :root {
    /* Primary Brand Colors */
    --primary: #15966F;
    --primary-dark: #0D6B4F;
    --primary-darker: #084432;
    --primary-light: #A5D8C8;
    --primary-lighter: #E0F2ED;
    
    /* Accent Colors */
    --accent-orange: #EA6A47;
    --accent-blue: #0091D5;
    --success: #6AB187;
    --warning: #FFC107;
    --danger: #D32D41;
    --info: #0DCAF0;
    
    /* Neutral Colors */
    --text-primary: #202020;
    --text-secondary: #7E909A;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --border-color: #E0E0E0;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(21, 150, 111, 0.1);
    --shadow-md: 0 4px 12px rgba(21, 150, 111, 0.15);
    --shadow-lg: 0 8px 24px rgba(21, 150, 111, 0.2);
    
    /* Font */
    --font-primary: 'Poppins', sans-serif;
}

/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.min-vh-70 {
    min-height: 70vh;
}

.min-vh-75 {
    min-height: 75vh;
}

.min-vh-80 {
    min-height: 80vh;
}

/* ===================================
   Bootstrap Override with Variables
   =================================== */
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.bg-primary-darker {
    background-color: var(--primary-darker) !important;
}

.bg-primary-light {
    background-color: var(--primary-lighter) !important;
}

.bg-success-light {
    background-color: #E8F5EE !important;
}

.bg-warning-light {
    background-color: #FFF8E1 !important;
}

.bg-danger-light {
    background-color: #FFE5E8 !important;
}

.bg-info-light {
    background-color: #E0F7FA !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-success {
    background-color: var(--success);
    border-color: var(--success);
}

.btn-warning {
    background-color: var(--warning);
    border-color: var(--warning);
}

.shadow-primary {
    box-shadow: 0 8px 24px rgba(21, 150, 111, 0.3) !important;
}

.shadow-success {
    box-shadow: 0 8px 24px rgba(106, 177, 135, 0.3) !important;
}

.shadow-danger {
    box-shadow: 0 8px 24px rgba(211, 45, 65, 0.3) !important;
}

/* ===================================
   Gradient Buttons
   =================================== */
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: #fff;
    transition: all 0.3s;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 150, 111, 0.4);
    color: #fff;
}

.btn-success-gradient {
    background: linear-gradient(135deg, var(--success) 0%, #4A9D6F 100%);
    border: none;
    color: #fff;
    transition: all 0.3s;
}

.btn-success-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(106, 177, 135, 0.4);
    color: #fff;
}

.btn-warning-gradient {
    background: linear-gradient(135deg, var(--warning) 0%, #FF9800 100%);
    border: none;
    color: #000;
    transition: all 0.3s;
}

.btn-warning-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.4);
}

.bg-gradient-light {
    background: linear-gradient(135deg, #fff 0%, var(--primary-lighter) 50%, #fff 100%);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #fff 100%);
}

/* ===================================
   Top Header
   =================================== */
.top-header {
    font-size: 0.85rem;
    position: relative;
    z-index: 1030;
}

.top-header a {
    transition: all 0.3s;
}

.top-header a:hover {
    opacity: 0.8;
}

.social-icon-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-icon-top:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #fff;
}

.mobile-top-header a {
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s;
}

.mobile-top-header a:hover {
    opacity: 0.8;
}

/* ===================================
   Navbar
   =================================== */
.navbar {
    padding: 0.8rem 0;
    transition: all 0.3s;
    background: #fff !important;
}

.navbar-brand {
    font-size: 1.1rem;
    transition: all 0.3s;
}

.navbar.shadow-sm {
    box-shadow: var(--shadow-md) !important;
}

.navbar-light .nav-link {
    color: #333 !important;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    font-size: 0.95rem;
}

.navbar-light .nav-link:hover,
.navbar-light .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.navbar-light .nav-link:hover::after,
.navbar-light .nav-link.active::after {
    width: 70%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    border-radius: 0.3rem;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: var(--primary-lighter);
    color: var(--primary);
    transform: translateX(5px);
}

/* ===================================
   Offcanvas Mobile Menu
   =================================== */
.offcanvas-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.offcanvas-body .list-group-item {
    border: none;
    padding: 1rem;
    transition: all 0.3s;
}

.offcanvas-body .list-group-item:hover {
    background: var(--primary-lighter);
}

.offcanvas-body .list-group-item a {
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===================================
   Hero Carousel
   =================================== */
.hero-carousel-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #fff 50%, var(--primary-lighter) 100%);
    overflow: hidden;
}

.hero-slide {
    padding: 2rem 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.8rem;
}

.floating-card h5 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.floating-card small {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.card-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Owl Carousel Navigation */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    margin: 0;
}

.owl-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary) !important;
    color: #fff;
    transform: scale(1.1);
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 1.5rem;
}

.owl-carousel .owl-dot {
    width: 10px;
    height: 10px;
    background: rgba(21, 150, 111, 0.3);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s;
}

/* .owl-carousel .owl-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 10px;
} */

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    position: relative;
    margin-top: -30px;
}

.stat-card {
    transition: all 0.3s;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-weight: 700;
}

/* ===================================
   Available Slots Section
   =================================== */
.available-slots-section {
    border-top: 3px solid var(--warning);
    border-bottom: 3px solid var(--warning);
}

.available-slots-section .badge {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
}

/* ===================================
   Premium Course Cards
   =================================== */
.premium-course-card {
    background: #fff;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    position: relative;
    height: 100%;
}

.premium-course-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(21, 150, 111, 0.25);
}

.course-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.premium-course-card:hover .course-image {
    transform: scale(1.1);
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.premium-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #D32D41 0%, #FF4757 100%);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(211, 45, 65, 0.4);
}

.premium-badge.bg-success {
    background: linear-gradient(135deg, var(--success) 0%, #4A9D6F 100%);
}

.premium-badge.bg-warning {
    background: linear-gradient(135deg, var(--warning) 0%, #FF9800 100%);
    color: #000;
}

.premium-card-body {
    padding: 1.5rem;
}

.course-title {
    font-weight: 700;
    color: var(--text-primary);
}

.course-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

.badge-custom {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.bg-danger-gradient {
    background: linear-gradient(135deg, #D32D41 0%, #FF4757 100%);
    color: #fff;
}

.bg-success-gradient {
    background: linear-gradient(135deg, var(--success) 0%, #4A9D6F 100%);
    color: #fff;
}

.bg-warning-gradient {
    background: linear-gradient(135deg, var(--warning) 0%, #FF9800 100%);
    color: #000;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.course-features {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background: var(--primary-lighter);
    border-radius: 0.7rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.featured-premium {
    border: 2px solid var(--primary-light);
}

.urgent-course {
    animation: pulse 2s infinite;
}

.urgent-banner {
    position: absolute;
    top: 40px;
    right: -35px;
    background: linear-gradient(135deg, #D32D41 0%, #FF4757 100%);
    color: #fff;
    padding: 0.4rem 2.5rem;
    transform: rotate(45deg);
    font-weight: 700;
    z-index: 11;
    box-shadow: 0 4px 12px rgba(211, 45, 65, 0.5);
    font-size: 0.75rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(21, 150, 111, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(21, 150, 111, 0);
    }
}

.countdown-badge {
    background: rgba(211, 45, 65, 0.1);
    color: var(--danger);
    padding: 0.35rem 0.7rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.blink-badge {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

/* ===================================
   Why Choose Section
   =================================== */
.why-choose-section {
    position: relative;
}

.image-stack {
    position: relative;
    padding-left: 2rem;
    padding-top: 2rem;
}

.image-stack .main-image {
    width: 100%;
    border-radius: 1.2rem;
    box-shadow: var(--shadow-lg);
}

.image-stack .overlay-image {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 55%;
    border-radius: 1.2rem;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
}

.experience-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.experience-badge h3 {
    font-size: 2.5rem;
    margin: 0;
}

.feature-box {
    text-align: center;
    padding: 1.2rem;
    background: #fff;
    border-radius: 0.8rem;
    transition: all 0.3s;
    height: 100%;
}

.feature-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-icon {
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

/* ===================================
   Course Cards Simple
   =================================== */
.course-card-simple {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.course-card-simple:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.course-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.35rem 0.8rem;
    border-radius: 2rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}

.course-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.section-header {
    position: relative;
}

.section-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================
   Testimonials
   =================================== */
.testimonial-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    margin: 0.8rem;
    height: auto;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    color: var(--primary-lighter);
    opacity: 0.5;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    flex-grow: 1;
}

.avatar-testimonial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===================================
   Features Modern
   =================================== */
.feature-card-modern {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    height: 100%;
}

.feature-card-modern:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.feature-icon-modern {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto;
}

/* ===================================
   Steps
   =================================== */
.step-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    position: relative;
    height: 100%;
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

/* ===================================
   Subjects
   =================================== */
.subject-box {
    background: #fff;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    cursor: pointer;
}

.subject-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    background: var(--primary);
    color: #fff;
}

.subject-box i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.3s;
}

.subject-box:hover i {
    color: #fff;
}

.subject-box h6 {
    font-weight: 600;
    margin-top: 0.8rem;
}

/* ===================================
   Blog Cards
   =================================== */
.blog-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    padding: 0.6rem 0.8rem;
    border-radius: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
}

.blog-content {
    padding: 1.2rem;
}

.blog-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===================================
   FAQ
   =================================== */
.accordion-item {
    border-radius: 0.7rem !important;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.accordion-button {
    background: #fff;
    color: var(--text-primary);
    font-weight: 600;
    padding: 1rem 1.2rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-lighter);
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-light);
}

.accordion-body {
    padding: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Enquiry Form
   =================================== */
.enquiry-form-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(21, 150, 111, 0.15);
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    padding: 0.7rem 1rem;
    border-radius: 0.7rem;
    transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(21, 150, 111, 0.1);
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.4rem;
}

/* ===================================
   CTA Banner
   =================================== */
.cta-banner-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

/* ===================================
   Footer
   =================================== */
.footer-section {
    background: #1a1a1a;
}

.footer-brand img {
    filter: brightness(0) invert(1);
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-contact li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.footer-contact a:hover {
    color: #fff;
}

.social-icon-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
}

.social-icon-footer:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(21, 150, 111, 0.4);
    color: #fff;
}

/* ===================================
   Scroll Top Button
   =================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(21, 150, 111, 0.4);
}

.scroll-top-btn.show {
    display: flex;
}

/* ===================================
   WhatsApp Float
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 85px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float1 {
    position: fixed;
    bottom: 85px;
    left: 25px;
    width: 55px;
    height: 55px;
    background: #F56040;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(211, 72, 37, 0.4);
    animation: pulse-whatsapp1 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}
@keyframes pulse-whatsapp1 {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(211, 118, 37, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}
.whatsapp-float1:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .display-3 {
        font-size: 2.2rem;
    }
    
    .display-4 {
        font-size: 1.8rem;
    }
    
    .display-5 {
        font-size: 1.6rem;
    }
    
    .display-6 {
        font-size: 1.4rem;
    }
    
    .hero-slide {
        padding: 1.5rem 0;
    }
    
    .stat-card {
        margin-bottom: 0.8rem;
    }
    
    .image-stack {
        padding-left: 0;
        padding-top: 0;
    }
    
    .image-stack .overlay-image {
        display: none;
    }
    
    .floating-card {
        position: static;
        margin-top: 1rem;
        animation: none;
        display: inline-flex;
    }
    
    .navbar-nav {
        background: #fff;
        padding: 1rem;
    }
    
    .nav-item {
        margin: 0.4rem 0;
    }
}

@media (max-width: 768px) {
    .py-4 {
        padding: 2.5rem 0 !important;
    }
    
    .py-5 {
        padding: 3rem 0 !important;
    }
    
    .hero-section {
        padding: 1rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .premium-course-card {
        margin-bottom: 1.5rem;
    }
    
    .feature-card-modern,
    .step-card,
    .subject-box {
        margin-bottom: 1.2rem;
    }
    
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 75px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    .whatsapp-float1 {
        bottom: 75px;
        left: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        padding: 0.7rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .lead {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .course-title {
        font-size: 1.1rem;
    }
    
    .display-4 {
        font-size: 1.6rem;
    }
    
    .display-5 {
        font-size: 1.4rem;
    }
    
    .enquiry-form-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        min-height: auto;
        padding: 1.5rem;
    }
}

/* ===================================
   Utilities
   =================================== */
.rounded-3 {
    border-radius: 0.8rem !important;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.fw-bold {
    font-weight: 600 !important;
}

.fw-semibold {
    font-weight: 500 !important;
}

.shadow-hover {
    transition: all 0.3s;
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg) !important;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
