/* ====================================
   CSS Variables
   ==================================== */
:root {
    /* Colors */
    --footer-bg: #000d83;
    --footer-text-color: #f5faff;
    --gradient: linear-gradient(to bottom right, #ff99ff 0%, #8e79f9 100%);
    --gradient2: linear-gradient(to bottom right, #fdd099 0%, #ff6f3d 100%);
    --gradient3: linear-gradient(90deg, #15d5ae 10%, #5177ff 35%, #de1dfc 100%);
    --theme-color: #8e79f9;
    --theme-color2: #f7931e;
    --theme-bg-light: #f6f6f6;
    --body-text-color: #757f95;
    --color-white: #ffffff;
    --color-dark: #000d83;
    
    /* Fonts */
    --body-font: "Roboto", sans-serif;
    --heading-font: "Roboto", sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
}

/* ====================================
   Global Styles
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: var(--body-text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: var(--section-padding);
    position: relative;
}

.gradient-text {
    background: var(--gradient3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ====================================
   Header & Navigation
   ==================================== */
.site-header {
    position: relative;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    position: relative;
}

.brand-gradient {
    background: var(--gradient3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo{
    color: var(--theme-color);
}

.nav-link {
    color: var(--color-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--theme-color);
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 60%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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='%238e79f9' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ====================================
   Buttons
   ==================================== */
.btn-gradient-primary {
    background: var(--gradient);
    color: var(--color-white);
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-gradient-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-gradient-primary:hover::before {
    left: 100%;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(142, 121, 249, 0.4);
}

.btn-gradient-secondary {
    background: var(--gradient2);
    color: var(--color-white);
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-gradient-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-gradient-secondary:hover::before {
    left: 100%;
}

.btn-gradient-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 111, 61, 0.4);
}

/* ====================================
   Hero Section
   ==================================== */
.hero-section {
    padding-top: 120px;
    /* background: linear-gradient(135deg, rgba(142, 121, 249, 0.01) 0%, rgba(255, 153, 255, 0.01) 100%); */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/01.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--body-text-color);
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats .stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    width: auto;
    min-width: 350px;
   background-image: url(images/04.png);
    background-size: cover;
    background-position: center;
}

.hero-stats .stat-card > div {
    display: flex;
    flex-direction: column;
}

.hero-stats .stat-card:nth-child(2) {
    margin-left: 60px;
}

.hero-stats .stat-icon{
    width: 80px;
    height: 80px;
    min-width: 80px;
    line-height: 80px;
    font-size: 35px;
    border-radius: 50%;
    text-align: center;
    color: var(--color-white);
    background: var(--gradient2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats .stat-icon img{
    width: 40px;
}


.stat-card {
    background: var(--color-white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    /* background: linear-gradient(to top right, #ff99ff 10%, #8e79f9 35%, rgb(255, 255, 255) 75%); */
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: var(--theme-color);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--body-text-color);
}

.hero-stats .stat-number {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    white-space: normal;
}

/* ====================================
   Horizontal Marquee
   ==================================== */
.marquee-section {
    background: var(--gradient3);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0 3rem;
    display: inline-flex;
    align-items: center;
}

.marquee-item i {
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

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

/* ====================================
   Section Titles
   ==================================== */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--body-text-color);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ====================================
   About Section
   ==================================== */
.about-content {
    padding: 2rem 0;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.feature-list li i {
    color: var(--theme-color);
    font-size: 1.3rem;
    margin-right: 1rem;
}

/* ====================================
   Course Cards
   ==================================== */
.course-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-bottom: 2rem;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* .course-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(to top right, #ff99ff 10%, #8e79f9 35%, rgb(255, 255, 255) 75%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
} */

.course-card:hover::before {
    opacity: 1;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(142, 121, 249, 0.3);
}

.course-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 20px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.course-content{
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}



.course-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.course-description {
    color: var(--body-text-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--body-text-color);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--theme-color);
    margin-right: 0.5rem;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--theme-color);
}

/* ====================================
   Statistics Section
   ==================================== */
.stats-section {
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color2) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/256013480.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    background-attachment: fixed;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-box .stat-icon{
    width: 80px;
    height: 80px;
    line-height: 70px;
    font-size: 35px;
    border-radius: 50px;
    text-align: center;
    color: var(--color-white);
    background: var(--gradient2);
}

.stat-image {
    width: 50px;
   filter: brightness(0) invert(1);
}

.stat-box i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-box .counter {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* ====================================
   How It Works Section
   ==================================== */
.step-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--body-text-color);
}

/* ====================================
   CTA Section
   ==================================== */
.cta-section {
    background: linear-gradient(135deg, rgba(142, 121, 249, 0.95) 0%, rgba(255, 153, 255, 0.95) 100%);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/159480955.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

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

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

/* ====================================
   Footer
   ==================================== */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text-color);
    padding: 4rem 0 0;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.75rem;
    color: var(--theme-color2);
    margin-bottom: 1rem;
    font-weight: 700;
}

.widget-title {
    font-size: 1.25rem;
    color: var(--theme-color2);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item i {
    color: var(--theme-color2);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--footer-text-color);
    opacity: 0.85;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--theme-color2);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.copyright-text,
.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.85;
}

.company-number {
    opacity: 0.7;
    font-size: 0.85rem;
}

/* ====================================
   Modal Styles
   ==================================== */
.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

.package-card {
    background: var(--color-white);
    border: 2px solid rgba(142, 121, 249, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(to top right, #ff99ff 10%, #8e79f9 35%, rgb(255, 255, 255) 75%);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover::before {
    opacity: 1;
}

/* .package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(142, 121, 249, 0.3);
} */

.package-card.featured {
    border-color: var(--theme-color);
    box-shadow: 0 10px 30px rgba(142, 121, 249, 0.2);
}

.package-badge {
    background: var(--gradient);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.package-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 1.5rem;
}

.package-price span {
    font-size: 1rem;
    color: var(--body-text-color);
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--theme-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--theme-color);
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 0.2rem rgba(142, 121, 249, 0.25);
}

.selected-package-info {
    background: var(--theme-bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

/* ====================================
   Testimonial Cards
   ==================================== */
.testimonial-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    margin-bottom: 0.25rem;
    color: var(--color-dark);
}

.testimonial-role {
    color: var(--body-text-color);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--theme-color2);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--body-text-color);
    line-height: 1.7;
}

/* ====================================
   FAQ Section
   ==================================== */
.faq-item {
    background: var(--color-white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-white);
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: var(--color-dark);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--theme-bg-light);
}

.faq-question i {
    color: var(--theme-color);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.show {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--body-text-color);
    line-height: 1.7;
    margin: 0;
}

/* ====================================
   Contact Form
   ==================================== */
.contact-info {
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color2) 100%);
    color: var(--color-white);
    padding: 1rem;
    border-radius: 20px;
    height: 100%;
}

.contact-info h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-form {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* ====================================
   Course Detail Page
   ==================================== */
.course-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, rgba(142, 121, 249, 0.1) 0%, rgba(255, 153, 255, 0.1) 100%);
}

.course-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.course-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-highlights {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--theme-color);
    margin-right: 1rem;
}

.highlight-content h5 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.highlight-content p {
    margin: 0;
    color: var(--body-text-color);
    font-size: 0.9rem;
}

.curriculum-item {
    background: var(--color-white);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.curriculum-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.curriculum-item h5 {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.curriculum-item p {
    color: var(--body-text-color);
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats .stat-card:nth-child(2) {
        margin-left: 30px;
    }
    
    .hero-stats .stat-card {
        min-width: 300px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .navbar-collapse {
        background: var(--color-white);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .btn-gradient-primary {
        display: block;
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .hero-stats .stat-card {
        width: 100%;
        min-width: auto;
    }
    
    .hero-stats .stat-card:nth-child(2) {
        margin-left: 0;
    }
    
    .stat-card {
        width: 100%;
    }
    
    .marquee-item {
        font-size: 1rem;
        padding: 0 2rem;
    }
    
    .course-card {
        margin-bottom: 1.5rem;
    }
    
    .package-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-gradient-primary,
    .btn-gradient-secondary {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* ====================================
   Utility Classes
   ==================================== */
.text-gradient {
    background: var(--gradient3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-light-gradient {
    background: linear-gradient(135deg, rgba(142, 121, 249, 0.05) 0%, rgba(255, 153, 255, 0.05) 100%);
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* ====================================
   Feature Box Styles
   ==================================== */
.feature-box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(142, 121, 249, 0.2);
}

.feature-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: var(--gradient);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
}

.feature-icon img {
  width: 50px;
  filter: brightness(0) invert(1);

}


.feature-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.feature-content p {
    color: var(--body-text-color);
    margin: 0;
    font-size: 0.95rem;
}

/* ====================================
   Testimonials Carousel
   ==================================== */
.testimonials-carousel-section {
    padding: 100px 0;
    background: var(--color-white);
}

.testimonial-income {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--theme-bg-light);
    color: var(--theme-color);
    font-size: 1.1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

.carousel-control-prev {
    left: -70px;
}

.carousel-control-next {
    right: -70px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    margin-bottom: -3rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--theme-color);
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
    background: var(--gradient);
}

/* ====================================
   Pricing Modal
   ==================================== */
.pricing-modal .modal-dialog {
    max-width: 1140px;
}

.pricing-modal .modal-header {
    border-bottom: none;
    padding: 2rem 2rem 0;
}

.pricing-modal .modal-body {
    padding: 2rem;
}

.pricing-modal .modal-title {
    font-size: 2rem;
    text-align: center;
    width: 100%;
}

/* ====================================
   Responsive Carousel
   ==================================== */
@media (max-width: 991px) {
    .carousel-control-prev {
        left: -20px;
    }
    
    .carousel-control-next {
        right: -20px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .testimonials-carousel-section .carousel-item .col-lg-4:not(:first-child) {
        display: none;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* ====================================
   Why Choose Section
   ==================================== */
.why-choose-section {
    padding: 100px 0;
    background: var(--color-white);
}

.services-section, .testimonials-carousel-section, .package-card{
    background-image: url('images/04.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.testimonial-card .testimonial-quote{
        position: absolute;
    right: 20px;
    top: 10px;
    opacity: 0.6;
    z-index: 1;
    width: 110px;
    height: 110px;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 3rem;
    color: var(--theme-color);
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--body-text-color);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie-settings,
.btn-cookie-reject,
.btn-cookie-accept {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-cookie-settings {
    background: var(--theme-bg-light);
    color: var(--color-dark);
}

.btn-cookie-settings:hover {
    background: #e0e0e0;
}

.btn-cookie-reject {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.btn-cookie-reject:hover {
    background: var(--theme-bg-light);
}

.btn-cookie-accept {
    background: var(--gradient);
    color: var(--color-white);
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(142, 121, 249, 0.4);
}

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: var(--color-white);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-settings-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-settings-header h4 {
    margin: 0;
    color: var(--color-dark);
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--body-text-color);
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.cookie-close:hover {
    color: var(--color-dark);
}

.cookie-settings-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-category-header h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.cookie-category-header p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--body-text-color);
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    min-width: 50px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background: var(--gradient);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-settings-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: right;
}

.btn-save-settings {
    background: var(--gradient);
    color: var(--color-white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save-settings:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(142, 121, 249, 0.4);
}

@media (max-width: 991px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-icon {
        font-size: 2rem;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-settings,
    .btn-cookie-reject,
    .btn-cookie-accept {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .cookie-consent {
        padding: 1.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .btn-cookie-settings,
    .btn-cookie-reject,
    .btn-cookie-accept {
        width: 100%;
    }

    .cookie-settings-modal {
        padding: 1rem;
    }

    .cookie-settings-header,
    .cookie-settings-body {
        padding: 1.5rem;
    }
}