 :root {
    --primary-color: #2E8B57;
    --secondary-color: #DAA520;
    --accent-color: #8B4513;
    --success-color: #228B22;
    --info-color: #4682B4;
    --warning-color: #FF8C00;
    --light-bg: #F8F9FA;
}
.logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--brand-gold);
    object-fit: cover;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .16);
    flex: 0 0 auto;
}
/* Enhanced Typography */
.arabic-font {
    font-family: 'Amiri', serif;
}

.bangla-font {
    font-family: 'Nunito', sans-serif;
}

/* Modern Gradients */
.gradient-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--info-color) 100%);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Cards */
.enhanced-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.enhanced-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Countdown Timer */
.countdown-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 60px 0;
    color: white;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 15px;
    border-radius: 15px;
    margin: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Statistics Animation */
.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px 10px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.stat-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Enhanced Buttons */
.btn-enhanced {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-enhanced:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-enhanced:hover:before {
    left: 100%;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 150px;
    right: 28px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Enhanced Facility Cards */
.facility-card-enhanced {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.facility-card-enhanced:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--secondary-color);
    transition: width 0.4s ease;
}

.facility-card-enhanced:hover:before {
    width: 100%;
}

.facility-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive Brand Name */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 28px !important;
        line-height: 1.2;
    }

    .brand-line {
        display: block;
        font-size: 14px !important;
        line-height: 1.1;
    }
}

.brand-line {
    display: inline-block;
    line-height: 1;
}

/* Enhanced Hero Section
    .hero-enhanced {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-enhanced:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,20 50,40 100,20 150,40 200,20 250,40 300,20 350,40 400,20 450,40 500,20 550,40 600,20 650,40 700,20 750,40 800,20 850,40 900,20 950,40 1000,20 1000,100 0,100"/></svg>') repeat-x;
      animation: wave 20s linear infinite;
    }

    @keyframes wave {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-100px);
      }
    } */
/* Enhanced Hero Section - Islamic Green Traditional */
/* WORKING Traditional Islamic Background */
.hero-enhanced {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a36 50%, #4a7c59 100%) !important;
    background-size: 400% 400% !important;
    min-height: 600px !important;
    position: relative !important;
    animation: gradientShift 15s ease infinite !important;
}

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

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

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




/* Program Badges */
.program-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 5px;
}

/* Enhanced Navigation */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 100%;
    left: 0;
}

/* Enhanced Class Cards */
.class-card-enhanced {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: none;
}

.class-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Registration Form Enhancement */
.registration-form {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 20px;
    padding: 40px;
}

/* Team Card Enhancement */
/* .team-card-enhanced {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.team-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.curriculum-details {
    min-height: 140px;
}

.pricing-section {
    border-top: 3px solid var(--primary-color);
}

.facility-card-enhanced {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-section h3 {
    font-size: 1.8rem;
    font-weight: bold;
} */
