@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary: #55161A;
    --secondary: #049331;
    --accent: #E6B12E;
    --light-bg: #F8F5F0;
    --light-bg2: #f0f5f9;
    --white: #ffffff;
    --dark: #1e1e1e;
    --gray: #6c757d;
    --soft-shadow: 0 20px 35px -12px rgba(85, 22, 26, 0.08);
    --hover-shadow: 0 30px 45px -14px rgba(4, 147, 49, 0.22);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --font-title: 'DM Sans', sans-serif;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
}

/* ===== HEADER STYLES (Your existing header CSS) ===== */
.header-wrap {
    background: white;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(85, 22, 26, 0.14);
}

.logo {
    width: 320px;
    padding: 8px 0;
}

@media screen and (max-width: 991px) {
    .logo {
        width: 260px;
    }
}

.nav-link {
    font-weight: 600;
    color: #2d2d2d;
    margin: 0 0.3rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--secondary);
    transition: all 0.3s ease-out;
    transform: translateX(-50%);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* ===== DROPDOWN STYLES ===== */
.dropdown-toggle::after {
    display: none !important;
}

.dropdown-icon {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-item.dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: var(--transition);
        border: none;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        border-radius: 12px;
        padding: 0.8rem 0;
        min-width: 220px;
        border-top: 3px solid var(--secondary);
    }

    .dropdown-item {
        font-weight: 500;
        padding: 0.6rem 1.5rem;
        transition: all 0.3s ease;
    }

    .dropdown-item:hover {
        background-color: rgba(4, 147, 49, 0.05);
        color: var(--secondary);
        padding-left: 1.8rem;
    }

    .dropdown-item.active, 
    .dropdown-item:active {
        background-color: var(--secondary);
        color: var(--white);
    }
}

/* Mobile Dropdown Fix */
@media (max-width: 991px) {
    .dropdown-menu {
        background-color: #fcfcfc;
        border: none;
        box-shadow: none;
        padding: 0.5rem 0;
        margin-top: 0;
        border-left: 3px solid var(--secondary);
        border-radius: 0 10px 10px 0;
    }

    .dropdown-item {
        padding: 0.8rem 1.5rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .dropdown-item.active, 
    .dropdown-item:active {
        background-color: var(--secondary);
        color: var(--white);
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-toggle {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-icon {
        transition: transform 0.3s ease;
    }

    .dropdown-toggle.show .dropdown-icon {
        transform: rotate(180deg);
    }
}

/* ===== BUTTON STYLES (Your existing button CSS) ===== */
.btn-wa-blink {
    background-color: var(--secondary);
    color: white;
    border-radius: 50px;
    padding: 0.6rem 2rem;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 18px rgba(4, 147, 49, 0.25);
}

.btn-wa-blink:hover {
    background-color: #037a28;
    color: white;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 28px rgba(4, 147, 49, 0.4);
}

.blink-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-blink 1.4s infinite;
}

@keyframes pulse-blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blink-animation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/* ===== TOP INFO BAR ===== */
.top-info-bar {
    background: var(--primary);
    color: white;
    padding: 10px 0;
    display: block;
}

.top-info-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.top-info-bar span {
    font-size: 0.9rem;
    font-weight: 500;
}

.top-info-bar .btn-join {
    background: var(--secondary);
    color: white;
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    animation: blink-animation 1s infinite;
}

.top-info-bar .btn-join:hover {
    background: #037a28;
    color: white;
    transform: scale(1.05);
    animation-play-state: paused;
}

/* ===== HERO SECTION - REDESIGNED ===== */
.hero-section {
    padding: 3rem 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(4, 147, 49, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge .badge-pill {
    background: rgba(4, 147, 49, 0.1);
    color: var(--secondary);
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    border: 1px solid rgba(4, 147, 49, 0.2);
    box-shadow: 0 4px 15px rgba(4, 147, 49, 0.05);
    transition: var(--transition);
}

.hero-badge .badge-pill:hover {
    background: rgba(4, 147, 49, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(4, 147, 49, 0.1);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.hero-cta {
    margin: 2rem 0;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, #6e1c22 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(85, 22, 26, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(85, 22, 26, 0.4);
    color: white;
}

.btn-secondary-custom {
    background: linear-gradient(135deg, var(--secondary) 0%, #01852b 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.btn-secondary-custom:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-5px);
}

.hero-card {
    background: rgba(255, 151, 160, 0.1);
    border-radius: 40px;
    padding: 2.5rem 2rem;
    box-shadow: 0 30px 60px -20px rgba(85, 22, 26, 0.2);
    position: relative;
    border: 1px solid rgba(4, 147, 49, 0.1);
}

.quran-verse {
    text-align: center;
    position: relative;
}

.verse-icon {
    font-size: 3rem;
    color: var(--secondary);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.arabic-text {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-arabic);
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.verse-translation {
    font-size: 1.1rem;
    font-style: italic;
    border-left: 4px solid var(--secondary);
    padding-left: 1.5rem;
    text-align: left;
}

.verse-translation span {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: var(--primary);
    font-style: normal;
}

.verse-decoration {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    margin: 2rem auto 1rem;
}

.teacher-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(128, 249, 166, 0.2);
    border-radius: 50px;
}

.teacher-avatars {
    display: flex;
    align-items: center;
}

.teacher-avatars i {
    font-size: 2rem;
    color: var(--primary);
    margin-right: -10px;
    background: white;
    border-radius: 50%;
}

.teacher-count {
    background: var(--secondary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    margin-left: 5px;
}

/* New Hero Image Styles */
.hero-image-wrapper {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(85, 22, 26, 0.3);
    border: 8px solid white;
    transition: var(--transition);
    animation: float-hero 6s ease-in-out infinite;
    background: white;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

@keyframes float-hero {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    animation: float-hero 6s ease-in-out infinite reverse;
}

.floating-badge i {
    font-size: 2rem;
    color: var(--secondary);
}

.floating-badge .badge-text h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
}

.floating-badge .badge-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray);
}

.teacher-highlight p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
}

/* Mobile Fix */
@media (max-width: 576px) {
    .teacher-highlight {
        flex-direction: column;
        align-items: center;
        border-radius: 20px;
    }

    .teacher-highlight p {
        text-align: center;
        font-size: 0.9rem;
    }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    background: rgba(4, 147, 49, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title .highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(4, 147, 49, 0.1);
    z-index: -1;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== COURSES SECTION ===== */
.courses-section {
    padding: 5rem 0;
    background: white;
}

.course-card-modern {
    background: rgb(252, 246, 246);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.course-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(4, 147, 49, 0.1);
}

.course-card-modern.popular {
    border: 2px solid var(--secondary);
    box-shadow: 0 20px 40px -15px rgba(4, 147, 49, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.course-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(4, 147, 49, 0.1) 0%, rgba(85, 22, 26, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.course-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary);
}

.course-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.course-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.course-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-features i {
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.course-level {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
    background: rgba(4, 147, 49, 0.08);
    padding: 0.3rem 1rem;
    border-radius: 30px;
}

.course-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.course-link:hover {
    color: var(--secondary);
    gap: 0.8rem;
}

.btn-view-all {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* ===== DASHBOARD SECTION ===== */
.dashboard-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff 0%, var(--light-bg) 100%);
}

.dashboard-content {
    padding-right: 3rem;
}

.feature-badge {
    background: var(--secondary);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.dashboard-desc {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.2rem;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(4, 147, 49, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.feature-list-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.feature-list-item p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.btn-demo {
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(85, 22, 26, 0.2);
}

.btn-demo:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-5px);
}

.dashboard-mockup-modern {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 70px -20px rgba(85, 22, 26, 0.3);
    border: 1px solid rgba(4, 147, 49, 0.1);
}

.mockup-header {
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.mockup-dots span:first-child {
    background: #ff5f56;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:last-child {
    background: #27c93f;
}

.streak-indicator i {
    color: var(--accent);
    font-size: 1.5rem;
}

.recent-activity h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(4, 147, 49, 0.03);
    border-radius: 10px;
}

.activity-item i {
    color: var(--secondary);
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
    padding: 5rem 0;
    background: var(--light-bg2);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.community-post-card {
    background: white;
    border-radius: 25px;
    padding: 1.5rem;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    border-left: 5px solid transparent;
}

.community-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-left-color: var(--secondary);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-header i {
    font-size: 2.5rem;
    color: var(--primary);
}

.post-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
}

.post-header span {
    font-size: 0.85rem;
    color: var(--gray);
}

.post-content {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.post-footer {
    display: flex;
    gap: 1.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.post-footer i {
    margin-right: 0.3rem;
    color: var(--secondary);
}

.btn-whatsapp-community {
    background: #25D366;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-community:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(37, 211, 102, 0.4);
}

/* ===== INSTRUCTORS SECTION ===== */
.instructors-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff 0%, var(--light-bg) 100%);
}

.instructor-card-modern {
    background: rgb(252, 246, 246);
    border-radius: 30px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
}

.instructor-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(4, 147, 49, 0.1);
}

.instructor-image {
    width: 120px;
    height: 120px;
    background: var(--light-bg2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--secondary);
}

.instructor-image i {
    font-size: 4rem;
    color: var(--primary);
}

.instructor-card-modern h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.instructor-title {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== SCHOLARSHIP SECTION ===== */
.scholarship-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
}

.scholarship-content-modern {
    padding-right: 3rem;
}

.scholarship-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.scholarship-desc {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.6rem;
}

.btn-sponsor {
    background: linear-gradient(135deg, var(--secondary) 0%, #037a28 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    box-shadow: 0 15px 30px rgba(4, 147, 49, 0.3);
}

.btn-sponsor:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(4, 147, 49, 0.4);
    color: white;
}

.scholarship-visual {
    background: white;
    border-radius: 40px;
    padding: 2rem;
    box-shadow: 0 30px 60px -20px rgba(85, 22, 26, 0.2);
}

.visual-card {
    text-align: center;
}

.visual-card i {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.visual-card h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.supporter-list {
    background: rgba(4, 147, 49, 0.05);
    padding: 1.5rem;
    border-radius: 20px;
}

.supporter {
    padding: 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--dark);
}

.supporter:last-child {
    border-bottom: none;
}

/* ===== WHY US SECTION ===== */
.whyus-section {
    padding: 5rem 0;
    background: var(--light-bg2);
}

.why-card {
    background: white;
    border-radius: 30px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(4, 147, 49, 0.1) 0%, rgba(85, 22, 26, 0.05) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.why-card p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--light-bg2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card-modern {
    background: white;
    height: auto;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.testimonial-card-modern.featured {
    background: linear-gradient(135deg, white 0%, rgba(4, 147, 49, 0.02) 100%);
    border: 1px solid rgba(4, 147, 49, 0.1);
}

.rating {
    margin-bottom: 1rem;
}

.rating i {
    color: #ffb347;
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author i {
    font-size: 2.5rem;
    color: var(--primary);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.testimonials-slider .testimonial-card-modern {
    margin: 0 10px 30px;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-carousel .owl-item {
    display: flex;
}

/* Owl Nav Container */
.testimonials-slider .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    gap: 10px;
}

/* Buttons */
.testimonials-slider .owl-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary) !important;
    color: #fff !important;
    border: none;
    font-size: 18px;
    transition: 0.3s;
}

/* Hover */
.testimonials-slider .owl-nav button:hover {
    background: var(--secondary) !important;
    transform: translateY(-3px);
}

/* Disabled state */
.testimonials-slider .owl-nav button.disabled {
    opacity: 0.4;
}

.testimonials-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.testimonials-slider .owl-nav button {
    margin: 0 10px;
}

@media (max-width: 768px) {
    .testimonials-slider .owl-nav {
        display: none;
    }
}

/* ===== VIDEO TESTIMONIALS SECTION ===== */

.video-testimonials-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.student-video-bg {
    background: var(--light-bg2);
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.video-testimonial-card {
    background: white;
    border-radius: 30px;
    padding: 0.8rem;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.video-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.video-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
}

.video-info p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0.3rem 0 0 0;
}


.pain-point-section {
    padding: 5rem 0;
    background: var(--light-bg2);
}

.pain-point-cta {
    color: var(--primary);
    text-align: center;
}

.pain-point-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pain-point-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--secondary);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #037a28;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
}

.blink-dot-large {
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-blink 1.2s infinite;
}

/* ===== BLOGS SECTION ===== */
.blogs-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.blogs-slider .owl-stage-outer {
    padding-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    margin: 5px;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(4, 147, 49, 0.1);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.8rem;
}

.blog-meta i {
    color: var(--secondary);
    margin-right: 0.3rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-title a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--secondary);
}

.blog-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-read-more {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    margin-top: auto;
}

.btn-read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-read-more:hover {
    color: var(--secondary);
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* Custom Owl Nav for Blogs */
.blogs-slider .owl-nav {
    display: flex;
    justify-content: center;
    gap: 15px; 
}

.blogs-slider .owl-nav button.owl-prev,
.blogs-slider .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: white !important;
    border: 1px solid rgba(85, 22, 26, 0.1) !important;
    color: var(--primary) !important;
    font-size: 1.2rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: var(--transition) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blogs-slider .owl-nav button.owl-prev:hover,
.blogs-slider .owl-nav button.owl-next:hover {
    background: var(--secondary) !important;
    color: white !important;
    border-color: var(--secondary) !important;
    transform: translateY(-3px);
}

/* ===== TESTIMONIALS MODERN ===== */
.testimonial-card-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(85, 22, 26, 0.08);
    border-color: rgba(85, 22, 26, 0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin: 1.5rem 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.feedback-img-card {
    overflow: hidden;
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.feedback-img-card:hover {
    transform: scale(1.03);
}

.feedback-img-card img {
    transition: var(--transition);
}

.feedback-img-card:hover img {
    filter: brightness(1.05);
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-testimonial-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.video-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 0.5rem;
}

.video-info h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 700;
}

.video-info p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
}

.contact-info-modern {
    padding-right: 2rem;
}

.contact-info-modern h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin: 1rem 0 1rem;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: rgba(4, 147, 49, 0.06);
    border-radius: 20px;
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(4, 147, 49, 0.05);
    transform: translateX(10px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgb(4, 147, 49);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-method h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.3rem;
    color: var(--primary);
}

.contact-method a,
.contact-method p {
    color: var(--gray);
    text-decoration: none;
    font-size: 1rem;
    margin: 0;
    transition: var(--transition);
}

.contact-method a:hover {
    color: var(--secondary);
}

.response-time {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(4, 147, 49, 0.05);
    border-radius: 50px;
}

.response-time i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.response-time strong {
    color: var(--primary);
}

.contact-form-modern {
    background: white;
    border-radius: 40px;
    padding: 3rem;
    box-shadow: 0 30px 60px -20px rgba(85, 22, 26, 0.15);
    border: 1px solid rgba(4, 147, 49, 0.1);
}

.form-control-modern {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #eaeef2;
    border-radius: 20px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(4, 147, 49, 0.1);
}

select.form-control-modern {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2355161A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, #037a28 100%);
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(4, 147, 49, 0.3);
}

.btn-submit i {
    transition: var(--transition);
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* ===== FOOTER (Your existing footer CSS) ===== */
.footer {
    background: var(--primary);
    color: #ffe9ea;
    padding: 3.5rem 0 1rem;
    border-top: 5px solid var(--secondary);
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}

.social-icons {
    margin: 1.5rem 0;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 18px;
    text-align: center;
    line-height: 36px;
    background-color: var(--light-bg);
    color: var(--primary);
    border: 3px solid var(--secondary);
    border-radius: 50%;
}

.social-icons a:hover {
    background-color: var(--secondary);
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 992px) {
    #google_element {
        display: flex !important;
        justify-content: center;
        position: relative !important;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .dashboard-content {
        padding-right: 0;
    }

    .scholarship-content-modern {
        padding-right: 0;
    }

    .contact-info-modern {
        padding-right: 0;
    }

    /* Improved Mobile Menu for Landing Page */
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        padding: 80px 25px 40px;
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        display: block !important;
        box-shadow: -15px 0 35px rgba(0, 0, 0, 0.12);
        z-index: 1000;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        right: 0;
    }

    /* Animated Toggler */
    .navbar-toggler {
        border: none !important;
        padding: 0;
        outline: none !important;
        box-shadow: none !important;
        position: relative;
        z-index: 1100;
    }

    .toggler-icon {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--primary);
        margin: 6px 0;
        transition: all 0.3s ease;
        border-radius: 4px;
    }

    .navbar-toggler:not(.collapsed) .top-bar {
        transform: rotate(45deg) translate(6px, 7px);
    }

    .navbar-toggler:not(.collapsed) .middle-bar {
        opacity: 0;
    }

    .navbar-toggler:not(.collapsed) .bottom-bar {
        transform: rotate(-45deg) translate(6px, -7px);
    }

    .navbar-nav {
        margin-top: 1.5rem;
    }

    .nav-item {
        margin-bottom: 0.8rem;
    }

    .nav-link {
        font-size: 1.15rem;
        padding: 14px 18px !important;
        border-radius: 15px;
        background: rgba(85, 22, 26, 0.04);
        font-weight: 600;
        color: var(--primary) !important;
    }

    .nav-link:hover {
        background: rgba(4, 147, 49, 0.08);
        color: var(--secondary) !important;
    }

    .dropdown-menu {
        position: static !important;
        float: none !important;
        background: #fdfafb;
        box-shadow: none; 
        margin-left: 1rem;
        border-left: 3px solid var(--secondary);
        border-radius: 0; 
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-section .row {
        flex-direction: column-reverse;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .pain-point-cta {
        padding: 2rem;
    }

    .pain-point-cta h3 {
        font-size: 1.5rem;
    }

    .contact-form-modern {
        padding: 2rem;
    }

    .scholarship-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .hero-features {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================================ */

.social {
    position: fixed;
    top: 30%;
    left: 0;
    z-index: 9999;
    pointer-events: none;
}

.social ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-item {
    width: 140px;
    margin: 8px 0;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0 30px 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    cursor: pointer;
    transform: translateX(-100px);
    transition: 0.6s ease-in-out;
    pointer-events: auto;
}

.social-item:hover {
    transform: translateX(0);
}

.instagram:hover {
    background: #C03B83;
}

.facebook:hover {
    background: #3b5998;
}

.youtube:hover {
    background: #FF0000;
}

.linkedin:hover {
    background: #0A66C2;
}

.social-item a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    background: #128c7e;
}

.btn-whatsapp img {
    width: 35px;
    height: 35px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media only screen and (max-width: 768px) {
    .btn-whatsapp {
        width: 4rem;
        height: 4rem;
        bottom: 60px !important;
        right: 40px !important;
    }

    .btn-whatsapp img {
        width: 100%;
    }
}

/* ===== MOBILE NAV - RIGHT SIDE DRAWER ===== */
@media (max-width: 991px) {

    /* Make the collapsed navbar appear as a right-side drawer */
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 320px;
        max-width: 92%;
        background: var(--white);
        box-shadow: -18px 0 40px rgba(0, 0, 0, 0.12);
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
        padding: 3rem 1.2rem;
        z-index: 2000;
        overflow-y: auto;
    }

    /* When Bootstrap adds .show, slide in */
    .navbar-collapse.show {
        transform: translateX(0);
    }

    /* Stack nav items vertically inside drawer */
    .navbar-nav {
        flex-direction: column; 
    }

    /* Make sure toggler sits above overlay/drawer */
    .navbar-toggler {
        z-index: 2100;
    }

    /* Overlay to dim the page when drawer is open */
    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        /* top:0; right:0; bottom:0; left:0 */
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.28s ease, visibility 0.28s;
        z-index: 1990;
        pointer-events: none;
    }

    .mobile-nav-overlay.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Small polish for nav links inside drawer */
    .navbar-collapse .nav-link {
        font-size: 1.05rem;
        padding: 0.65rem 0.4rem;
    }

    /* Disable body scroll when drawer open */
    body.nav-drawer-open {
        overflow: hidden;
    }
}


/* ===========================Google Translate============================ */
#google_element {
    padding: 10px;
    border-radius: 10px;
    width: fit-content;
    margin-right: 100px;
    position: absolute;
    right: -100px;
    z-index: 9999;
}

.goog-te-combo {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #d32f2f;
    color: white;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.goog-te-combo:hover {
    background-color: #b71c1c;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0;
}

.goog-te-combo {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

.skiptranslate iframe {
    display: none !important;
}


/* ===== VISION & MISSION SECTION ===== */

.vision-mission-section {
    padding: 5rem 0;
    background: var(--light-bg2);
}

/* Card Design */
.vision-mission-section .card {
    border-radius: 30px;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.vision-mission-section .card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(4, 147, 49, 0.15);
}

/* Icon Styling */
.vision-mission-section .card i {
    font-size: 2.4rem;
    color: var(--secondary);
}

/* Title */
.vision-mission-section .card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

/* Paragraph text */
.vision-mission-section .card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Space between paragraphs */
.vision-mission-section .card p+p {
    margin-top: 0.8rem;
}

/* Mobile improvements */
@media (max-width: 768px) {
    .vision-mission-section {
        padding: 3rem 0;
    }

    .vision-mission-section .card {
        padding: 2rem 1.6rem;
    }

    .vision-mission-section .card h3 {
        font-size: 1.4rem;
    }

    .vision-mission-section .card i {
        font-size: 2rem;
    }
}

/* ===== REMOVED REDUNDANT WHATSAPP STYLES ===== */


/* ===== BREADCRUMBS ===== */
/* ===== PAGE BANNER & BREADCRUMBS ===== */
.page-banner,
.breadcrumb-section {
    background: #fbf3e6;
    padding: 5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid rgba(85, 22, 26, 0.05);
}

.page-banner::before,
.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--primary) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.04;
    pointer-events: none;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
}

.page-banner .breadcrumb,
.breadcrumb-section .breadcrumb {
    justify-content: center;
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item a i {
    font-size: 1.1rem;
}

.breadcrumb-item a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.breadcrumb-item.active {
    color: var(--gray);
    opacity: 0.8;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\F285";
    /* bi-chevron-right */
    font-family: "bootstrap-icons";
    font-weight: 900;
    font-size: 0.75rem;
    padding: 0 15px;
    color: var(--primary);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .page-banner {
        padding: 4rem 0 2.5rem;
    }

    .page-title {
        font-size: 2.2rem;
    }
}

/* ===== FAQ SECTION (Merged from common.css) ===== */
.faq-section {
    padding: 5rem 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    color: var(--primary);
    padding: 1.2rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(4, 147, 49, 0.05);
    color: var(--secondary);
}

/* ===== ENQUIRY FORM (Merged from common.css) ===== */
.enquiry-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.enquiry-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--soft-shadow);
}

/* ===== COURSE DETAIL SPECIFIC ===== */
.feature-item-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(85, 22, 26, 0.04);
    padding: 12px 20px;
    border-radius: 15px;
    border: 1px solid rgba(85, 22, 26, 0.06);
    transition: var(--transition);
}

.feature-item-mini:hover {
    background: rgba(4, 147, 49, 0.06);
    transform: translateY(-3px);
    border-color: rgba(4, 147, 49, 0.1);
}

.feature-item-mini i {
    font-size: 1.4rem;
    color: var(--secondary);
}

.feature-item-mini span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
}

.course-detail-image-wrapper {
    position: relative;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 1.2rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 5px solid var(--secondary);
    animation: float-hero 6s ease-in-out infinite;
}

.experience-badge .number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 576px) {
    .experience-badge {
        bottom: 10px;
        left: 10px;
        padding: 0.8rem 1.2rem;
    }
    .experience-badge .number {
        font-size: 1.4rem;
    }
}