/* ===================================
   Lakme Academy - Main Stylesheet
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6A1B9A;
    --secondary-color: #422148;
    --accent-color: #6d6c6b;
    --button-color: #6a1b9a;
    --button-hover-color: #4a148c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --border-color: #bdc3c7;
    --transition: all 0.3s ease;
}

/* ===================================
   Typography & Global Styles
   =================================== */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--button-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--button-hover-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 27, 154, 0.3);
}

.btn-secondary {
    background-color: var(--button-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--button-hover-color);
}

.btn-link {
    color: var(--button-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-link:hover {
    color: var(--button-hover-color);
}

/* ===================================
   Header & Navigation
   =================================== */

.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

.logo .tagline {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 400;
}

.logo-image {
    max-width: 180px;
    max-height: 70px;
    height: auto;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    font-size: 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    background: 
        linear-gradient(135deg, rgba(190, 63, 171, 0.42) 0%, rgba(81, 7, 66, 0.8) 100%),
        url('../images/makeuphero.png') center center / cover no-repeat;
    color: white;
    padding: 8rem 2rem;
    text-align: center;
    min-height: 500px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: slideInDown 0.8s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: slideInUp 0.8s ease 0.2s backwards;
}

.hero-content .btn {
    animation: slideInUp 0.8s ease 0.4s backwards;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Courses Section
   =================================== */

.courses {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.courses-slider-wrapper {
    position: relative;
    width: 100%;
}

.courses-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
}

.courses-grid::-webkit-scrollbar {
    display: none;
}

.course-card {
    flex: 0 0 calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
    min-width: 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out;
    scroll-snap-align: start;
}

.course-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--button-color);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.course-slider-btn.prev {
    left: -21px;
}

.course-slider-btn.next {
    right: -21px;
}

.course-slider-btn:hover {
    transform: translateY(-2px);
    background: var(--button-hover-color);
    color: white;
}

.course-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-btn,
.testimonial-btn {
    background: var(--button-color) !important;
    color: white !important;
    border: none !important;
}

.slider-btn:hover,
.testimonial-btn:hover {
    background: var(--button-hover-color) !important;
}

.course-card:nth-child(1) {
    animation-delay: 0.1s;
}

.course-card:nth-child(2) {
    animation-delay: 0.2s;
}

.course-card:nth-child(3) {
    animation-delay: 0.3s;
}

.course-card:nth-child(4) {
    animation-delay: 0.4s;
}

.course-card:nth-child(5) {
    animation-delay: 0.5s;
}

.course-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.2);
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.course-image {
    height: 200px;
    background: linear-gradient(135deg, #ddd 0%, #aaa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.hairstyling-bg {
    background: linear-gradient(135deg, rgba(9, 0, 14, 0.5) 0%, rgba(150, 100, 180, 0.5) 100%),
                            url('../images/hairNew.png') center/cover no-repeat;
    background-blend-mode: overlay;
}


.cosmetology-bg {
    background: linear-gradient(135deg, rgba(13, 0, 20, 0.5) 0%, rgba(150, 100, 180, 0.5) 100%),
                            url('../images/skin 1CosNew.png') center/cover no-repeat;
    background-blend-mode: overlay;
}

.makeup-bg {
    background: linear-gradient(135deg, rgba(4, 0, 6, 0.5) 0%, rgba(150, 100, 180, 0.5) 100%),
                        url('../images/13.png') center/cover no-repeat;
    background-blend-mode: overlay;
}

.skincare-bg {
    background: linear-gradient(135deg, rgba(6, 0, 9, 0.5) 0%, rgba(150, 100, 180, 0.5) 100%),
                        url('../images/skinNew.png') center/cover no-repeat;
    background-blend-mode: overlay;
}

.nail-bg {
    background: linear-gradient(135deg, rgba(8, 0, 11, 0.5) 0%, rgba(150, 100, 180, 0.5) 100%),
                    url('../images/nail 1New.png') center/cover no-repeat;
    background-blend-mode: overlay;

}

.short-term-bg {
    background: linear-gradient(135deg, rgba(180, 140, 200, 0.5) 0%, rgba(150, 100, 180, 0.5) 100%),
                    url('../images/15.png') center/cover no-repeat;
    background-blend-mode: overlay;
}

.short-term-list {
    padding-left: 1rem;
    margin: 0 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.short-term-list li {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.4;
}

.course-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-content h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.course-content p {
    color: #666;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.course-accreditation {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.duration {
    display: inline-block;
    background-color: #f0f0f0;
    color: var(--primary-color);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===================================
   About Section
   =================================== */

.about {
    padding: 5rem 2rem;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background-color: white;
}

.about-vision {
    margin-bottom: 3rem;
}

.vision-card {
    background: linear-gradient(135deg, #87CEEB 0%, #6A1B9A 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.vision-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.vision-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 1rem;
}

.vision-card strong {
    font-weight: 700;
    color: #fff;
}

.about-mission {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.about-mission h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-mission p {
    color: #333;
    line-height: 1.8;
}

.about-tagline {
    background: linear-gradient(135deg, #fff9f0 0%, #6A1B9A 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
}

.about-tagline h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.about-tagline p {
    color: #333;
    line-height: 1.6;
}

.about-highlight {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 3rem;
}

.about-highlight p {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

.about-highlight strong {
    font-weight: 700;
}

.about-stats-wrapper {
    margin: 3rem auto;
    max-width: 1200px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.stat {
    text-align: center;
    padding: 2rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

@media (max-width: 1200px) {
    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.stat-label {
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
}

.metrics-section {
    background-color: #f5f5f5;
    padding: 2.5rem;
    border-radius: 10px;
}

.metrics-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.metrics-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.metrics-list li {
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 1rem;
    padding: 0.75rem;
}

.metrics-list li:before {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* ===================================
   Contact Section
   =================================== */

.contact {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(139, 0, 0, 0.2);
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* ===================================
   Gallery Section
   =================================== */

.gallery {
    padding: 0.5rem 2rem 1.5rem;
    background: #ffffff;
}

.gallery .section-title {
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.gallery .section-subtitle {
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
    text-align: center;
}

.gallery-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    background: #ffffff;
    padding: 0.5rem 0;
}

.gallery .section-title {
    margin-top: 0;
}

.gallery-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-row {
    display: flex;
    gap: 1rem;
    animation: scroll-left 50s linear infinite;
    width: fit-content;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-row:nth-child(even) {
    animation: scroll-left-reverse 50s linear infinite;
}

@keyframes scroll-left-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    width: 180px;
    height: 180px;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(106, 27, 154, 0.4);
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(106, 27, 154, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay p {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    line-height: 1.2;
}

/* ===================================
   Utilities
   =================================== */

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* ===================================
   Course Pages Styling
   =================================== */

.course-header {
    padding: 5rem 2rem;
    color: white;
    text-align: left;
    display: block;
    min-height: 350px;
}

.course-header .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.course-header h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.course-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 850px;
    margin: 0;
}

/* Course Overview */
.course-overview {
    background-color: white;
    padding: 4rem 2rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.overview-item {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.overview-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.overview-item p {
    color: #666;
    line-height: 1.6;
}

/* Course Content */
.course-content {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.course-content > h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.content-section {
    background-color: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.course-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.course-list li {
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.course-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Facilities Section */
.facilities {
    padding: 4rem 2rem;
    background-color: white;
}

.facilities > h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.facility-item {
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.facility-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.facility-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Enrollment CTA */
.enrollment-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c41e3a 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.enrollment-cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.enrollment-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.enrollment-cta .btn {
    margin-top: 1rem;
}

/* ===================================
   New Course Sections
   =================================== */

/* Highlights Section */
.highlights {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.highlights h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-item {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.highlight-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.highlight-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Impact Section */
.impact-section {
    padding: 4rem 2rem;
    background-color: white;
}

.impact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.impact-stat {
    background: linear-gradient(135deg, #c2185b 0%, #6A1B9A 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.impact-stat:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.2);
}

.impact-stat h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.impact-stat p {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.training-approach{
    background:#f9f6f6;
    padding:60px 20px;
}

.training-approach h2{
    text-align:center;
    font-size:36px;
    color:#6A1B9A;
    margin-bottom:20px;
    font-weight:700;
}

.section-intro{
    max-width:800px;
    margin:auto;
    text-align:center;
    color:#555;
    font-size:20px;
    line-height:1.8;
    margin-bottom:50px;
}

.approach-card{
    background:white;
    border-radius:25px;
    padding:45px;
    box-shadow:
      0 15px 35px rgba(0,0,0,.08);

    transition:.3s;
}

.approach-card:hover{
    transform:translateY(-8px);
}

.approach-card h4{
    text-align:center;
    color:#6A1B9A;
    font-size:26px;
    margin-bottom:30px;
}

.approach-card ul{
    list-style:none;
    padding:0;
}

.approach-card li{
    font-size:18px;
    margin-bottom:18px;
    color:#444;
    display:flex;
    align-items:center;
}

.approach-card li::before{
    content:"✔";
    color:#6A1B9A;
    margin-right:15px;
    font-weight:bold;
}

/* Career Section */
.career-section {
    padding: 4rem 2rem;
    background-color: white;
}

.career-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.career-item {
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.career-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.career-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.career-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.placement-info {
    background: linear-gradient(135deg, #fff9f0 0%, #6A1B9A 100%);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    text-align: center;
}

.placement-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.placement-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}

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

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Employers Section */
.employers-section {
    padding: 4rem 2rem;
    background-color: white;
}

.employers-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.employers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.employer {
    background: white;
    color: #333;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.employer img {
    width: 100%;
    max-width: 140px;
    max-height: 90px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}


.employer p {
    margin: 0;
    color: #222;
    font-size: 1rem;
}

.employer:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c41e3a 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    margin-top: 1rem;
}

/* Course Details */
.course-details {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.course-details p {
    margin-bottom: 0.5rem;
    color: #555;
}

.course-details strong {
    color: var(--primary-color);
}
