@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;
}

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: 280px;
    }
}

.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: 3px;
    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: 70%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* ===== 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;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== HERO SECTION - REDESIGNED ===== */
.hero-section {
    padding: 5rem 0 6rem;
    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(152, 222, 174, 0.3);
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 600;
    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;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-right: -10px;
    border: 3px solid white;
    border-radius: 50%;
}

.teacher-count {
    background: var(--secondary);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.teacher-highlight p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
}

/* ===== 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: 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;
}

.mockup-body {
    padding: 2rem;
}

.progress-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-box {
    flex: 1;
    background: rgba(4, 147, 49, 0.05);
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.progress-bar-custom {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--secondary);
    border-radius: 10px;
}

.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: 1.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: 1rem;
}

.instructor-creds {
    margin: 1rem 0;
}

.instructor-creds span {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.instructor-creds i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

/* ===== 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: 2rem;
}

.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: 20px 20px 40px;
}

.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: 1.5rem;
    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;
}

/* ===== 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: 1.2rem;
    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) {
    .hero-section {
        padding: 3rem 0;
    }

    .dashboard-content {
        padding-right: 0;
    }

    .scholarship-content-modern {
        padding-right: 0;
    }

    .contact-info-modern {
        padding-right: 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 {
    background-color: #25d366;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 99999999 !important;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    padding: 0;
    text-decoration: none;
    animation-name: btn-whatsapp;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp img {
    width: 100%;
    height: auto;
}

@keyframes btn-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px 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%;
    }
}