
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #263997;
    --secondary-color: #263997;
    --accent-color: #4f46e5;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --footer-bg: #263997;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #f3f4f6;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
.btn-primary {
  color:#ffffff !important;
  background:#263997 !important;
    }




/* ========================================
   Header & Navigation
   ======================================== */
.site-header {
    padding-top: 70px;
}

.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
}

.brand-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.brand-text {
    color: var(--text-dark);
}

.brand-highlight {
    color: var(--primary-color);
}

.nav-link {
    color: #263997;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00B5E2;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background:#00B5E2;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}
.enroll-primary {
      background-color: #FF0000 !important;
      color:#ffffff !important;
      style:bold;
}


.btn-register {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    background: #263997;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-register:hover {
    transform: translateY(-2px);
    background:#00B5E2 !important;
    color:#ffffff !important;
}
.btn-outline-primary {
    --bs-btn-color: #00B5E2 !important;
    --bs-btn-border-color: #00B5E2 !important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #00B5E2 !important;
    --bs-btn-hover-border-color: #00B5E2 !important;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #00B5E2 !important;
    --bs-btn-active-border-color: #00B5E2 !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #00B5E2 !important;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #00B5E2 !important;
    --bs-gradient: none;
}


/* ========================================
   Hero Section
   ======================================== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-img {
    width: 100%;
    height: 880px;           
    object-fit: cover;       
}

.hero-overlay {
  z-index: 10;
}
.carousel-inner {
    overflow: hidden;        
}

.carousel-caption {
  bottom: 30%;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: #263997de !important;
}

.animate-fade-in {
  animation: fadeIn 1s ease-in-out forwards;
}

.animate-fade-in-delay {
  animation: fadeIn 1.5s ease-in-out forwards;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ========================================
   Sections
   ======================================== */
.section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #00B5E2 !important;
    margin-bottom: 1rem;
    position: relative;
    
}


.section-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #00B5E2;
    margin-bottom: 1rem;
}

.text-justify {
    text-align: justify;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: #263997 !important;
}

/* ========================================
   Feature Cards
   ======================================== */
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: #263997 !important;
    margin-bottom: 1rem;
}

.feature-card h5 {
    font-weight: 600;
    color: #263997 !important;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   Info Boxes
   ======================================== */
.info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.pricing-box {
    background: #263997 !important;;
    border: 2px solid #263997;
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.price-label {
    font-weight: 500;
    color: #ffffff !important;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.payment-methods {
    margin-top: 1rem;
}

/* ========================================
   Accordion
   ======================================== */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: #00B5E2;
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.course-list {
    list-style: none;
    padding: 0;
}

.course-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.course-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: #00B5E2;
    padding: 80px 20px;
}

/* ========================================
   Modal
   ======================================== */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-control,
.form-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* ========================================
   Footer Styles
   ======================================== */
.site-footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--white);
    color: var(--footer-bg);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-legal li {
    display: inline;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-partners {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 991px) {
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-register {
        margin-top: 1rem;
        width: 100%;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 140px 20px 80px;
    position: relative;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   About Page - Mission/Vision Cards
   ======================================== */
.mission-vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-vision-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mission-vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Value Cards */
.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partner-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.partner-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    padding: 1.5rem;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-color);
}

.team-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.contact-info-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-light);
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--secondary-color);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Office Hours */
.office-hours-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.hours-item strong {
    color: var(--text-dark);
}

.hours-item span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Social Links Large */
.social-links-large {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.social-link-lg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    min-width: 120px;
}

.social-link-lg:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

.social-link-lg i {
    font-size: 2rem;
    color: var(--primary-color);
}

.social-link-lg span {
    font-weight: 600;
}

/* ========================================
   Why Us Page Styles
   ======================================== */
.benefit-large-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.benefit-large-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-number {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.benefit-large-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.benefit-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.comparison-table th {
    padding: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.comparison-table td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table .highlight-col {
    background: rgba(102, 126, 234, 0.1);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h6 {
    margin: 0;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Included Items */
.included-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.included-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.included-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.included-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Guarantee Items */
.guarantee-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.guarantee-item:hover {
    background: rgba(102, 126, 234, 0.1);
}

.guarantee-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.guarantee-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guarantee-item p {
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   Courses Page Styles
   ======================================== */
.featured-course-banner {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--text-light);
}

.course-meta span {
    font-weight: 500;
}

.course-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-label {
    font-weight: 500;
    color: var(--text-light);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-usd {
    color: var(--text-light);
}

/* Course Cards */
.course-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.course-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.course-card-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.course-badge {
    background: #fbbf24;
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.course-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.course-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.course-highlights li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.course-highlights i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid var(--bg-light);
    margin-top: auto;
}

.course-footer .duration {
    color: var(--text-light);
}

.course-footer .price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Learning Format Cards */
.learning-format-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.learning-format-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.learning-format-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.learning-format-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.learning-format-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Requirements Box */
.requirements-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.requirements-box h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.simple-list {
    list-style: none;
    padding: 0;
}

.simple-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.simple-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Certification Logos */
.certification-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.cert-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.cert-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.certificate-preview {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured-pricing {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pricing-card h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price-display {
    margin: 2rem 0;
}

.price-display .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.price-display .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.payment-methods-display {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.payment-methods-display span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.payment-methods-display i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ========================================
   Additional Responsive Adjustments
   ======================================== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    border-radius: 10px;
    padding: 1rem;
  }

  .btn-register,
  .btn-login {
    width: 100%;
    margin-top: 0.5rem;
  }

  .footer-legal {
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-img {
    height: 350px;
  }

  .carousel-caption {
    bottom: 10%;
    font-size: 14px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .site-footer {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .navbar-brand img {
    width: 140px;
    height: auto;
  }

  .btn-register,
  .btn-login {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .footer-title {
    font-size: 1rem;
  }
}




