:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-blue: #0a192f;
    --light-blue: #112240;
    --accent-color: #64ffda;
}

body {
    font-family: 'Baloo Bhaijaan 2', cursive;
    background-color: #f8f9fa;
    line-height: 1.8;
}

/* Scroll Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    z-index: 10000;
    width: 100%;
    height: 4px;
    background: transparent;
}

.progress-bar {
    height: 4px;
    background: var(--accent-color);
    width: 0%;
}

/* Carousel Styling */
.carousel-item {
    height: 500px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    bottom: 20%;
}

/* Glassmorphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Hover Effects Refined */
.hover-scale {
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Update path to relative if needed, but keeping absolute URL for now or update in future steps */
    background: url('../img/hero-bg.jpg');
    opacity: 0.1;
    background-size: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.btn-custom {
    background-color: var(--accent-color);
    color: var(--dark-blue);
    font-weight: 700;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.4);
}

/* Cards Hover Effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    /* Removed transform/left hack which breaks in RTL */
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* White title separator for dark backgrounds */
.section-title.text-white::after {
    background-color: #fff !important;
}

/* Members Avatar */
.member-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

/* Resources Buttons */
.resource-btn {
    width: 100%;
    text-align: right;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}