/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #f9fafb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page sections - initially hidden */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb#f9fafb(250, 250, 250);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
     font-size: 2rem;
            font-weight: 700;
            color: #222;
            margin: 0;
            line-height: 1;
            text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f87171 0%, #f87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo .tagline {

    font-size: 1.25rem;
            font-weight: 700; 
            margin: 0;
            display: block;
            text-transform: uppercase;
            letter-spacing: 1px;
             color: #6b7280;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: #ef4444;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    border-radius: 1px;
}

.btn-signup {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* COURSE SLIDESHOW SECTION */
.course-slideshow {
    position: relative;
    padding-top: 80px;
    height: 100vh;
    overflow: hidden;
}

.slides-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background-size: cover;
    background-position: center;
    transform: scale(0.05);
}

.slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.slide-content {
    max-width: 600px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
    transition-delay: 0.5s;
    position: relative;
    z-index: 2;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.slide-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.slide-indicators {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    padding: 0 20px;
}

/* Default button styles (for larger screens) */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    padding: 0 20px;
}

/* Default button styles (for larger screens) */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    padding: 0 20px;
    touch-action: manipulation; /* Prevents default touch behaviors */
}

.slide-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 2.s ease;
    
    /* Prevent touch size changes */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transform: translateZ(0); /* Hardware acceleration */
}

/* Remove any active state scaling */
.slide-nav button:active,
.slide-nav button:focus {
    transform: scale(1); /* Keep original size when touched */
    outline: none;
}

.slide-nav button:hover {
    background: white;
    transform: scale(1.05);
}

/* Mobile styles */
@media (max-width: 768px) {
    .slide-nav {
        padding: 0 15px; /* Reduce padding on mobile */
    }
    
    .slide-nav button {
        width: 40px;  /* Smaller size */
        height: 40px; /* Smaller size */
    }
    
    .slide-nav button svg {
        width: 20px;  /* Smaller icon */
        height: 20px; /* Smaller icon */
    }
}

/* Extra small mobile styles */
@media (max-width: 480px) {
    .slide-nav {
        padding: 0 10px; /* Even less padding */
    }
    
    .slide-nav button {
        width: 35px;  /* Even smaller */
        height: 35px; /* Even smaller */
    }
    
    .slide-nav button svg {
        width: 18px;  /* Even smaller icon */
        height: 18px; /* Even smaller icon */
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.btn-primary {
    position: relative;
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4);
}

.stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}
.section-heading {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #333;
}

.features-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-highlight-icon {
    font-size: 1.6rem;
}

.feature-highlight-text {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(239, 68, 68, 0.3);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    color: #374151;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.task-card {
    top: 15%;
    left: -10%;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    background: white;
}

.chart-card {
    bottom: 15%;
    right: -10%;
    width: 200px;
    background: white;
}

.chart-card h4 {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #374151;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 60px;
}

.bar {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    width: 18px;
    border-radius: 3px;
    animation: growBar 2s ease-out;
}

.hero-person {
    background: white;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size:1.15rem;
    color: #6b7280;
    margin-bottom: 3.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    max-width: 1000px;
    margin: 0 auto;
}

.category-card {
    
    background: white;
    padding: 2.2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.category-card.ui-ux::before {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
}

.category-card.web-dev::before {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.category-card.digital-marketing::before {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.category-card.practical::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.category-description {
    color: #6b7280;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-explore {
    position: relative;
    background: transparent;
    color: #ef4444;
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid #ef4444;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: auto;
}

.btn-explore:hover {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.2);
}

.browse-all {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.3);
    padding: 2rem;
}

.browse-all:hover {
    transform: translateY(-12px);
}

.browse-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.browse-text {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.8rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.8rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 140px 0 90px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.page-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-header p {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/* Courses Page */
.courses-page {
    padding: 80px 0;
    background: white;
}

.courses-grid-extended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.2rem;
}

.course-card-large {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.course-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-card-large.english::before {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

.course-card-large.ms-office::before {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
}

.course-card-large:hover::before {
    opacity: 0.1;
}

.course-card-large:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.course-header {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    margin-bottom: 1.3rem;
}

.course-header .course-icon {
    font-size: 2.8rem;
}

.course-header h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a1a1a;
}

.course-card-large p {
    color: #6b7280;
    margin-bottom: 1.8rem;
    line-height: 1.7;
    font-size: 1rem;
}

.course-stats {
    display: flex;
    gap: 0.9rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.course-stats span {
    background: #f8fafc;
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    border: 1px solid #e5e7eb;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1.3rem;
    color: #1a1a1a;
}

.contact-info p {
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    margin-bottom: 1.8rem;
}

.contact-icon {
    font-size: 1.4rem;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-item h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-size: 1.05rem;
}

.contact-item p {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
}

.contact-social {
    margin-top: 2.5rem;
}

.contact-social h4 {
    font-weight: 700;
    margin-bottom: 1.3rem;
    color: #1a1a1a;
    font-size: 1.15rem;
}

.social-links {
    display: flex;
    gap: 0.9rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: 1px solid #e5e7eb;
    color: #1a1a1a;
}

.social-link:hover {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    color: white;
}

/* Form Styles */
.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid #e5e7eb;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.92rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ef4444;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
}

.checkbox-group a {
    color: #ef4444;
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    color: #1a1a1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
}

.faq-item {
    background: white;
    padding: 2.2rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.faq-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    color: #1a1a1a;
    line-height: 1.4;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #f8fafc;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
}

.review-card {
    background: white;
    padding: 2.2rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    position: relative;
}

.review-card::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 4.5rem;
    color: #e5e7eb;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-content {
    margin-top: 1.8rem;
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    margin-top: 1.8rem;
}

.author-details {
    margin-left: 1rem;
}

.author-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.05rem;
}

.author-course {
    color: #6b7280;
    font-size: 0.85rem;
}

.rating {
    color: #f59e0b;
    margin-top: 0.4rem;
}

/* Physical Classes Badge */
.physical-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.45rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.9rem;
}

/* Updated Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: white;
    padding: 70px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.05) 0%, transparent 40%);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    grid-column: span 1;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0; /* Remove margin from h3 */
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .tagline {
    color: #9ca3af;
    margin-bottom: 1.2rem;
    font-weight: 500;
    display: block;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.3rem;
}
.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.8rem;
}

.footer-column {
    padding: 1rem;
}

.footer-column h4 {
    font-weight: 700;
    margin-bottom: 1.3rem;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    border-radius: 2px;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.footer-column a i {
    color: #ef4444;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-column a:hover i {
    color: #ef4444;
}

.contact-info-item {
    display: flex;
    gap: 0.9rem;
    margin-bottom: 1.3rem;
    align-items: flex-start;
}

.contact-icon-circle {
    min-width: 38px;
    height: 38px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 1rem;
}

.contact-info-text {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-info-text strong {
    color: white;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.3rem;
    border-radius: 15px;
    margin-top: 1.3rem;
}

.footer-newsletter h4 {
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form button {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.social-links-footer {
    display: flex;
    gap: 0.9rem;
    margin-top: 1.3rem;
}

.social-link-footer {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.social-link-footer:hover {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    transform: translateY(-5px);
}

.map-link {
    display: inline-block;
    margin-top: 0.9rem;
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.map-link:hover {
    color: #ef4444;
    text-decoration: underline;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 10000;
    max-width: 380px;
    padding: 1.3rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.4rem;
    cursor: pointer;
    margin-left: 0.9rem;
}

.notification-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.notification-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.notification-info {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    color: white;
}

.btn-primary.loading {
    pointer-events: none;
    opacity: 0.7;
}

.hidden {
    display: none !important;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes growBar {
    0% { height: 0%; }
    100% { height: var(--height); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-container {
        gap: 4rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1.8rem 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-highlight {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .courses-grid-extended {
        grid-template-columns: 1fr;
    }
    
    .stats {
        gap: 1.8rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .visual-content h2 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 1.8rem;
    }
    
    /* Slideshow adjustments */
    .course-slideshow {
        height: 80vh;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .contact-grid {
        gap: 2.5rem;
    }
    
    /* Slideshow adjustments */
    .course-slideshow {
        height: 70vh;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .logo-img {
        height: 60px;
    }

    .nav-logo .tagline {

    font-size: 0.8rem;
            font-weight: 700; 
            margin: 0;
            display: block;
            text-transform: uppercase;
            letter-spacing: 1px;
             color: #6b7280;
}
}

