:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --dark-color: #000000;
    --light-color: #f7f7f7;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    background: #f7f7f7;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .nav-link {
    color: #333333;
    font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #000000;
}

.navbar-brand {
    color: #000000 !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand img{height:60px;}	

.navbar-toggler {
    border-color: rgba(0,0,0,0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    color: white;
    padding: 100px 0;
}

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

.hero-badge .badge {
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group .btn {
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-cta-group .btn-warning {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border: none;
    color: #000;
}

.hero-cta-group .btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.hero-cta-group .btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.hero-highlight {
    color: #fff;
    border-bottom: 3px solid #ffc107;
    padding-bottom: 2px;
}

.hero-trust {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    opacity: 0.9;
    color: rgba(255,255,255,0.9);
}

.trust-item i {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Course Item Styling */
.course-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
}

.course-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12) !important;
    border-color: rgba(0,0,0,0.15);
    background-color: #fafafa !important;
}

.course-item h5 {
    color: #000;
}

a .course-item:hover h5 {
    color: #333;
}

.btn-primary-custom {
    background-color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: #00a383;
    transform: translateY(-2px);
}

.section-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.course-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.course-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.feature-box {
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.feature-box:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--light-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 15px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

.stats-section {
    background: var(--light-color);
    padding: 60px 0;
}

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

/* Image Styling */
.course-card img {
    transition: transform 0.3s ease;
}

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

.card-img-top {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}


/* Responsive adjustments */
@media (max-width: 770px) {
.navbar-brand img{height:50px;}	
		
}

@media (max-width: 576px) {

}	