/* Global Styles */
:root {
    --primary-color: #bc038e;
    --secondary-color: #610095;
    --dark-color: #333333;
    --light-color: #caaeff;
    --text-color: #666666;
    --white: #ffffff;
}

body {  
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Wide Section */
.wide-section-one {
    position: relative;
    padding: 100px 0;
    background: var(--light-color);
    color: var(--white);
    display: flex;
    align-items: stretch;
    background: #ffdbf6 !important;
}

/* Left Side Image */
.wide-img-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wide-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Right Side Content */
.wide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
}

.wide-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

.wide-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Simple Features List */
.simple-features {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.simple-features li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--dark-color);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.simple-features li i {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 10px;
}

.simple-features li:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 992px) {
    .wide-section-one {
        text-align: center;
        flex-direction: column;
    }
    
    .wide-img-wrapper {
        margin-bottom: 30px;
    }
    
    .simple-features li {
        justify-content: center;
    }
}

/* Course Topics Cards */
.course-topics {
    padding: 80px 0;
    background: var(--light-color);
}

/* Card Styling */
.topic-card {
    padding: 30px;
    border-radius: 12px;
    color: var(--white);
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--primary-color);
}

.topic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.topic-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Learn More Button */
.learn-more {
    display: inline-block;
    margin-top: 12px;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover {
    opacity: 0.8;
}

.learn-more:hover i {
    transform: translateX(4px);
}

/* Neutral Card Backgrounds */
.gradient-blue {  background: linear-gradient(135deg, #f5effb, #ebe0f8) !important; }
.gradient-green {  background: linear-gradient(135deg, #f5effb, #ebe0f8) !important; }
.gradient-purple {  background: linear-gradient(135deg, #f5effb, #ebe0f8) !important; }
.gradient-orange {  background: linear-gradient(135deg, #f5effb, #ebe0f8) !important; }

/* Responsive */
@media (max-width: 768px) {
    .topic-card {
        min-height: 180px;
    }

    .topic-icon {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.4rem;
    }
}

/* Core Abilities Section */
.core-abilities {
    padding: 80px 0;
    background-color: var(--light-color);
}

.ability-item {
    margin-bottom: 2rem;
}

.ability-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ability-item p {
    margin-bottom: 0;
}

/* Why Enroll Section */
.why-enroll {
    padding: 80px 0;
    background-color: var(--white);
}

.feature-box {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
   box-shadow: 0 15px 30px rgba(97, 0, 149, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(97, 0, 149, 0.974);


}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-box h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Course Objectives Section */
.course-objectives {
    padding: 80px 0;
    background: #ffdbf6 !important;
}

.objective-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.objective-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.objective-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.objective-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.shadow-sm {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

.rounded-3 {
    border-radius: 15px !important;
}

.text-primary {
    color: var(--primary-color) !important;
}



/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Additional Hover Effects */
.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

.hover-shadow {
    transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.lead{
    color: black !important;
}


