* {
    font-family: 'Cairo', sans-serif;
}

:root {
    --primary-blue: #1a4d73;
    --secondary-blue: #2d5f7f;
    --gold: #ea9239;
    --light-gray: #f5f7fa;
}

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    /* direction: rtl; */
    /* text-align: right; */
}

.navbar {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    width: 50px;
    height: 50px;
}

.btn-register {
    background: var(--gold);
    font-weight: bold;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.hero-section {
    background: none !important;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.hero-section>* {
    position: relative;
    z-index: 1;
}

.hero-section .badge-top {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 30px;
}

.hero-section .badge-top::before {
    content: '🔸';
    margin-left: 8px;
}

.hero-section .main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d7ac1;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-section .subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-section .btn-primary-custom {
    background: linear-gradient(135deg, #0d7ac1 0%, #1e91cc 100%);
    border: none;
    padding: 13px 70px;
    font-size: 1.3rem;
    border-radius: 70px;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.hero-section .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 61, 92, 0.3);
}

.hero-section .btn-outline-custom {
    border: 2px solid #003d5c;
    color: #003d5c;
    padding: 12px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    background: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-section .btn-outline-custom:hover {
    background: #003d5c;
    color: white;
    transform: translateY(-2px);
}

.hero-section .illustration-container {
    position: relative;
}

.hero-section .circle-bg {
    width: 500px;
    max-width: 100%;
    height: 500px;
    /* background: linear-gradient(135deg, #003d5c 0%, #005580 100%); */
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    /* box-shadow: 0 20px 60px rgba(0, 61, 92, 0.3); */
}

.hero-section .girl-image {
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 320px;
    height: auto;
    z-index: 10;
}

.hero-section .circle-accent {
    position: absolute;
    background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 179, 0, 0.4);
}

.hero-section .circle-accent-1 {
    width: 80px;
    height: 80px;
    top: -20px;
    right: 80px;
}

.hero-section .circle-accent-2 {
    width: 60px;
    height: 60px;
    top: -10px;
    left: 80px;
}

.hero-section .feature-tag {
    background: white;
    padding: 12px 25px;
    border-radius: 30px;
    position: absolute;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #333;
    z-index: 20;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-section .tag-1 {
        background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
    top: 50px;
    right: -50px;
    animation-delay: 0s;
}

.hero-section .tag-2 {
    top: 200px;
    left: -80px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
    animation-delay: 1s;
}

.hero-section .tag-3 {
    bottom: 100px;
    right: -60px;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    color: #c2185b;
    animation-delay: 2s;
}

@media (max-width: 768px) {
    .hero-section .main-title {
        font-size: 1.8rem;
    }

    .hero-section .circle-bg {
        width: 350px;
        height: 350px;
    }

    .hero-section .girl-image {
        width: 220px;
    }

    .hero-section .feature-tag {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    .hero-section .tag-1,
    .hero-section .tag-2,
    .hero-section .tag-3 {
        position: static;
        display: block;
        margin: 10px auto;
        width: fit-content;
    }
}



/* Timeline Section */
.timeline-section {
    background: linear-gradient(135deg, #0d7ac1 0%, #1e91cc 100%);
    padding: 60px 0;
    position: relative;
}

.timeline-section .timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.timeline-section .timeline-line {
    position: absolute;
    width: 90%;
    top: 25%;
    left: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ea9239 0%, #ea9239 100%, transparent 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-section .timeline-item {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.timeline-section .timeline-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #0d7ac1;
    border: 3px solid #ea9239;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.timeline-section .timeline-icon:hover {
    background: #1e91cc;
    transform: scale(1.1);
    transition: all 0.3s ease;
    border-color: #eee4ceff;
}

.timeline-section .timeline-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-section .timeline-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}








/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-section .section-box {
    padding-right: 20px;
    border-right: 2px solid #E6B65C;
}

.about-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0d7ac1;
    margin-bottom: 15px;
}

.about-section .section-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ea9239;
    margin-bottom: 25px;
}

.about-section .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-section .feature-item:hover {
    background: #f8f9fa;
    transform: translateX(-5px);
}

.about-section .feature-icon {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #0B3C5D80;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0d3c5c;
    font-size: 1.5rem;
}

.about-section .feature-text {
    flex: 1;
    text-align: right;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-section .cta-button {
    background: linear-gradient(135deg, #0d7ac1 0%, #1e91cc 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(13, 60, 92, 0.3);
}

.about-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(13, 60, 92, 0.4);
}

/* Circular Chart */
.about-section .chart-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section .circular-chart {
    width: 400px;
    height: 400px;
    position: relative;
}

.about-section .chart-circle {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-section .chart-circle img {
    max-width: 250px;
    margin: auto;
}


.about-section .chart-stat {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #1e91cc;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.about-section .stat-1 {
    top: 15%;
    right: 0;
}

.about-section .stat-2 {
    left: 0;
    top: 45%;
}

.about-section .stat-3 {
    bottom: 15%;
    right: -30px;
}

.about-section .stat-icon {
    color: #ea9239;
}

@media (max-width: 992px) {
    .timeline-section .timeline-container {
        flex-wrap: wrap;
    }

    .timeline-section .timeline-line {
        display: none;
    }

    .timeline-section .timeline-item {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }

    .about-section .circular-chart {
        width: 300px;
        height: 300px;
        margin: 50px auto;
    }

    .about-section .chart-stat {
        position: absolute;
        margin: 10px auto;
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .timeline-section .timeline-item {
        flex: 0 0 50%;
    }

    .about-section .section-title {
        font-size: 2rem;
    }

    .about-section .section-subtitle {
        font-size: 1.4rem;
    }
}

.program-section {
    position: relative;
    background-color: #0B3C5D14;
    padding: 80px 0;
    overflow: hidden;
}

.program-section .geometric-pattern {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 200px;
    height: 200px;
    z-index: 99;
    opacity: 0.1;
    pointer-events: none;

}

.program-section .geometric-pattern-right {
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 200px;
    height: 200px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 99;

}

.program-section .geometric-pattern img,
.program-section .geometric-pattern-right img {
    width: 100%;
    /* height: 100%; */
}

.program-section .main-title {
    color: #0d7ac1;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.program-section .subtitle {
    color: #5a6c7d;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.program-section .program-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: none;
}

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

.program-section .icon-wrapper {
    width: 60px;
    height: 60px;
    background: #F0F9FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 25px;
}

.program-section .icon-wrapper i {
    font-size: 2.5rem;
    color: #0d3547;
}

.program-section .program-title {
    color: #0d3547;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.program-section .program-description {
    color: #6b7c8d;
    line-height: 1.8;
    font-size: 1rem;
}

.program-section .cta-button {
    background: #0d7ac1;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(26, 77, 109, 0.3);
}

.program-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 77, 109, 0.4);
    background: linear-gradient(135deg, #2d6a8f 0%, #1a4d6d 100%);
}

.program-section .cta-button i {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .program-section .main-title {
        font-size: 2rem;
    }

    .program-section .subtitle {
        font-size: 1rem;
    }
}








.live-section {
    position: relative;
    /* background-color: #0B3C5D14; */
    padding: 40px 0;
    overflow: hidden;
}

.live-section .main-title {
    color: #0d7ac1;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.live-section .subtitle {
    color: #6b7c8d;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.live-section .step-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
    box-shadow: 0px 1px 2px 0px #0000000D;

    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #F3F4F6;
}

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

.live-section .step-card:hover .step-number {
    color: #ea9239;
}

.live-section .step-number {
    position: absolute;
    top: -25px;
    left: 15px;
    font-size: 6.5rem;
    font-weight: 800;
    color: #F3F4F6;
    z-index: 1;
    transition: color 0.3s ease;
}

.live-section .step-card:hover .icon-container {
    /* background: linear-gradient(135deg, #0d7ac1 0%, #0d7ac1 100%); */
}

.live-section .step-card:hover .icon-container svg path {
    stroke: #E6B65C;
}

.live-section .icon-container {
    width: 60px;
    height: 60px;
    background: #F9FAFB;
    box-shadow: 0px 2px 4px 1px #0000000D inset;

    /* background: linear-gradient(135deg, #1a4d6d 0%, #2d6a8f 100%); */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.live-section .icon-container svg {
    max-width: 32px;
    font-size: 2.5rem;
}

.live-section .icon-container svg path {
    stroke: #0d3547;
    transition: stroke 0.3s ease;
    /* color: #0d3547; */
}

.live-section .step-title {
    color: #0d7ac1;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.live-section .step-description {
    color: #6b7c8d;
    line-height: 1.8;
    font-size: 1rem;
}

.live-section .divider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    border: 2px dashed #D1D5DB;

    /* background: linear-gradient(90deg, transparent, #d4a948, transparent); */
    margin: 0 auto;
    opacity: 0.5;
}

.live-section .cta-button {
    background: linear-gradient(135deg, #ea9239 0%, #ea9239ad 100%);
    color: #0d7ac1;
    padding: 15px 70px;
    border-radius: 50px;
    border: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 169, 72, 0.3);
    margin: 40px 0 0 0;
}

.live-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 169, 72, 0.4);
    background: linear-gradient(135deg, #ea9239ad 0%, #ea9239 100%);
}

.live-section .cta-button i {
    margin-right: 10px;
}

.live-section .video-section-title {
    color: #0d7ac1;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 40px;
}

.live-section .video-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    max-height: 400px;
}


.live-section .video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgb(22 104 171 / 40%) 100%);
    /* transition: background 0.3s ease; */
}

.live-section .video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.live-section .video-container img {
    width: 100%;
    height: auto;
    display: block;

}

.live-section .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #3D97D3CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
}

.live-section .video-container:hover .play-button {
    background: #3D97D3CC;
    transform: translate(-50%, -50%) scale(1.1);

}

.live-section .play-button i {
    font-size: 1.5rem;
    color: white;
    margin-right: -5px;
}

@media (max-width: 768px) {
    .live-section .main-title {
        font-size: 1.8rem;
    }

    .live-section .step-number {
        font-size: 3.5rem;
        top: -10px;
        right: -10px;
    }

    .live-section .step-title {
        font-size: 1.3rem;
    }
}




.community-section {
    background: linear-gradient(135deg, #0d7ac1 0%, #1e91cc 50%, #0d7ac1 100%) !important;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.community-section .badge-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 169, 72, 0.5);
    color: #e8c168;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.community-section .badge-tag svg {
    max-width: 20px;
    max-height: fit-content;
    /* color: #e8c168; */
}

.community-section .main-title {
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.community-section .main-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.community-section .feature-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.community-section .feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 169, 72, 0.4);
    transform: translateX(-5px);
}

.community-section .feature-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    flex-shrink: 0;
}

.community-section .feature-icon i {
    font-size: 1.8rem;
    color: #1a5570;
}

.community-section .feature-title {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.community-section .feature-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
}

.community-section .discover-button {
    background: linear-gradient(135deg, #d4a948 0%, #e8c168 100%);
    color: #0d3547;
    padding: 15px 70px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 169, 72, 0.3);
}

.community-section .discover-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 169, 72, 0.4);
    background: linear-gradient(135deg, #e8c168 0%, #d4a948 100%);
}

.community-section .image-container {
    position: relative;
    z-index: 2;
    text-align: center;
    /* width: 350px; */
    max-width: 100%;
}

.community-section .child-image {
    /* max-width: 250px; */
    width: 95%;
    height: auto;
    position: relative;
    z-index: 2;
}

.community-section .speech-bubble {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    font-weight: 600;
    color: #0d3547;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.community-section .speech-bubble::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.community-section .bubble-1 {
    top: 10%;
    right: -5%;
    background: #e8c168;
    color: #0d3547;
}

.community-section .bubble-1::after {
    bottom: -10px;
    right: 30px;
    border-width: 10px 10px 0 10px;
    border-color: #e8c168 transparent transparent transparent;
}

.community-section .bubble-2 {
    top: 30%;
    left: -8%;
}

.community-section .bubble-2::after {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.community-section .bubble-3 {
    bottom: 25%;
    right: -10%;
    background: #e8c168;
    color: #0d3547;
}

.community-section .bubble-3::after {
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    border-width: 10px 10px 10px 0;
    border-color: transparent #e8c168 transparent transparent;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .community-section .main-title {
        font-size: 2rem;
    }

    .community-section .speech-bubble {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .community-section .bubble-1,
    .community-section .bubble-2,
    .community-section .bubble-3 {
        position: static;
        margin: 10px auto;
        display: inline-block;
    }

    .community-section .bubble-1::after,
    .community-section .bubble-2::after,
    .community-section .bubble-3::after {
        display: none;
    }
}

.container {
    position: relative;
}


.values-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Geometric Patterns */
.values-section .geometric-left {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    opacity: 0.15;
    pointer-events: none;
}

.values-section .geometric-right {
    position: absolute;
    top: 0;
    right: -15px;
    width: 250px;
    height: 250px;
    opacity: 0.15;
    pointer-events: none;
}

.values-section .geometric-left img,
.values-section .geometric-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.values-section .badge-pill {
    background: #F5F9FC;
    border: 1px solid #0B3C5D80;
    color: #0d7ac1;
    padding: 5px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
}

.values-section .main-title {
    color: #0d7ac1;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.values-section .main-description {
    color: #5a6c7d;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 50px;
}

.values-section .value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.values-section .value-icon {
    width: 50px;
    height: 50px;
    background: #F5F9FC;
    border-radius: 50%;
    /* border-radius: 15px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.values-section .value-icon i {
    font-size: 1.8rem;
    color: #0d3547;
}

.values-section .value-content h3 {
    color: #0d3547;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.values-section .value-content p {
    color: #6b7c8d;
    font-size: .95rem;
    line-height: 1.7;
    margin: 0;
}

.values-section .image-container {
    position: relative;
    display: flex;
    overflow: hidden;
    justify-content: flex-end;
}

.community-section .image-container img,
.values-section .image-container img {
    width: 650px;
    max-width: 80%;
    border-radius: 30px;
    height: auto;
    display: block;

    box-shadow: 0px 10px 15px -3px #0000001A;
}


.values-section .floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatBadge 3s ease-in-out infinite;
}

.values-section .floating-badge-icon {
    width: 50px;
    height: 50px;
    /* background: linear-gradient(135deg, #1a4d6d 0%, #2d6a8f 100%); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F9FC;

}

.values-section .floating-badge-icon svg {
    font-size: 1rem;
    color: white;
}

.values-section .floating-badge-text {
    text-align: right;
}

.values-section .floating-badge-text .title {
    color: #6b7c8d;
    font-weight: 700;
    font-size: .8rem;
    margin: 0;
}

.values-section .floating-badge-text .subtitle {
    color: #0d3547;
    font-size: 1rem;
    font-weight: 700;

    margin: 0;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Geometric SVG Patterns */
.values-section .islamic-pattern {
    fill: none;
    stroke: #0d3547;
    stroke-width: 2;
}

@media (max-width: 768px) {
    .values-section .main-title {
        font-size: 2rem;
    }

    .values-section .floating-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .values-section .geometric-right {
        width: 150px;
        height: 150px;
    }
}




.testimonial-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background-color: #0d3547;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.testimonial-section>* {
    position: relative;
    z-index: 2;
}


.testimonial-section .header-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    margin-bottom: 20px;
    color: #f4a460;
    font-size: 14px;
}

.testimonial-section .header-badge i {
    color: #ff6b6b;
}

.testimonial-section h1 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-section .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-section .voice-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.testimonial-section .voice-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-section .card-header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.testimonial-section .location-tag {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px 8px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.testimonial-section .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-section .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.testimonial-section .user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-section .verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #0ea5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1e5a7d;
}

.testimonial-section .verified-badge i {
    color: white;
    font-size: 10px;
}

.testimonial-section .user-details h3 {
    color: white;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 2px;
}

.testimonial-section .user-details p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
}

.testimonial-section .audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-section .play-button {
    width: 35px;
    height: 35px;
    background: #0ea5e9;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-section .play-button:hover {
    background: #0284c7;
    transform: scale(1.1);
}

.testimonial-section .play-button i {
    color: white;
    font-size: 15px;
    margin-right: -2px;
}

.testimonial-section .audio-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100% - 40px);
}

.testimonial-section .time-display {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    min-width: 25px;
}

.testimonial-section .progress-bar-container {
    flex: 1;
    height: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 3px;
}

.testimonial-section .progress-bar-fill {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    width: 30%;
    float: inline-end;

}

.testimonial-section .sound-wave {
    width: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: all 0.3s ease;
    height: 8px;

}

.testimonial-section .sound-wave.active {
    background: #0ea5e9;
}

.testimonial-section .sound-wave:nth-child(1) {
    height: 8px;
}

.testimonial-section .sound-wave:nth-child(2) {
    height: 16px;
}

.testimonial-section .sound-wave:nth-child(3) {
    height: 24px;
}

.testimonial-section .sound-wave:nth-child(4) {
    height: 30px;
}



@media (max-width: 768px) {
    .testimonial-section h1 {
        font-size: 32px;
    }

    .testimonial-section .subtitle {
        font-size: 16px;
    }

    .testimonial-section .voice-card {
        padding: 20px;
    }

    .testimonial-section .card-header-section {
        flex-direction: column;
        gap: 15px;
    }
}


.pricing-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.pricing-section .pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-section .pricing-header h1 {
    color: #1e3a5f;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pricing-section .pricing-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

.pricing-section .pricing-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.pricing-section .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-section .pricing-card.featured {
    border: 2px solid #ea9239;
    position: relative;
    transform: scale(1.05);
}

.pricing-section .pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.pricing-section .recommended-badge {
    background: #ea9239;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    /* margin-bottom: 15px; */
    font-weight: 500;
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-section .card-title {
    color: #1e3a5f;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-section .card-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 25px;
}

.pricing-section .price {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 5px;
}

.pricing-section .price-period {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 25px;
}

.pricing-section .btn-primary-custom {
    background: #1e3a5f;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s ease;
}

.pricing-section .btn-primary-custom:hover {
    background: #152d47;
}

.pricing-section .btn-secondary-custom {
    background: #ea9239;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s ease;
}

.pricing-section .btn-secondary-custom:hover {
    background: #c49563;
}

.pricing-section .features-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.pricing-section .features-list li {
    padding-bottom: 12px;
    color: #495057;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-section .features-list li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-section .featured .features-list li::before {
    color: #ea9239;
}

@media (max-width: 991px) {
    .pricing-section .pricing-card.featured {
        transform: scale(1);
        margin-bottom: 30px;
    }

    .pricing-section .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}


/* Hero/CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e91cc 0%, #0d7ac1 50%, #1e91cc 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(42, 95, 127, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(26, 77, 109, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.cta-section p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-section .cta-button {
    background: #ea9239;
    color: #0d3547;
    border: none;
    padding: 13px 60px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
    text-decoration: none;
    display: inline-block;
}

.cta-section .cta-button:hover {
    background: #c49563;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
    color: #0d3547;
}

@media (max-width: 768px) {
    .cta-section h1 {
        font-size: 2.2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 13px 40px;
        font-size: 1.1rem;
    }

    .carousel-item {
        margin-left: 0;
    }

    .testimonial-section .text-content {
        max-width: 100%;
        width: auto;
    }
}

.register-new {
    cursor: pointer;
}















/* ═══════════════════════════════════════
       CARD WRAPPER
    ═══════════════════════════════════════ */
.card-wrapper {
    width: 100%;
    max-width: 1000px;
    border-radius: 20px;
    /* overflow: hidden; */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    min-height: 580px;
    background: #fff;
    position: relative;
}

/* ═══════════════════════════════════════
       IMAGE PANEL
    ═══════════════════════════════════════ */
.card-wrapper .image-panel {
    width: 420px;
    min-height: 580px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1A2B4A 0%, #243a63 50%, #1a3a5c 100%);
    transition: all 0.5s ease;
    border-radius: 0 10px 10px 0;
}

.card-wrapper .image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-wrapper .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 20, 40, 0.15) 0%, rgba(10, 20, 40, 0.6) 60%, rgba(10, 20, 40, 0.82) 100%);
}

.card-wrapper .image-deco {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-wrapper .deco-circle-1 {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.card-wrapper .deco-circle-2 {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(200, 154, 60, 0.12);
}

.card-wrapper .deco-svg {
    opacity: 0.15;
}

.card-wrapper .image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 30px;
    text-align: right;
    transition: opacity 0.4s ease;
}

.card-wrapper .image-accent {
    width: 36px;
    height: 3px;
    background: #C89A3C;
    margin-bottom: 14px;
    border-radius: 2px;
}

.card-wrapper .image-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.6;
}

.card-wrapper .image-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

/* Image slide content */
.card-wrapper .img-slide {
    display: none;
}

.card-wrapper .img-slide.active {
    display: block;
}

/* ═══════════════════════════════════════
       FORM PANEL
    ═══════════════════════════════════════ */
.card-wrapper .form-panel {
    flex: 1;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    position: relative;
    border-radius: 10px 0 0 10px;
    /* overflow: hidden; */
}

/* ── Steps ── */
.card-wrapper .step {
    display: none;
}

.card-wrapper .step.active {
    display: flex;
    flex-direction: column;
}

/* ── Progress bar ── */
.card-wrapper .progress-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
}

.card-wrapper .progress-track {
    flex: 1;
    height: 4px;
    background: #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
}

.card-wrapper .progress-fill {
    height: 100%;
    background: #C89A3C;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.card-wrapper .step-badge {
    background: #FDF3DF;
    color: #C89A3C;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ── Heading ── */
.card-wrapper .form-title {
    font-size: 32px;
    font-weight: 800;
    color: #1A2B4A;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-wrapper .form-subtitle {
    font-size: 14px;
    color: #7a8a9a;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ── Field ── */
.card-wrapper .field-label {
    font-size: 14px;
    font-weight: 700;
    color: #1A2B4A;
    display: block;
    margin-bottom: 8px;
    text-align: right;
}

.card-wrapper .form-control,
.form-select {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    color: #aab0bb;
    border: 1.5px solid #e4e8ee;
    border-radius: 10px;
    padding: 12px 16px;
    background: #fafbfc;
    transition: border-color 0.2s, box-shadow 0.2s;
    direction: rtl;
    text-align: right;
}

.card-wrapper .form-control:focus,
.form-select:focus {
    border-color: #1A2B4A;
    box-shadow: 0 0 0 3px rgba(26, 43, 74, 0.08);
    outline: none;
    color: #1A2B4A;
}

.card-wrapper .form-control.is-invalid,
.form-select.is-invalid,
.card-wrapper .phone-group.is-invalid {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.08) !important;
}

.card-wrapper .error-msg {
    font-size: 12px;
    color: #e74c3c;
    margin-top: 5px;
    display: none;
    text-align: right;
}

.card-wrapper .error-msg.show {
    display: block;
}

/* ── Input with icon ── */
.card-wrapper .input-icon-wrapper {
    position: relative;
}

.card-wrapper .input-icon-wrapper .form-control {
    padding-left: 44px;
}

.card-wrapper .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b8c5;
    pointer-events: none;
}

/* ── Select wrapper ── */
.card-wrapper .select-wrapper {
    position: relative;
}

.card-wrapper .select-wrapper .form-select {
    padding-left: 44px;
    appearance: none;
}

.card-wrapper .select-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b8c5;
    pointer-events: none;
}

/* ── Phone group ── */
.card-wrapper .phone-group {
    display: flex;
    border: 1.5px solid #e4e8ee;
    border-radius: 10px;
    /* overflow: hidden; */
    background: #fafbfc;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.card-wrapper .phone-group:focus-within {
    border-color: #1A2B4A;
    box-shadow: 0 0 0 3px rgba(26, 43, 74, 0.08);
}

.card-wrapper .phone-code {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    border-left: 1.5px solid #e4e8ee;
    cursor: pointer;
    background: #fafbfc;
    white-space: nowrap;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A2B4A;
    user-select: none;
    position: relative;
}

.card-wrapper .phone-code .flag {
    font-size: 18px;
    line-height: 1;
}

.card-wrapper .phone-code .caret {
    color: #b0b8c5;
    font-size: 10px;
}

/* Dropdown */
.card-wrapper .code-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1.5px solid #e4e8ee;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    z-index: 999;
    display: none;
    max-height: 240px;
    overflow-y: auto;
}

.card-wrapper .code-dropdown.open {
    display: block;
}

.card-wrapper .code-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 13px;
    color: #1A2B4A;
    transition: background 0.15s;
}

.card-wrapper .code-dropdown-item:hover {
    background: #f5f7fa;
}

.card-wrapper .code-dropdown-item .item-flag {
    font-size: 18px;
}

.card-wrapper .code-dropdown-item .item-name {
    flex: 1;
}

.card-wrapper .code-dropdown-item .item-code {
    color: #7a8a9a;
    font-size: 12px;
}

.card-wrapper .phone-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    color: #1A2B4A;
    padding: 12px 14px;
    outline: none;
    text-align: right;
    direction: ltr;
}

.card-wrapper .phone-input::placeholder {
    color: #aab0bb;
    direction: rtl;
    text-align: right;
}

.card-wrapper .wa-icon {
    display: flex;
    align-items: center;
    padding: 0 12px 0 4px;
    color: #25D366;
}

/* ── Checkbox ── */
.card-wrapper .checkbox-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin: 14px 0 16px;
}

.card-wrapper .checkbox-row label {
    font-size: 14px;
    font-weight: 600;
    color: #1A2B4A;
    cursor: pointer;
    user-select: none;
}

.card-wrapper .custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #d0d8e4;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
    background: #fff;
}

.card-wrapper .custom-checkbox.checked {
    background: #1A2B4A;
    border-color: #1A2B4A;
}

.card-wrapper .custom-checkbox svg {
    display: none;
}

.card-wrapper .custom-checkbox.checked svg {
    display: block;
}

/* WhatsApp field toggle */
.card-wrapper .wa-field {
    /* overflow: hidden; */
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.card-wrapper .wa-field.hidden {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.card-wrapper .wa-field.visible {
    max-height: 200px;
    opacity: 1;
}

/* ── CTA Button ── */
.card-wrapper .btn-cta {
    background: #1A2B4A;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    transition: background 0.2s, transform 0.15s;
}

.card-wrapper .btn-cta:hover {
    background: #243a63;
    transform: translateY(-1px);
}

.card-wrapper .btn-cta:hover svg {
    transform: translateX(-4px);
    transition: transform 0.2s;
}

.card-wrapper .btn-return {
    border: 1px solid #1A2B4A;
    background: transparent;
    color: #1A2B4A;
}

.card-wrapper .btn-return:hover {
    background: #243a63;
    transform: translateY(1px);
    color: #fff;
}

.card-wrapper .btn-return:hover svg {
    transform: translateX(4px);
    transition: transform 0.2s;
}

/* ── Security note ── */
.card-wrapper .security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 12px;
    color: #a0aab5;
}

/* ═══════════════════════════════════════
       SUCCESS STEP (Step 3)
    ═══════════════════════════════════════ */
.card-wrapper .success-step {
    text-align: center;
    align-items: center;
    padding: 40px 20px;
}

.card-wrapper .success-check {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0faf4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.card-wrapper .success-title {
    font-size: 28px;
    font-weight: 800;
    color: #1A2B4A;
    margin-bottom: 14px;
}

.card-wrapper .success-desc {
    font-size: 15px;
    color: #4a5a6a;
    line-height: 1.8;
    margin-bottom: 10px;
}

.card-wrapper .success-hint {
    font-size: 13px;
    color: #C89A3C;
    margin-bottom: 32px;
}

.card-wrapper .btn-home {
    background: #1A2B4A;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    width: 100%;
    max-width: 380px;
}

.card-wrapper .btn-home:hover {
    background: #243a63;
    transform: translateY(-1px);
}

/* ── Confetti ── */
.card-wrapper .confetti-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.card-wrapper .confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    opacity: 0;
    animation: confettiFall 3s ease-in forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(600px) rotate(720deg);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════
       SLIDE TRANSITIONS
    ═══════════════════════════════════════ */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-wrapper .step.active {
    animation: slideInRight 0.4s ease both;
}

/* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
@media (max-width: 768px) {
    .card-wrapper .card-wrapper {
        flex-direction: column-reverse;
    }

    .card-wrapper .image-panel {
        width: 100%;
        min-height: 220px;
        display: none;
    }

    .card-wrapper .form-panel {
        padding: 32px 24px;
        border-radius: 10px;
    }

    .card-wrapper .form-title {
        font-size: 24px;
    }

    /* Step 1: image on bottom (reversed) */
    .card-wrapper.step2-active {
        flex-direction: column;
    }

    .card-wrapper.step2-active .image-panel {
        order: -1;
    }
}

.packages-section {
    margin-top: 12px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    /* margin-bottom: 32px; */
}

.package-card {
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 24px 20px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafafa;
    text-align: center;
    position: relative;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.package-card.selected {
    border-color: #d4af37;
    background: linear-gradient(135deg, #f9f6ed 0%, #fdfbf5 100%);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.package-card.selected::after {
    content: '✓';
    position: absolute;
    top: 12px;
    left: 12px;
    background: #d4af37;
    color: white;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.package-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 12px;
}

.package-hours {
    font-size: 12px;
    color: #666;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.package-price {
    font-size: 15px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 4px;
}

.package-price-label {
    font-size: 12px;
    color: #999;
}

.grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    /* grid-row-gap: 10px; */
}


.girl-image img {

    width: 100%;
    height: auto;
    border-radius: 20px;
}

.footer-section .logo-section .logo img,
.about-section .chart-circle img {
        height: auto;

}

.footer-section .logo-section .logo img {
    max-width: 100px;
}