
        /* ===== Global Styles ===== */
        :root {
            --primary: #FF0000;
            --primary-dark: #cc0000;
            --dark: #1a1a1a;
            --light: #f8f9fa;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --ai-color: #6e48aa;
            --web-color: #2b65ec;
            --mobile-color: #3cb371;
            --design-color: #ff7f50;
            --search-bg: #f1f3f5;
            --search-border: #dee2e6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--white);
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--white);
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            font-weight: 600;
            text-align: center;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
       
        
     
        
        /* ===== Header Styles ===== */
             
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        
#typed-text {
    
  border-right: 0.1em solid black;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 4s steps(30) 1s forwards, blink 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  } }

.section-title-course {
  text-align: center;
  font-size: 1.4rem; /* Responsive font size */
  font-weight: 700;
  color: #222;
  margin-bottom: 0.6rem;
}

        .logo {
            padding-left: 12px;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 2rem;
        }
        
        .nav-menu a {
            font-weight: 500;
            transition: var(--transition);
            padding: 0.5rem 0;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-toggle {
               padding-right: 10px;
               display: none;
               background: none;
               border: none;
               font-size: 1.5rem;
               cursor: pointer;
               color: var(--dark);
               /* Add these 2 lines to move it to the right */
               margin-left: auto; /* Pushes it to the right */
               order: 1; /* Ensures it stays on the right */
           }

 
        /* ===== Hero Section ===== */
        .hero {
        height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--white);
        margin-top: 60px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        transition: background-image 1s ease-in-out;
        }

        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
            display: inline;
           
            box-shadow: inset -0 -0.8em 0 rgba(0, 0, 0, 0.5);
            
        }
        
        .hero p {
            font-size: 1.2rem;
            /* margin-bottom: 2rem; */
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* ===== Courses Section ===== */
       
   
     
      .courses-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 1rem;
}

@media (min-width: 992px) {
  .courses-grid {
    width: 65%;
    grid-template-columns: repeat(2, 1fr);
  }
}

.course-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.course-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.course-content {
    
  padding: 1rem;
  
  flex-direction: column;
}
.course-meta .rating{
  
    font-size: 0.8rem;
}

.text-center {
  text-align: center;
  max-width: 80%;
  margin: 0 auto 1rem;      /* reduced bottom margin */
  color: #666666;           /* medium gray */
  font-size: clamp(0.8rem, 2.5vw, 1.05rem);  /* slightly smaller max size */
  line-height: 1.3;         /* tighter line spacing */
  font-weight: 420;
}

.text-center strong {
  color: #444444;           /* darker gray for emphasis */
  font-weight: 400;
}






.course-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #222;
}

.course-content p {
  font-size: 0.8rem;
  color: #7d7b7be0;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #555;
}

.course-meta .price {
  color: #e74c3c;
  font-weight: 700;
}

.course-meta .rating {
  color: #000000;
}

.course-card .btn {
  background-color: #007bff;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.course-card .btn:hover {
  background-color: #0056b3;
}

        
        /* ===== AI Section ===== */
        .ai-section {
             padding: 5rem 0; 
            background: linear-gradient(135deg, rgba(110, 72, 170, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
        }
        
        .ai-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .ai-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--ai-color);
        }
        
        .ai-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(110, 72, 170, 0.1);
        }
        
        .ai-content {
            padding: 1.5rem;
        }
        
        .ai-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--ai-color);
        }
        
        .ai-content p {
            color: var(--gray);
            margin-bottom: 1rem;
        }
        
        /* ===== Resources Section ===== */
        .resources-section {
            padding: 5rem 0;
            background-color: var(--white);
        }

        .resources-header {
            max-width: 800px;
            margin: 0 auto 2rem;
            text-align: center;
        }

        .resources-tools {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .search-container {
            position: relative;
            flex-grow: 1;
            max-width: 500px;
            min-width: 250px;
        }

        .search-bar {
            width: 100%;
            padding: 0.8rem 1rem 0.8rem 3rem;
            border: 1px solid var(--search-border);
            border-radius: 30px;
            font-size: 1rem;
            background-color: var(--search-bg);
            transition: var(--transition);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .search-bar:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
            background-color: var(--white);
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }

        .category-filters {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            align-items: center;
        }

        .filter-btn {
            padding: 0.6rem 1.25rem;
            border-radius: 30px;
            border: none;
            background-color: var(--light-gray);
            color: var(--dark);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.9rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .filter-btn:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .filter-btn.active {
            background-color: var(--primary);
            color: white;
        }

        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }

        .resource-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-color: rgba(0,0,0,0.1);
        }

        .resource-img {
            height: 180px;
            overflow: hidden;
            position: relative;
        }

        .resource-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .resource-card:hover .resource-img img {
            transform: scale(1.05);
        }

        .resource-content {
            padding: 1.5rem;
        }

        .category-badge {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.75rem;
        }

        .resource-content h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            line-height: 1.4;
            color: var(--dark);
        }

        .resource-content p {
            color: var(--gray);
            margin-bottom: 1rem;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .resource-meta {
            display: flex;
            align-items: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--light-gray);
        }

        .author-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            margin-right: 0.75rem;
            object-fit: cover;
            border: 2px solid var(--light-gray);
        }

        .author-name {
            font-size: 0.85rem;
            color: var(--gray);
            font-weight: 500;
        }

        /* ===== Pagination ===== */
        .pagination-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.75rem;
            margin-top: 3rem;
        }

        .pagination-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: none;
            background-color: var(--light-gray);
            color: var(--dark);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .pagination-btn:hover:not(:disabled) {
            background-color: var(--primary);
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .page-numbers {
            display: flex;
            gap: 0.5rem;
        }

        .page-number {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--light-gray);
            color: var(--dark);
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .page-number:hover:not(.active) {
            background-color: var(--light);
            transform: translateY(-1px);
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .page-number.active {
            background-color: var(--primary);
            color: white;
        }

        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            color: var(--gray);
            padding: 3rem;
            font-size: 1.1rem;
        }

        /* ===== YouTube Section ===== */
        .youtube-section {
            padding: 2rem 0;
            background-color: var(--light);
        }
        
        .youtube-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }
        
       
        .youtube-info {
            flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
        
        .youtube-preview {
            flex: 1;
            min-width: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .stat-label {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .youtube-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        /* ===== About Section ===== */
        .about-section {
            padding: 5rem 0;
            background-color: var(--white);
        }
        
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    text-align: left;
}
        
        /* ===== Contact Section ===== */
        .contact-section {
            padding: 5rem 0;
            background-color: var(--light);
        }
        
        .contact-content {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-info p {
            margin-bottom: 1.5rem;
            color: var(--gray);
        }
        
        .contact-email {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            color: var(--primary);
            font-weight: 600;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--white);
            border-radius: 50%;
            color: var(--dark);
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: var(--white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            transition: var(--transition);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        /* ===== Footer ===== */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 3rem 0 1rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .footer-col p {
            color: var(--light-gray);
            margin-bottom: 1rem;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col li {
            margin-bottom: 0.8rem;
        }
        
        .footer-col a {
            color: var(--light-gray);
            transition: var(--transition);
        }
        
        .footer-col a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-gray);
            font-size: 0.9rem;
        }
        .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}
        
        /* ===== Responsive Styles ===== */
        @media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--dark);
        transition: var(--transition);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 1rem;
        transition: var(--transition);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-container {
        padding: 6rem 1rem 2rem;
    }

        
    
    .article-content h2 {
        font-size: 1.6rem;
    }
    
    .article-content h3 {
        font-size: 1.3rem;
    }
    
    .tool-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .tool-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}
        .custom-multiselect {
    position: relative;
    margin-bottom: 1rem;
}
.form-input:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74,144,226,0.2);
}





.radio-options input[type="radio"] {
    margin-right: 8px;
}

.hidden-section {
    display: none;
}

.radio-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}



.selected-topics-hint {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

#feedback-message {
    color: green;
    font-weight: bold;
    margin-top: 10px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}
.custom-multiselect select {
    min-height: 44px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: 100%;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.custom-multiselect select:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74,144,226,0.2);
}

.custom-multiselect select option {
    padding: 8px 12px;
}

.custom-multiselect select option:hover {
    background-color: #f5f5f5;
}

.selected-items {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.selected-item {
    background-color: #e9f5ff;
    border: 1px solid #c2e0ff;
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.selected-item button {
    background: none;
    border: none;
    color: #4a90e2;
    margin-left: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
} .hidden {
        display: none;
    }


    /* FORM */
    
    .form-container {
            max-width: 700px;
            margin: 2rem auto;
            padding: 2.5rem;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
        }

        .form-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .form-header h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .form-header p {
            color: var(--gray);
            font-size: 1.1rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.75rem;
            font-weight: 600;
            color: var(--dark);
            font-size: 1rem;
        }

        .form-group label i {
            width: 20px;
            color: var(--primary);
            margin-right: 8px;
        }

        .form-input {
            width: 100%;
            padding: 1rem 1.25rem;
            font-size: 1rem;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            transition: var(--transition);
            background-color: var(--light);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.15);
            background-color: white;
        }

        .form-input::placeholder {
            color: var(--gray);
            opacity: 0.6;
        }

        textarea.form-input {
            min-height: 150px;
            resize: vertical;
            padding: 1.25rem;
        }

        .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 0.5rem;
        }

        .radio-option {
            position: relative;
            display: flex;
            align-items: center;
            cursor: pointer;
            padding-left: 28px;
        }

        .radio-option input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

        .radio-check {
            position: absolute;
            left: 0;
            height: 20px;
            width: 20px;
            background-color: white;
            border: 2px solid var(--border);
            border-radius: 50%;
            transition: var(--transition);
        }

        .radio-option:hover .radio-check {
            border-color: var(--primary);
        }

        .radio-option input:checked ~ .radio-check {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .radio-check:after {
            content: "";
            position: absolute;
            display: none;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: white;
        }

        .radio-option input:checked ~ .radio-check:after {
            display: block;
        }

        select[multiple] {
            height: auto;
            min-height: 120px;
            padding: 0.75rem;
        }

        select[multiple] option {
            padding: 0.75rem 1rem;
            margin: 0.25rem 0;
            border-radius: 5px;
            transition: var(--transition);
        }

        select[multiple] option:hover {
            background-color: var(--primary);
            color: white;
        }

        .select-hint {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.85rem;
            color: var(--gray);
            font-style: italic;
        }
        .service-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2b2d42;
    font-size: 1rem;
  }
  
  .radio-group-horizontal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .radio-option-horizontal {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-left: 28px;
    margin-bottom: 8px;
  }
  
  .radio-option-horizontal input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  .radio-custom {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .radio-option-horizontal:hover .radio-custom {
    border-color: #4361ee;
  }
  
  .radio-option-horizontal input:checked ~ .radio-custom {
    background-color: #4361ee;
    border-color: #4361ee;
  }
  
  .radio-custom:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
  }
  
  .radio-option-horizontal input:checked ~ .radio-custom:after {
    display: block;
  }
  
  .radio-text {
    margin-left: 8px;
    font-size: 0.95rem;
    color: #4a4a4a;
  }
  
  /* Responsive adjustments */
  @media (max-width: 600px) {
    .radio-group-horizontal {
      flex-direction: column;
      gap: 12px;
    }
  } @media (max-width: 448px) {


    .text-center {
  text-align: center;
  max-width: 97%;
  margin: 0 auto 1.2rem;      /* reduced bottom margin */
  color: #666666;           /* medium gray */
  font-size: clamp(0.8rem, 2.5vw, 1.05rem);  /* slightly smaller max size */
  line-height: 1.3;         /* tighter line spacing */
  font-weight: 300;
}
.course-card .btn {
  background-color: #007bff;
  color: #fff;
  width: 100%;
  padding: 0.3rem 0.4rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}



    .section-title-course {
  text-align: center;
  font-size: 1.1rem; /* Responsive font size */
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}
       .header-container {
           margin-right: 29px;
        }

  .hero {
    height: 32vh;
    display: flex;
    flex-direction: column;       /* Stack children vertically */
    align-items: center;          /* Center children horizontally */
    justify-content: center;      /* Center children vertically */
    text-align: center;
    color: var(--white);
   
  }

  .hero h1 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .course-meta .price {
      
    font-size: 12px;

}
  .hero p {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: 28px;
    margin-right: 28px;
  }.course-content h3 {
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }.course-content p {
            font-size: 0.7rem;
            margin-bottom: 0.6rem;
        }
   .resource-content h3 {
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
            line-height: 1.4;
            color: var(--dark);
        }.resource-content p {
            color: var(--gray);
            margin-bottom: 0.8rem;
            font-size: 0.8rem;
            line-height: 1.6;
        }
        .about-content p {
    font-size: 0.9rem;
    line-height: 1.3;
    
}.course-meta .rating {
            font-size: 0.5rem;
        }

  
  
  .section-title {
       font-size: 1.3rem;
            margin-bottom: 0rem;
  }

  .btn {
    width: 80%;
    padding: 0.6rem 1.1rem;
            border-radius: 8px;
            font-weight: 550px;
  }.stat-item{
   padding: 0.8rem;
  }.stat-number{
    font-size:1rem;
  }
}
/* Banner contact */

 .contact-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;

  /* Flexbox properties for centering */
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  min-height: 40vh;       /* Ensures full viewport height for vertical centering */
  padding: 0;              /* Remove padding to allow full centering */
}
.contact-hero .container {
    padding-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Contact button */
  .contact-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        
        .contact-card {
            background: var(--white);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.05);
            text-align: center;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .contact-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.25rem;
            background: var(--primary-extra-light);
            width: 70px;
            height: 70px;
            line-height: 70px;
            border-radius: 50%;
            display: inline-block;
        }
        
        .contact-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--dark);
        }
        
        .contact-card p {
            color: var(--gray);
            margin-bottom: 1.25rem;
            font-size: 0.95rem;
        }
/* ===== FAQ Section Styles ===== */
.faq-section {
 
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 8px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 1rem;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer-content {
    color: var(--gray);
    line-height: 1.7;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-search {
    margin-bottom: 2rem;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 3rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
}

.faq-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.no-results {
    text-align: center;
    color: var(--gray);
    padding: 2rem;
}
/* Add these styles to your existing CSS */
.faq-footer {
    text-align: center;
    margin-top: 2rem;
}

.faq-footer .btn {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.faq-footer .btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Google-style FAQ */
.faq-item {
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid var(--light-gray);
    border-radius: 0;
    margin-bottom: 0;
    padding: 1rem 0;
}

.faq-question {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding-right: 2rem;
}

.faq-question::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--gray);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-answer {
    padding: 0;
    color: var(--gray);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0.5rem 0 1rem;
}

/* Search container that appears after clicking View All */
.faq-search-container {
    margin: 2rem 0;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-search-container input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 3rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-search-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}


  /* Responsive adjustments */
  @media (max-width: 600px) {
    .faq-section h2 {
     font-size: 1.2rem;
    }.lead{
         font-size: 1.1rem;
    }.contact-hero h1{
        font-size: 1.2rem;
    }
  } @media (max-width: 448px) {
        .faq-section h2 {
     font-size: 1rem;
    }.lead{
         font-size: 0.7rem;
         padding-left: 10px;
         padding-right: 10px;
    }
    
      }




      



