

/* Import Arabic fonts */
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;600;700&display=swap');

/* Base Styles and Variables */
:root {
    --primary-color: #fddc4f;
    --secondary-color: #121212;
    --accent-color: #fddc4f;
    --text-color: #f8f9fa;
    --light-color: #f0f0f0;
    --dark-color: #000000;
    --gray-color: #aaaaaa;
    --border-color: #333333;
    --shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}



/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Remove bullet points from all lists */
ul, ol {
    list-style: none;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Alexandria', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color);
    direction: rtl;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

/* Container */
.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1200px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.btn:hover::after {
    transform: translateX(0);
}

.btn-primary {
    background-color: var(--primary-color);
    color: black;
    font-weight: bold;
    border: none;
    padding-left: 45px;
    padding-right: 45px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: rgba(253, 220, 79, 0.15);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(253, 220, 79, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    background: none;
    border: none;
    padding: 0.5rem 0;
    cursor: pointer;
}

.btn-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.urgency-text {
    color: #ff4757;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 71, 87, 0.15);
    border-radius: 25px;
    border: 1px solid rgba(255, 71, 87, 0.5);
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.urgency-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.3);
    background: rgba(255, 71, 87, 0.2);
}

.social-proof {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.2rem 1.8rem;
    background: rgba(253, 220, 79, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(253, 220, 79, 0.25);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 16px rgba(253, 220, 79, 0.12);
    backdrop-filter: blur(8px);
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.social-proof:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253, 220, 79, 0.25);
    background: rgba(253, 220, 79, 0.18);
}

.social-proof p {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    opacity: 1;
    line-height: 2;
}

/* Header */
.header {
    background-color: var(--secondary-color);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 15px;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(253, 220, 79, 0.3);
}

.logo-img {
    height: 46px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav-list {
    display: none;
    list-style: none;
}

.nav-list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--secondary-color);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
}

.nav-list li {
    margin: 0.5rem 0;
    text-align: center;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: block;
    transition: var(--transition);
}

.nav-list a:hover, .nav-list a.active {
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-2px);
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(253, 220, 79, 0.02) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 220, 79, 0.15) 0%, rgba(253, 220, 79, 0.05) 50%, transparent 100%);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 220, 79, 0.08) 0%, transparent 70%);
    z-index: 1;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #fff9c4 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: -0.3px;
    text-shadow: 0 4px 8px rgba(253, 220, 79, 0.3);
    position: relative;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    animation: gradientShift 4s ease-in-out infinite, titleGlow 3s ease-in-out infinite alternate;
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.3s ease;
}

.hero-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--primary-color), #fff9c4, var(--primary-color), transparent);
    border-radius: 3px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
    box-shadow: 0 2px 10px rgba(253, 220, 79, 0.4);
}

.hero-content h2::before {
    content: '✨';
    position: absolute;
    top: -20px;
    right: -30px;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
    opacity: 0.8;
}

.hero-content h2:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    text-shadow: 0 6px 15px rgba(253, 220, 79, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 2.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    position: relative;
    margin-top: 3rem;
    padding: 0 1rem;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin: 0 auto;
    display: block;
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(253, 220, 79, 0.5);
}

/* About Mentor Section */
.about-mentor {
    padding: 4rem 0;
    background-color: var(--dark-color);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-mentor::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(253, 220, 79, 0.05);
    z-index: 1;
}

.about-mentor::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(253, 220, 79, 0.03);
    z-index: 1;
}

.mentor-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.mentor-card {
    background-color: var(--secondary-color);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(253, 220, 79, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 600px;
    width: 100%;
}

.mentor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 220, 79, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.mentor-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.mentor-card:hover {
    transform: translateY(-8px);
    border-color: rgba(253, 220, 79, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mentor-card:hover::after {
    transform: scaleX(1);
}

.mentor-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 4px solid var(--primary-color);
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.mentor-image::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), #fff9c4, var(--primary-color));
    z-index: -1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mentor-card:hover .mentor-image {
    transform: scale(1.05);
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.mentor-info h3 {
    font-size: 1.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(253, 220, 79, 0.4);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mentor-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(253, 220, 79, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(253, 220, 79, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-item:hover {
    background: rgba(253, 220, 79, 0.15);
    transform: translateY(-2px);
}

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

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-top: 0.5rem;
}

.mentor-description {
    margin-top: 1.5rem;
}

.mentor-description p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    line-height: 1.8;
    position: relative;
    padding-right: 1.5rem;
}

.mentor-description p::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Course Details Section */
.course-details {
    padding: 4rem 0;
    background-color: var(--dark-color);
    position: relative;
    width: 100%;
}

.course-details::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(253, 220, 79, 0.05);
    z-index: 1;
}

.course-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.info-card {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(253, 220, 79, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 220, 79, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.5s ease;
}

.info-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.course-description, .course-curriculum {
    margin-top: 2.5rem;
}

.course-description h3, .course-curriculum h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Accordion */
.accordion-item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(253, 220, 79, 0.15);
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-item:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(253, 220, 79, 0.3);
}

.accordion-header {
    padding: 1.2rem 1.5rem;
    background-color: var(--secondary-color);
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(253, 220, 79, 0.1);
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(253, 220, 79, 0.05);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.accordion-content.active {
    padding: 1.5rem;
    max-height: 500px;
    border-top: 1px solid rgba(253, 220, 79, 0.1);
}

.accordion-content ul {
    padding-right: 1.8rem;
}

.accordion-content li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-right: 1.2rem;
}

.accordion-content li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: var(--dark-color);
    position: relative;
    width: 100%;
}

.features::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(253, 220, 79, 0.05);
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background-color: var(--secondary-color);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(253, 220, 79, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(253, 220, 79, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    display: inline-block;
    transition: all 0.5s ease;
    background: linear-gradient(135deg, var(--primary-color), #fff9c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Arabic Text Styling */
.course-description h3,
.course-curriculum h3,
.program-goal h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
}

.course-description h3::after,
.course-curriculum h3::after,
.program-goal h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.course-description p,
.course-curriculum p,
.program-goal p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.benefits-list {
    padding-right: 1rem;
    margin-bottom: 2rem;
}

.benefits-list li {
    position: relative;
    padding-right: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    transition: transform 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(-5px);
}

.benefits-list li i {
    position: absolute;
    right: 0;
    top: 4px;
    color: var(--primary-color);
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #fff9c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Program Stages Timeline */
.program-timeline {
    padding: 4rem 0;
    background-color: var(--secondary-color);
    width: 100%;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(253, 220, 79, 0.3));
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-right: 60px;
    transition: all 0.4s ease;
}

.timeline-item:hover {
    transform: translateX(-5px);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    right: 10px;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #fff9c4);
    border: 4px solid var(--dark-color);
    transform: translateX(50%);
    z-index: 1;
    box-shadow: 0 0 15px rgba(253, 220, 79, 0.7);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(50%) scale(1.2);
    box-shadow: 0 0 20px rgba(253, 220, 79, 0.9);
}

.timeline-content {
    background-color: var(--dark-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(253, 220, 79, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(253, 220, 79, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(253, 220, 79, 0.3);
}

.timeline-item:hover .timeline-content::before {
    opacity: 1;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.timeline-content p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Results Gallery */
.results-gallery {
    padding: 4rem 0;
    background-color: var(--dark-color);
    position: relative;
    width: 100%;
}

.results-gallery::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: rgba(253, 220, 79, 0.05);
    z-index: 1;
}

.gallery-grid.results-gallery-slider {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    height: 280px;
    border: none;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
    filter: brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(70%);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 3;
}

.gallery-caption h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

.gallery-caption p {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-item:hover .gallery-caption h4,
.gallery-item:hover .gallery-caption p {
    transform: translateY(0);
    opacity: 1;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        right: 50%;
    }
    
    .timeline-item {
        padding-right: 0;
        width: 50%;
    }
    
    .timeline-item:nth-child(odd) {
        padding-left: 50px;
        padding-right: 0;
        margin-right: auto;
    }
    
    .timeline-item:nth-child(even) {
        padding-right: 50px;
        padding-left: 0;
        margin-left: auto;
    }
    
    .timeline-dot {
        right: auto;
        left: -10px;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        right: -10px;
        left: auto;
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Program Stages Section */
.instructor {
    padding: 4rem 0;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.instructor::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(253, 220, 79, 0.05);
    z-index: 1;
}

.program-stages {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.stage-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.stage-item {
    display: flex;
    margin-bottom: 3.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stage-item:hover {
    transform: translateX(-10px);
}

.stage-item:last-child {
    margin-bottom: 0;
}

.stage-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #fff9c4);
    color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-left: 2rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(253, 220, 79, 0.7);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stage-item:hover .stage-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 30px rgba(253, 220, 79, 0.9);
}

.stage-content {
    background-color: var(--dark-color);
    padding: 2rem;
    border-radius: 16px;
    flex-grow: 1;
    position: relative;
    border: 1px solid rgba(253, 220, 79, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
}

.stage-item:hover .stage-content {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(253, 220, 79, 0.3);
}

.stage-content::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%) rotate(45deg);
    width: 24px;
    height: 24px;
    background-color: var(--dark-color);
    border-right: 1px solid rgba(253, 220, 79, 0.2);
    border-bottom: 1px solid rgba(253, 220, 79, 0.2);
    z-index: 1;
    transition: all 0.3s ease;
}

.stage-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(253, 220, 79, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stage-item:hover .stage-content::after {
    opacity: 1;
}

.stage-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.stage-meeting {
    font-size: 1rem;
    color: var(--primary-color);
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.9;
    border-top: 1px dashed rgba(253, 220, 79, 0.2);
    padding-top: 0.8rem;
}

.program-goal {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: var(--secondary-color);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-goal:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.goal-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.goal-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.goal-description {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 500;
    color: var(--text-color);
}

.program-goal h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark-color);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: black;
    transform: translateY(-3px);
    text-decoration: none;
}
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Results Section */
.testimonials {
    padding: 4rem 0;
    background-color: var(--dark-color);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: rgba(253, 220, 79, 0.05);
    z-index: 1;
}

.results-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.results-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.gallery-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-slide {
    display: none;
    position: relative;
    overflow: hidden;
}

.gallery-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-slide:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    background-color: var(--dark-color);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(253, 220, 79, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.testimonial-slide:hover .testimonial-content {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(253, 220, 79, 0.3);
    transform: translateY(-5px);
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(253, 220, 79, 0.1), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide:hover .testimonial-content::before {
    opacity: 1;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 40px;
    width: 24px;
    height: 24px;
    background-color: var(--dark-color);
    transform: rotate(45deg);
    border-right: 1px solid rgba(253, 220, 79, 0.2);
    border-bottom: 1px solid rgba(253, 220, 79, 0.2);
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
    text-align: right;
    margin-bottom: 0;
}

.testimonial-content p::before {
    content: '\201C';
    font-size: 5rem;
    color: rgba(253, 220, 79, 0.15);
    position: absolute;
    top: -30px;
    right: -15px;
    z-index: -1;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-right: 30px;
    transition: all 0.3s ease;
}

.testimonial-slide:hover .testimonial-author {
    transform: translateX(-10px);
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-left: 1.5rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    object-fit: cover;
}

.testimonial-slide:hover .testimonial-author img {
    transform: scale(1.1);
    border-width: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.testimonial-author h4 {
    margin-bottom: 0.3rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.testimonial-author p {
    font-size: 1rem;
    opacity: 0.9;
    color: var(--text-color);
    margin-bottom: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    padding: 15px 0;
}

.slider-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.slider-dots {
    display: flex;
    gap: 12px;
    margin: 0 25px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.results-images {
    margin-top: 3rem;
    text-align: center;
}

.results-images p {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.results-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.results-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.results-gallery img:hover {
    transform: scale(1.03);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 220, 79, 0.1), transparent 70%);
    z-index: 1;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 220, 79, 0.1), transparent 70%);
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 2;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--primary-color), #fff9c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cta p {
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    font-weight: 500;
}

/* Contact Section
.contact {
    padding: 4rem 0;
    background-color: var(--dark-color);
    position: relative;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: rgba(253, 220, 79, 0.05);
    z-index: 1;
}

.contact-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.booking-info, .gift-info {
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.booking-info h3, .gift-info h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.booking-info h3::after, .gift-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.booking-info p, .gift-info p {
    margin: 20px 0;
    font-size: 1.2rem;
    line-height: 1.6;
}

.gift-info {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.gift-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.info-item i {
    color: var(--primary-color);
    font-size: 2rem;
    animation: pulse 2s infinite;
}

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

.whatsapp-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    display: inline-block;
}

.whatsapp-link:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-form {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    background-color: var(--dark-color);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
} */

/* Footer */
.footer {
    background-color: black;
    color: var(--text-color);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #adb5bd;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-services a {
    color: #adb5bd;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-right: 5px;
    text-decoration: none;
}

.footer-contact .info-item {
    justify-content: flex-start;
}

.footer-contact .info-item i {
    font-size: 1.2rem;
    margin-left: 0.8rem;
}

.footer-contact a {
    color: #adb5bd;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: var(--transition);
    background-color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    color: black;
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 1rem;
    font-weight: 500;
    color: #adb5bd;
}

/* Media Queries for Responsive Design */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .course-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Design for Mobile */
@media (max-width: 767px) {
    .hero {
        padding: 6rem 0 3rem;
        min-height: 90vh;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
    }
    
    .hero-main {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .hero-content {
        order: 2;
        margin-bottom: 2rem;
    }
    
    .hero-image {
        order: 1;
        margin-top: 20px;
        margin-bottom: 1.5rem;
    }
    
    .hero-image img {
        max-width: 200px;
        border-radius: 12px;
        border-width: 2px;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1.8rem;
        line-height: 1.75;
        letter-spacing: -0.2px;
        transform: perspective(800px) rotateX(3deg);
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-content h2::after {
        width: 90px;
        height: 4px;
        bottom: -12px;
    }
    
    .hero-content h2::before {
        font-size: 1.2rem;
        top: -15px;
        right: -20px;
    }
    
    .hero-content h2:hover {
        transform: perspective(800px) rotateX(0deg) scale(1.01);
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        gap: 1.2rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .urgency-text {
        font-size: 1.1rem;
        padding: 0.7rem 1.5rem;
        max-width: 350px;
        margin: 0.8rem auto;
    }
    
    .social-proof {
        padding: 1.2rem 1.5rem;
        margin-top: 1rem;
        max-width: 350px;
        border-radius: 15px;
    }
    
    .social-proof p {
        font-size: 1rem;
        font-weight: 700;
        line-height: 2;
        margin: 0;
    }
    

    
    .mentor-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .stat-item {
        padding: 1.2rem 1rem;
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Responsive Design for Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 720px;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .nav-list {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        border: none;
        gap: 1rem;
    }
    
    .nav-list li {
        margin: 0;
        text-align: left;
    }
    
    .nav-list a {
        padding: 0.6rem 1rem;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(253, 220, 79, 0.08), rgba(253, 220, 79, 0.04));
        border: 1px solid rgba(253, 220, 79, 0.15);
        transition: all 0.3s ease;
        font-weight: 500;
        font-size: 0.9rem;
    }
    
    .nav-list a:hover, .nav-list a.active {
        color: var(--primary-color);
        background: linear-gradient(135deg, rgba(253, 220, 79, 0.15), rgba(253, 220, 79, 0.08));
        border-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(253, 220, 79, 0.2);
    }
    
    .hero {
        padding: 10rem 0 6rem;
        min-height: 100vh;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        max-width: 1200px;
        text-align: center;
    }
    
    .hero-main {
        display: flex;
        align-items: center;
        gap: 4rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        flex: 1;
        margin-bottom: 0;
    }
    
    .social-proof {
        margin-top: 2rem;
        margin-bottom: 0;
    }
    
    .hero-content h2 {
        font-size: 3.5rem;
        margin-bottom: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 1.4rem;
        margin-bottom: 3.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
    }
    
    .hero-image {
        flex: 1;
        margin-top: 0;
    }
    
    .hero-image img {
        max-width: 500px;
        border-radius: 25px;
    }
    
    .mentor-content {
        align-items: stretch;
        justify-content: center;
    }
    
    .mentor-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
        max-width: 700px;
        padding: 3rem;
        margin: 0 auto;
        background: linear-gradient(135deg, rgba(253, 220, 79, 0.05), rgba(253, 220, 79, 0.02));
        border: 1px solid rgba(253, 220, 79, 0.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .mentor-image {
        flex-shrink: 0;
        margin-bottom: 0;
        width: 220px;
        height: 220px;
    }
    
    .mentor-image img {
        width: 220px;
        height: 220px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid var(--primary-color);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }
    
    .mentor-info {
        flex: 1;
        padding-right: 0;
    }
    
    .mentor-info h3 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, var(--primary-color), #fff9c4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .mentor-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 2rem 0;
        max-width: 600px;
        width: 100%;
    }
    
    .stat-item {
        padding: 1.5rem;
        background: linear-gradient(135deg, rgba(253, 220, 79, 0.12), rgba(253, 220, 79, 0.08));
        border: 1px solid rgba(253, 220, 79, 0.25);
        border-radius: 16px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    .stat-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(253, 220, 79, 0.1), transparent 50%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }
    
    .stat-item:hover {
        transform: translateY(-8px) scale(1.02);
        border-color: rgba(253, 220, 79, 0.4);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }
    
    .stat-item:hover::before {
        opacity: 1;
    }
    
    .stat-number {
        font-size: 1.8rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary-color), #fff9c4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: none;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-color);
        opacity: 0.9;
        letter-spacing: 0.3px;
    }
}

/* Responsive Design for Desktop */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }
    
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 70px;
    }
    
    .nav {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        overflow: visible;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .nav-list {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        border: none;
        gap: 1.2rem;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }
    
    .nav-list li {
        margin: 0;
        text-align: left;
    }
    
    .nav-list a {
          padding: 0.6rem 1.2rem;
          border-radius: 25px;
          background: linear-gradient(135deg, rgba(253, 220, 79, 0.1), rgba(253, 220, 79, 0.05));
          border: 1px solid rgba(253, 220, 79, 0.2);
          transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
          font-weight: 600;
          font-size: 0.9rem;
          position: relative;
          overflow: hidden;
          text-decoration: none;
          display: inline-block;
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          white-space: nowrap;
          flex-shrink: 0;
      }
    
    .nav-list a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(253, 220, 79, 0.3), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-list a:hover::before {
        left: 100%;
    }
    
    .nav-list a:hover, .nav-list a.active {
         color: var(--primary-color);
         background: linear-gradient(135deg, rgba(253, 220, 79, 0.25), rgba(253, 220, 79, 0.15));
         border-color: var(--primary-color);
         transform: translateY(-3px) scale(1.02);
         box-shadow: 0 12px 25px rgba(253, 220, 79, 0.4);
         text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     }
     
     .nav-list a.active {
         background: linear-gradient(135deg, var(--primary-color), rgba(253, 220, 79, 0.8));
         color: var(--dark-color);
         font-weight: 700;
         border-color: var(--primary-color);
         box-shadow: 0 8px 20px rgba(253, 220, 79, 0.5);
     }
     
     .nav-list a:focus {
         outline: 2px solid var(--primary-color);
         outline-offset: 2px;
     }
    
    .hero {
        padding: 12rem 0 8rem;
        min-height: 100vh;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        max-width: 1200px;
        text-align: center;
    }
    
    .hero-main {
        display: flex;
        align-items: center;
        gap: 5rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-content {
         text-align: center;
         flex: 1;
         margin-bottom: 0;
     }
     
     .hero-content h2 {
         font-size: 2.75rem;
         margin-bottom: 3rem;
         line-height: 1.75;
     }
     
     .hero-content p {
         font-size: 1.1rem;
         margin-bottom: 4rem;
         max-width: 550px;
         margin-left: auto;
         margin-right: auto;
     }
     
     .cta-buttons {
         flex-direction: row;
         gap: 2.5rem;
         justify-content: center;
         max-width: 100%;
     }
     
     .urgency-text {
         max-width: 100%;
         font-size: 1rem;
         padding: 0.8rem 2rem;
     }
     
     .social-proof {
         margin-top: 0;
         margin-bottom: 0;
     }

     .social-proof p {
         margin: 0;
     }
    
    .hero-image {
        flex: 1;
        margin-top: 0;
    }
    
    .hero-image img {
         max-width: 500px;
         border-radius: 25px;
     }
    
    .mentor-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4rem;
        text-align: right;
        max-width: 1140px;
        padding: 4rem;
        margin: 0 auto;
        background: linear-gradient(135deg, rgba(253, 220, 79, 0.05), rgba(253, 220, 79, 0.02));
        border: 1px solid rgba(253, 220, 79, 0.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .mentor-image {
        flex-shrink: 0;
        margin-bottom: 0;
        width: 280px;
        height: 280px;
    }
    
    .mentor-image img {
        width: 280px;
        height: 280px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid var(--primary-color);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }
    
    .mentor-info {
        flex: 1;
        padding-right: 2rem;
    }
    
    .mentor-info h3 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        background: linear-gradient(135deg, var(--primary-color), #fff9c4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .mentor-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin: 2.5rem 0;
        max-width: 800px;
        width: 100%;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
        background: linear-gradient(135deg, rgba(253, 220, 79, 0.12), rgba(253, 220, 79, 0.08));
        border: 1px solid rgba(253, 220, 79, 0.25);
        border-radius: 16px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    .stat-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(253, 220, 79, 0.1), transparent 50%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }
    
    .stat-item:hover {
        transform: translateY(-8px) scale(1.02);
        border-color: rgba(253, 220, 79, 0.4);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }
    
    .stat-item:hover::before {
        opacity: 1;
    }
    
    .stat-number {
        font-size: 2.25rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary-color), #fff9c4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: none;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-color);
        opacity: 0.9;
        letter-spacing: 0.3px;
    }
    
    .mentor-description p {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    
    /* Optimize gallery slider for desktop */
    .gallery-slider {
        max-width: 600px;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    
    .gallery-slide img {
        max-height: 400px;
        object-fit: contain;
        background-color: #f8f9fa;
    }
    
    .course-info {
         grid-template-columns: repeat(4, 1fr);
     }
     
     /* Enhanced About Mentor section spacing */
     .about-mentor {
         padding: 6rem 0;
     }
     
     /* Optimized testimonials section for desktop */
     .testimonials {
         padding: 5rem 0;
     }
     
     .results-container {
         max-width: 1200px;
     }
     
     .results-container h3 {
         font-size: 2rem;
         margin-bottom: 3rem;
     }
     
     .slider-controls {
         margin-top: 2rem;
         gap: 2rem;
     }
     
     .slider-btn {
         width: 50px;
         height: 50px;
         font-size: 1.2rem;
     }
     
     .dot {
         width: 12px;
         height: 12px;
     }
    
    .instructor-profile {
        flex-direction: row;
        text-align: right;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .instructor-image {
        margin-bottom: 0;
    }
    
    .contact-container {
        flex-direction: row;
    }
    
    .contact-info,
    .contact-form {
        flex: 1;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .footer-logo {
        grid-column: span 1;
    }
    
    .footer-contact {
        grid-column: span 1;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .nav-list a {
        padding: 0.7rem 1.4rem;
        font-size: 1rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .nav-list {
        gap: 2rem;
    }
    
    .nav-list a {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: black;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Hero Section Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-to-top:hover {
    background-color: var(--dark-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Enhanced Hero Title Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(253, 220, 79, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(253, 220, 79, 0.6));
    }
}

@keyframes underlineGlow {
    0% {
        opacity: 0.7;
        transform: translateX(-50%) scaleX(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.1);
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: rotate(90deg) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: rotate(180deg) scale(0.9);
        opacity: 0.6;
    }
    75% {
        transform: rotate(270deg) scale(1.1);
        opacity: 0.9;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: black;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.whatsapp-float:hover {
    background-color: var(--dark-color);
    color: var(--primary-color);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}