/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
}

body {
    background-color: #FFF9F6;
    overflow-x: hidden;
    color: #333;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(255, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: #FF7A50;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: #FF7A50;
    border-radius: 50%;
    margin-left: 2px;
}

.menu {
    display: flex;
    list-style: none !important;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.menu li {
    position: relative;
}

.menu li a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF7A50;
    transition: width 0.3s ease;
}

.menu li a:hover::after,
.menu li a.active::after {
    width: 100%;
}

.menu li a:hover,
.menu li a.active {
    color: #FF7A50;
}

/* Submenu Styles */
.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 8px;
    margin-top: 10px;
}

.submenu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: white;
    transform: rotate(45deg);
}

.menu li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.submenu li {
    margin: 0;
}

.submenu li a {
    padding: 12px 16px;
    font-size: 14px;
    color: #555;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.submenu li a:hover {
    background-color: #FFF9F6;
    color: #FF7A50;
}

.submenu li a::after {
    display: none;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 24px;
    display: none;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #555;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-sidebar:hover {
    background-color: #FFF9F6;
    color: #FF7A50;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu li a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    background-color: #FFF9F6;
    color: #FF7A50;
}

.sidebar-menu .submenu {
    position: static;
    transform: none;
    box-shadow: none;
    margin: 8px 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    display: none;
}

.sidebar-menu .submenu::before {
    display: none;
}

.sidebar-menu .submenu li a {
    padding-left: 32px;
    font-size: 14px;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.join-btn {
    background-color: #222;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background-color: #FF7A50;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #555;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: #FFF9F6;
    color: #FF7A50;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    position: relative;
    background: linear-gradient(135deg, #FFF9F6 0%, #FFF0EB 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 80, 0.1) 0%, rgba(255, 122, 80, 0) 70%);
    transform: rotate(-15deg);
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 122, 80, 0.1);
    color: #FF7A50;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 122, 80, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
}

.badge svg {
    margin-right: 10px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #222;
    letter-spacing: -0.5px;
}

.highlight {
    color: #FF7A50;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 122, 80, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 17px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.start-btn {
    background-color: #FF7A50;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 122, 80, 0.3);
}

.start-btn:hover {
    background-color: #FF6B3D;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 122, 80, 0.4);
}

.start-btn svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.start-btn:hover svg {
    transform: translateX(4px);
}

.how-btn {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.how-btn:hover {
    color: #FF7A50;
}

.play-icon {
    width: 48px;
    height: 48px;
    background-color: #FF7A50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 122, 80, 0.3);
}

.how-btn:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 122, 80, 0.4);
}

.hero-image-container {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.stats-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background-color: #FFF9F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.stat-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.stat-content p {
    font-size: 15px;
    color: #666;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

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

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image-container {
        order: 0;
        margin-bottom: 20px;
    }

    .hero-description {
        margin: 0 auto 32px;
    }

    .hero-cta {
        justify-content: center;
    }

    .stats-container {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }

    .start-btn {
        width: 100%;
        justify-content: center;
    }

    .how-btn {
        width: 100%;
        justify-content: center;
    }

    .stats-container {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 32px;
    }
}

/* Mobile Sidebar Styles */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-sidebar-close:hover {
    background: #FFF9F6;
    color: #FF7A50;
}

.mobile-sidebar-menu {
    padding: 20px;
}

.mobile-sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-sidebar-menu li {
    margin-bottom: 10px;
}

.mobile-sidebar-menu a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-sidebar-menu a:hover,
.mobile-sidebar-menu a.active {
    background: #FFF9F6;
    color: #FF7A50;
}

.mobile-sidebar-submenu {
    padding-left: 20px;
    display: none;
    margin-top: 5px;
}

.mobile-sidebar-submenu.active {
    display: block;
}

.mobile-sidebar-submenu a {
    font-size: 14px;
    padding: 10px 16px;
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #FFF9F6;
    color: #FF7A50;
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .right-nav {
        display: none;
    }
}

/* Features Section Styles */
.features {
    padding: 100px 0;
    background-color: #fff;
}

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

.section-badge {
    display: inline-block;
    background-color: rgba(255, 122, 80, 0.1);
    color: #FF7A50;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 2rem;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

.section-description {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: #FFF9F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Courses Section Styles */
.courses {
    padding: 100px 0;
    background-color: #FFF9F6;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.course-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-level {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #FF7A50;
}

.course-content {
    padding: 24px;
}

.course-category {
    color: #FF7A50;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.course-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.course-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #FFB800;
}

.rating-count {
    color: #666;
    font-size: 14px;
}

.course-students {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.course-price {
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.course-btn {
    background: #FF7A50;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.course-btn:hover {
    background: #FF6B3D;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }

    .courses {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section Styles */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff 0%, #FFF9F6 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 80, 0.1) 0%, rgba(255, 122, 80, 0) 70%);
    transform: rotate(-15deg);
    z-index: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 122, 80, 0.1) 0%, rgba(255, 122, 80, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 120px;
    color: #FF7A50;
    opacity: 0.1;
    position: absolute;
    top: -40px;
    left: -20px;
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    color: #444;
    font-size: 17px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FF7A50;
    padding: 3px;
    background: white;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-author img {
    transform: scale(1.1);
}

.author-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

.author-info p {
    color: #666;
    font-size: 15px;
    font-style: normal;
}

/* Footer Styles */
.footer {
    background: #111;
    color: white;
    padding: 100px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 122, 80, 0.15) 0%, rgba(255, 122, 80, 0) 70%);
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.footer-brand p {
    color: #888;
    margin: 24px 0;
    line-height: 1.8;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FF7A50;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link:hover svg path {
    fill: white;
}

.footer-links h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #FF7A50;
}

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

.footer-links ul li {
    margin-bottom: 16px;
}

.footer-links ul li a {
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #FF7A50;
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-newsletter h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #FF7A50;
}

.footer-newsletter p {
    color: #888;
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    padding: 16px 30px;
    border: none;
    border-radius: 50px;
    background: #FF7A50;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 122, 80, 0.3);
}

.newsletter-form button:hover {
    background: #FF6B3D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 80, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #666;
    font-size: 15px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Remove all pricing section CSS */
.pricing {
    display: none;
}

.pricing-grid,
.pricing-card,
.pricing-badge,
.pricing-header,
.price,
.currency,
.amount,
.period,
.pricing-features,
.pricing-btn {
    display: none;
}

/* Learning Path Section Styles */
.learning-path {
    display: none;
}

.learning-path::before {
    display: none;
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.path-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 122, 80, 0.1) 0%, rgba(255, 122, 80, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.path-card:hover::before {
    opacity: 1;
}

.path-icon {
    width: 70px;
    height: 70px;
    background: #FFF9F6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.path-card:hover .path-icon {
    background: #FF7A50;
    transform: rotateY(180deg);
}

.path-card:hover .path-icon svg path {
    stroke: white;
}

.path-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.path-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.path-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.path-steps li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: #444;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.path-steps li:last-child {
    border-bottom: none;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #FFF9F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #FF7A50;
    font-size: 14px;
}

.path-card:hover .step-number {
    background: #FF7A50;
    color: white;
}

.path-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FF7A50;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.path-btn svg {
    transition: transform 0.3s ease;
}

.path-btn:hover {
    color: #FF6B3D;
}

.path-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .path-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .learning-path {
        padding: 60px 0;
    }

    .path-grid {
        grid-template-columns: 1fr;
    }
}

/* How It Works Section Styles */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #FFF9F6 100%);
    position: relative;
    overflow: hidden;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.step-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 122, 80, 0.1) 0%, rgba(255, 122, 80, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.step-number {
    width: 50px;
    height: 50px;
    background: #FFF9F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #FF7A50;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    background: #FF7A50;
    color: white;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.step-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    opacity: 0.2;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section Styles */
.faq {
    padding: 100px 0;
    background-color: #FFF9F6;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 122, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.faq-layout {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.faq-left {
    flex: 1;
    max-width: 400px;
}

.faq .section-badge {
    background: linear-gradient(135deg, rgba(255, 122, 80, 0.1) 0%, rgba(255, 122, 80, 0.2) 100%);
    border: 1px solid rgba(255, 122, 80, 0.2);
    padding: 10px 20px;
    font-size: 15px;
    letter-spacing: 0.5px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.faq .section-badge:hover {
    transform: translateY(-2px);
}

.faq .section-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #222 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
    line-height: 1.2;
}

.faq .section-description {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.faq-right {
    flex: 2;
    max-width: 600px;
}

.faq-items {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.faq-answer {
    display: none;
    padding-top: 15px;
}

.faq-answer p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.toggle-icon {
    font-size: 24px;
    color: #FF7A50;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
    .faq-layout {
        flex-direction: column;
        gap: 40px;
    }

    .faq-left {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .faq-right {
        flex: none;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

/* Add this in the CSS section where other FAQ styles are */
.faq-illustration {
    max-width: 250px;
    margin-top: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.faq-illustration:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .faq-illustration {
        max-width: 150px;
        margin: 15px auto;
        display: block;
    }
}

/* Categories Section Styles */
.categories {
    padding: 100px 0;
    background-color: #FFF9F6;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.category-icon {
    width: 60px;
    height: 60px;
    background: #FFF9F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.category-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.category-link {
    display: inline-block;
    background-color: #FF7A50;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.category-link:hover {
    background-color: #FF6B3D;
    transform: translateY(-2px);
}

.show-more-container {
    text-align: center;
    margin-top: 40px;
}

.show-more-btn {
    text-decoration: none;
    background: #FF7A50;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: #FF6B3D;
    transform: translateY(-2px);
}

.course-card.hidden {
    display: none;
}

/*  About Page CSS */

/* Additional CSS for About page */
.about-hero {
    padding: 140px 0 80px;
    position: relative;
    background: linear-gradient(135deg, #FFF9F6 0%, #FFF0EB 100%);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 80, 0.1) 0%, rgba(255, 122, 80, 0) 70%);
    transform: rotate(-15deg);
    z-index: 0;
}

.about-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    padding: 80px 0;
}

.about-section:nth-child(even) {
    background-color: #FFF9F6;
}

.about-section:nth-child(odd) {
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mission-vision-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-vision-icon {
    width: 70px;
    height: 70px;
    background: #FFF9F6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.mission-vision-card:hover .mission-vision-icon {
    background: #FF7A50;
}

.mission-vision-card:hover .mission-vision-icon svg path {
    stroke: white;
}

.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF9F6 0%, #FFF0EB 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 80, 0.1) 0%, rgba(255, 122, 80, 0) 70%);
    transform: rotate(-15deg);
    z-index: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

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

.team-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 122, 80, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 12px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: white;
    transform: translateY(-3px);
}

.team-social a:hover svg path {
    fill: #FF7A50;
}

.team-info {
    padding: 20px;
    text-align: center;
    background: white;
}

.team-info h3 {
    margin: 0 0 5px;
    font-size: 20px;
    color: #222;
    font-weight: 600;
}

.team-role {
    color: #FF7A50;
    font-weight: 500;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .team-image {
        height: 360px;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: #FFF9F6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #FF7A50;
}

.value-card:hover .value-icon svg path {
    stroke: white;
}

.stats-section {
    background: linear-gradient(135deg, #FFF9F6 0%, #FFF0EB 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 80, 0.1) 0%, rgba(255, 122, 80, 0) 70%);
    transform: rotate(-15deg);
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #FF7A50;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 18px;
    color: #666;
}

@media (max-width: 1024px) {
    .about-grid {
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/*  Pages Page CSS  */

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.course-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #FFF9F6 0%, #FFF0EB 100%);
    position: relative;
    overflow: hidden;
}

.course-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.pexels.com/photos/1181467/pexels-photo-1181467.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center right;
    background-size: cover;
    opacity: 0.1;
}

.course-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.course-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
}

.course-hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #FF7A50;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-image {
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-content {
    padding: 20px;
}

.course-level {
    display: inline-block;
    padding: 5px 15px;
    background: #FFF0EB;
    color: #FF7A50;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.course-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.course-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.course-price {
    font-size: 24px;
    font-weight: 700;
    color: #FF7A50;
}

.course-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #FF7A50;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.course-btn:hover {
    background: #ff6a3d;
}

.features-section {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: #FFF9F6;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF0EB;
    border-radius: 50%;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: #FF7A50;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .course-hero h1 {
        font-size: 36px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
}

/*  Policies Page CSS  */

.policy-hero {
    background: linear-gradient(135deg, #FF7A50 0%, #FF5E3A 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

.policy-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.policy-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-5px);
}

.policy-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section h2 svg {
    width: 24px;
    height: 24px;
    color: #FF7A50;
}

.policy-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-section ul {
    list-style: none;
    padding: 0;
}

.policy-section li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.policy-section li:before {
    content: "•";
    color: #FF7A50;
    position: absolute;
    left: 0;
    font-size: 1.5em;
}

.contact-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #FF7A50;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-hero {
        padding: 80px 0 40px;
    }

    .policy-hero h1 {
        font-size: 2.5rem;
    }

    .policy-section {
        padding: 30px 20px;
    }
}


/*  Forgot Password Css  */

/* Forgot Password Specific Styles */
.forgot-password-section {
    padding: 160px 0 100px;
    min-height: calc(100vh - 500px);
    background: linear-gradient(135deg, #FFF9F6 0%, #FFF0EB 100%);
    position: relative;
    overflow: hidden;
}

.forgot-password-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 80, 0.1) 0%, rgba(255, 122, 80, 0) 70%);
    transform: rotate(-15deg);
    z-index: 0;
}

.forgot-password-container {
    max-width: 520px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out;
}

.forgot-password-header {
    padding: 40px 40px 20px;
    text-align: center;
}

.forgot-password-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 16px 0 20px;
}

.forgot-password-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.forgot-password-form-container {
    padding: 0 40px 40px;
}

.forgot-password-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    border-color: #FF7A50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 122, 80, 0.2);
}

.input-wrapper input.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px;
}

.form-message {
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-message.success {
    background-color: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
    display: block;
}

.form-message.error {
    background-color: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
    display: block;
}

.reset-btn {
    position: relative;
    width: 100%;
    padding: 16px 32px;
    background: #FF7A50;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(255, 122, 80, 0.3);
}

.reset-btn:hover {
    background: #FF6B3D;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 122, 80, 0.4);
}

.reset-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255, 122, 80, 0.4);
}

.reset-btn .btn-text {
    transition: opacity 0.3s ease;
}

.reset-btn .loader {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s infinite linear;
    display: none;
}

.reset-btn.loading .btn-text {
    opacity: 0;
}

.reset-btn.loading .loader {
    display: block;
}

.reset-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-footer {
    text-align: center;
    margin-top: 8px;
}

.form-footer p {
    color: #666;
    font-size: 14px;
}

.login-link {
    color: #FF7A50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-link:hover {
    color: #FF6B3D;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .forgot-password-section {
        padding: 140px 0 80px;
    }

    .forgot-password-container {
        margin: 0 20px;
    }

    .forgot-password-header,
    .forgot-password-form-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .forgot-password-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .forgot-password-section {
        padding: 120px 0 60px;
    }

    .forgot-password-header h1 {
        font-size: 24px;
    }

    .forgot-password-header p {
        font-size: 14px;
    }

    .form-group label {
        font-size: 13px;
    }

    .input-wrapper input {
        padding: 14px 16px 14px 44px;
        font-size: 14px;
    }

    .reset-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/*  Sign UP Page CSS  */

/* Custom CSS for Sign-up Page */
.signup-section {
    padding: 140px 0 80px;
    min-height: calc(100vh - 100px);
    background: linear-gradient(135deg, #FFF9F6 0%, #FFF0EB 100%);
    position: relative;
}

.signup-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 80, 0.1) 0%, rgba(255, 122, 80, 0) 70%);
    transform: rotate(-15deg);
    z-index: 0;
}

.signup-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.signup-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 550px;
    padding: 40px;
    animation: fadeIn 0.8s ease-out;
}

.signup-header {
    text-align: center;
    margin-bottom: 30px;
}

.signup-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.signup-subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-control:focus {
    border-color: #FF7A50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 122, 80, 0.1);
    background: white;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 45px;
    cursor: pointer;
    color: #666;
}

.password-strength {
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
    margin-top: 8px;
    overflow: hidden;
}

.password-strength-meter {
    height: 100%;
    width: 0;
    transition: width 0.3s ease, background 0.3s ease;
}

.password-feedback {
    font-size: 12px;
    margin-top: 6px;
    color: #666;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.checkbox-group input {
    margin-top: 5px;
    margin-right: 10px;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.checkbox-group a {
    color: #FF7A50;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.signup-btn {
    background: #FF7A50;
    color: white;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-btn:hover {
    background: #FF6B3D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 122, 80, 0.3);
}

.signup-btn svg {
    margin-left: 8px;
}

.or-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #999;
    font-size: 14px;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.or-divider::before {
    margin-right: 15px;
}

.or-divider::after {
    margin-left: 15px;
}

.social-signup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 24px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: #FF7A50;
    background: #FFF9F6;
    transform: translateY(-2px);
}

.login-link {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #666;
}

.login-link a {
    color: #FF7A50;
    font-weight: 600;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media (max-width: 768px) {
    .signup-section {
        padding: 120px 0 60px;
    }

    .signup-form-container {
        padding: 30px 20px;
        max-width: 100%;
    }

    .signup-title {
        font-size: 28px;
    }

    .social-signup {
        grid-template-columns: 1fr;
    }
}

/*  Login Page CSS  */

/* Custom CSS for Login Page */
.login-section {
    padding: 140px 0 80px;
    min-height: calc(100vh - 100px);
    background: linear-gradient(135deg, #FFF9F6 0%, #FFF0EB 100%);
    position: relative;
}

.login-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 80, 0.1) 0%, rgba(255, 122, 80, 0) 70%);
    transform: rotate(-15deg);
    z-index: 0;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.login-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 450px;
    padding: 40px;
    animation: fadeIn 0.8s ease-out;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.login-subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-control:focus {
    border-color: #FF7A50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 122, 80, 0.1);
    background: white;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 45px;
    cursor: pointer;
    color: #666;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    margin-right: 8px;
}

.forgot-password {
    color: #FF7A50;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #FF6B3D;
    text-decoration: underline;
}

.login-btn {
    background: #FF7A50;
    color: white;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.login-btn:hover {
    background: #FF6B3D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 122, 80, 0.3);
}

.or-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #999;
    font-size: 14px;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.or-divider::before {
    margin-right: 15px;
}

.or-divider::after {
    margin-left: 15px;
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 24px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: #FF7A50;
    background: #FFF9F6;
    transform: translateY(-2px);
}

.signup-link {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.signup-link a {
    color: #FF7A50;
    font-weight: 600;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media (max-width: 768px) {
    .login-section {
        padding: 120px 0 60px;
    }

    .login-form-container {
        padding: 30px 20px;
        max-width: 100%;
    }

    .login-title {
        font-size: 28px;
    }

    .social-login {
        grid-template-columns: 1fr;
    }
}

/*  Contact Page CSS  */


/* Additional CSS for Contact page */
.contact-hero {
    padding: 140px 0 80px;
    position: relative;
    background: linear-gradient(135deg, #FFF9F6 0%, #FFF0EB 100%);
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 80, 0.1) 0%, rgba(255, 122, 80, 0) 70%);
    transform: rotate(-15deg);
    z-index: 0;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
}

.contact-section:nth-child(even) {
    background-color: #FFF9F6;
}

.contact-section:nth-child(odd) {
    background-color: #fff;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF7A50;
    box-shadow: 0 0 0 3px rgba(255, 122, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    background: #FF7A50;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(255, 122, 80, 0.3);
}

.submit-btn:hover {
    background: #FF6B3D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 80, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
}

.contact-card {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.contact-card-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #FFF9F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: #FF7A50;
}

.contact-card:hover .contact-card-icon svg path {
    stroke: white;
}

.contact-card-content {
    flex: 1;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.contact-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.contact-card a {
    color: #FF7A50;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 3px;
}

.contact-card a:hover {
    color: #FF6B3D;
}

.contact-card .time-info {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.method-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

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

.method-icon {
    width: 70px;
    height: 70px;
    background: #FFF9F6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.method-card:hover .method-icon {
    background: #FF7A50;
}

.method-card:hover .method-icon svg path {
    stroke: white;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.office-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.office-image {
    height: 200px;
    background: linear-gradient(135deg, #FFF9F6 0%, #FFF0EB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.office-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 80, 0.2) 0%, rgba(255, 122, 80, 0) 70%);
    transform: rotate(-15deg);
}

.office-image svg {
    position: relative;
    z-index: 1;
}

.office-info {
    padding: 25px;
}

.office-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.office-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #666;
    font-size: 15px;
}

.office-detail svg {
    flex-shrink: 0;
}

.map-section {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder {
    text-align: center;
    color: #666;
}

.map-placeholder svg {
    margin-bottom: 20px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.support-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #FF7A50;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.support-card:hover::before {
    transform: scaleX(1);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: #FFF9F6;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

.support-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #FF7A50;
    border-radius: 24px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.support-card:hover .support-icon::after {
    opacity: 1;
}

.support-icon svg {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.support-card:hover .support-icon svg path {
    stroke: white;
}

.support-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.support-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    background: #FF7A50;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    font-size: 15px;
}

.support-btn svg {
    margin-left: 8px;
    transition: transform 0.4s ease;
}

.support-btn:hover {
    background: #FF6B3D;
    transform: translateY(-2px);
}

.support-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .support-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 768px) {
    .support-section {
        padding: 60px 0;
    }

    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info {
        max-width: 100%;
        margin-left: 0;
    }

    .contact-card {
        padding: 15px;
    }
}

/*  Courses Page CSS  */

/* Additional CSS for courses page */
.courses-hero-desc {
    margin: 0 auto;
}

.courses-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #FFF9F6 0%, #FFF0EB 100%);
    position: relative;
    overflow: hidden;
}

.courses-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 80, 0.1) 0%, rgba(255, 122, 80, 0) 70%);
    transform: rotate(-15deg);
    z-index: 0;
}

.courses-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.course-category-section {
    padding: 80px 0;
    background-color: #fff;
}

.course-category-section:nth-child(even) {
    background-color: #FFF9F6;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

.category-description {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.instructor-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.instructor-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.instructor-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.course-tags {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.course-tag {
    padding: 5px 12px;
    background-color: #F5F5F5;
    border-radius: 50px;
    font-size: 12px;
    color: #666;
}

.see-all-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 32px;
    background-color: #FF7A50;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.see-all-btn:hover {
    background-color: #ff6a3d;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .course-category-section {
        padding: 60px 0;
    }

    .category-title {
        font-size: 28px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }
}

.text-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}