/* Global Styles */
:root {
    --primary-color: #92278f;
    --accent-color: #92278f;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-color: #333;
    --white: #ffffff;
    --red: #dc3545;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    /* Global Regular Font */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    /* Headings also Regular */
}

/* Home Page Section Headings */
section h2 {
    color: var(--primary-color);
    font-weight: 700;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.red-text {
    color: var(--red);
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(146, 39, 143, 0.4);
}

.btn-submit:hover {
    background-color: #7a1f77;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(146, 39, 143, 0.6);
}

/* Navbar & Header */
header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 100%;
    transition: var(--transition);
}

.top-header {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-info a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-info a:hover {
    opacity: 0.8;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 20px;
}

.top-info span i {
    margin-right: 5px;
}

.top-social a {
    color: var(--white);
    margin-left: 15px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    position: relative;
    padding: 0 12px;
}

.nav-links a {
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-apply {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 30px;
    margin-left: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--accent-color);
    display: none;
    min-width: 200px;
    border-top: 2px solid var(--primary-color);
    padding: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-menu a {
    color: var(--white);
    display: block;
    padding: 12px 20px;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    animation: fadeInUp 1s ease-out;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite, slideInRight 1s ease-out;
    border: 5px solid rgba(255, 255, 255, 0.3);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#hero-form input,
#hero-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Upcoming Batch Redesign */
.upcoming-batch {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.upcoming-batch h2 {
    margin-bottom: 70px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.upcoming-batch h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.batch-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 0 10px;
}

.design-card {
    position: relative;
    padding: 70px 25px 40px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 50px;
    border: none !important;
}

.design-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background-color: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for depth */
    z-index: 1;
}

.card-icon i {
    font-size: 2.5rem;
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.design-card:hover .card-icon i {
    transform: scale(1.2) rotate(10deg);
}

.design-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.design-card p {
    font-size: 1.05rem;
    opacity: 0.95;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Colors */
.design-card-cyan {
    background-color: #92278f;
}

.design-card-orange {
    background-color: #92278f;
}

.design-card-purple {
    background-color: #92278f;
}

.design-card-red {
    background-color: #f44336;
}


/* Courses Page Styles */
.page-hero {
    background: linear-gradient(135deg, rgba(146, 39, 143, 0.1), rgba(255, 255, 255, 0));
    padding: 80px 0 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.courses-section {
    padding: 60px 0 100px;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    justify-content: center;
}


/* Ultimate Clean Course Card (Light Theme) */
.ultimate-course-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.ultimate-course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ultimate-card-header {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
    margin: 15px 15px 0 15px;
}

.ultimate-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 20px;
}

.ultimate-course-card:hover .ultimate-card-header img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.card-bookmark {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.card-bookmark:hover {
    background: #fff;
}

.ultimate-card-meta {
    padding: 15px 25px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-info img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.author-info span {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}

.card-pricing {
    text-align: right;
}

.original-price {
    display: block;
    font-size: 0.75rem;
    text-decoration: line-through;
    color: #999;
}

.discount-price {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ultimate-card-body {
    padding: 10px 25px;
    flex-grow: 1;
}

.ultimate-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
    line-height: 1.4;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #ffc107;
    font-size: 0.85rem;
}

.rating-text {
    font-size: 0.8rem;
    color: #777;
}

.ultimate-card-footer {
    padding: 15px 25px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.85rem;
}

.footer-stat i {
    color: var(--primary-color);
    margin-right: 5px;
}

.stat-divider {
    width: 1px;
    height: 15px;
    background: #e0e0e0;
}

.ultimate-card-actions {
    padding: 0 20px 20px 20px;
    display: flex;
    gap: 10px;
}

.btn-action {
    flex: 1;
    padding: 10px 0;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-fill {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

.btn-fill:hover {
    background: #7a1f77;
    border-color: #7a1f77;
}

/* Ensure responsiveness */
@media (max-width: 768px) {
    .ultimate-card-actions {
        flex-direction: column;
    }
}

/* Button Icon Animations */
.btn-action i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-fill:hover i {
    animation: pulse 1s infinite;
}

.btn-outline:hover i {
    transform: translateX(4px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Card Shine Effect */
.ultimate-course-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

.ultimate-course-card:hover::after {
    left: 100%;
    transition: 0.7s ease-in-out;
}



/* Animations */
.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .grid-layout {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

.batch-info-below {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.shine-effect {
    overflow: hidden;
}

.shine-effect::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shine 6s infinite ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    20% {
        transform: translateX(100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* Learning Modules Redesign - Premium */
.learning-modules {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Decorate background */
.learning-modules::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(146, 39, 143, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.learning-modules::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 70px;
    color: var(--dark-color);
    text-transform: capitalize;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
}

.section-title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 188, 212, 0.2);
    z-index: -1;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.module-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    border: 1px solid #f0f0f0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Gradient Hover Effect */
.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #5e185c);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.module-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(146, 39, 143, 0.3);
    border-color: transparent;
}

.module-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(146, 39, 143, 0.08);
    border-radius: 50%;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.module-card:hover .icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: scale(1.1) rotate(360deg);
}

.icon-box i {
    transition: color 0.4s ease;
}

.module-card:hover .icon-box i {
    color: #fff;
}

.module-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.module-card:hover h4 {
    color: #fff;
}

.module-card p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
    transition: color 0.4s ease;
}

.module-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Button Pulse Animation */
.pulse-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border: none;
    box-shadow: 0 10px 20px rgba(146, 39, 143, 0.3);
    color: #fff;
    transition: all 0.3s ease;
}

.pulse-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(146, 39, 143, 0.5);
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

/* Scholarship Banner Redesign */
.scholarship-section {
    padding: 60px 0;
    background-color: #fff;
}

.scholarship-banner {
    background-color: #f9fff9;
    /* Light green background */
    border: 2px dashed #28a745;
    /* Green dashed border */
    border-radius: 10px;
    padding: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
    /* Entrance animation */
}

.scholarship-banner:hover {
    transform: scale(1.02);
}

.limited-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #e0e0e0;
    color: #333;
    padding: 5px 20px;
    border-radius: 0 0 10px 10px;
    border: 1px solid #ccc;
    border-top: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.banner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 15px;
}

.banner-left {
    flex: 1;
    min-width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-center {
    flex: 3;
    text-align: center;
}

.banner-right {
    flex: 1;
    text-align: right;
    min-width: 150px;
}

/* Typography matching image */
.banner-center h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #28a745;
    /* Green color */
    margin-bottom: 5px;
    text-transform: uppercase;
    line-height: 1.1;
}

.highlight-text {
    color: #28a745;
}

/* =========================================
   NEW MODULE PAGE STYLES (Premium Design)
   ========================================= */

/* 1. Module Hero */
.module-hero {
    background: linear-gradient(135deg, #fdfbfd 0%, #f4eff4 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.module-hero-content {
    max-width: 800px;
}

.module-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.module-hero h1 span {
    color: #d39e00;
    /* Gold/Orange accent for 'Digital Marketing' etc */
}

.module-hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
}

.module-hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    background: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.badge-item i {
    color: var(--primary-color);
}

.module-hero-btns {
    display: flex;
    gap: 20px;
}

.btn-gold {
    background: linear-gradient(45deg, #FFB700, #ff8c00);
    color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 136, 0, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(45deg, #ff8c00, #FFB700);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 136, 0, 0.4);
}

.btn-dark {
    background: var(--dark-color);
    color: #fff;
    border: none;
}

.btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
}


/* 2. What Is Section (Split Layout) */
.section-split {
    padding: 80px 0;
    background: #fff;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.split-text h2 span {
    color: #d39e00;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.split-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.split-image img:hover {
    transform: scale(1.02);
}

/* 3. Key Highlights Grid */
.highlights-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.highlight-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* 4. Syllabus Section */
.syllabus-section {
    padding: 80px 0;
    background: #fff;
}

.syllabus-container {
    max-width: 900px;
    margin: 0 auto;
}

.syllabus-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.syllabus-item {
    background: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--dark-color);
    transition: transform 0.3s ease;
}

.syllabus-item:hover {
    transform: translateX(5px);
    background: #fdfbfd;
}

.syllabus-item i {
    color: var(--primary-color);
}

/* 5. Career Opportunities */
.career-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fff, #f4faff);
}

.career-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.career-card {
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 220px;
    transition: all 0.3s ease;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.career-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 2rem;
}

.icon-bg-1 {
    background: #e3f2fd;
    color: #2196f3;
}

.icon-bg-2 {
    background: #e8f5e9;
    color: #4caf50;
}

.icon-bg-3 {
    background: #fff3e0;
    color: #ff9800;
}

.icon-bg-4 {
    background: #f3e5f5;
    color: #9c27b0;
}

.career-card h4 {
    font-weight: 700;
    color: var(--dark-color);
}

/* 6. Enroll CTA */
.enroll-cta {
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1951&q=80') no-repeat center center/cover;
    position: relative;
    text-align: center;
    color: #fff;
}

.enroll-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.enroll-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.enroll-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.enroll-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .module-hero h1 {
        font-size: 2.5rem;
    }

    .split-container {
        grid-template-columns: 1fr;
    }

    .syllabus-list {
        grid-template-columns: 1fr;
    }
}

.sub-text {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    margin: 0;
}

.green-text {
    color: #28a745;
    font-weight: 700;
}

/* Button style from image (Orange) */
.btn-apply-banner {
    background: #92278f;
    /* Orange color */
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

.btn-apply-banner:hover {
    background: #92278f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-flex {
        flex-direction: column;
        text-align: center;
    }

    .banner-right {
        text-align: center;
    }

    .banner-center h2 {
        font-size: 1.8rem;
    }
}

/* Testimonials Carousel */
.testimonials {
    padding: 80px 0;
    background: var(--light-color);
}

.carousel-container {
    max-width: 1200px;
    margin: 40px auto 0;
    overflow: hidden;
    position: relative;
    padding-bottom: 30px;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 33.333%;
    /* 3 cards on desktop */
    padding: 15px;
    box-sizing: border-box;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
    height: 100%;
    /* Ensure same height in row */
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.user-initial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.user-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: #333;
}

.stars {
    font-size: 0.8rem;
}

.text-warning {
    color: #ffc107;
}

.platform-icon {
    font-size: 1.5rem;
    margin-left: auto;
    /* Push to right */
    opacity: 0.8;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    font-style: normal;
    /* Override italic if set elsewhere */
    font-weight: 400;
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dde0e3;
    margin: 0 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .slide {
        flex: 0 0 50%;
        /* 2 cards on tablets */
    }
}

@media (max-width: 768px) {
    .slide {
        flex: 0 0 100%;
        /* 1 card on mobile */
    }

    .carousel-container {
        max-width: 100%;
        padding: 0 10px;
    }
}

/* Who Can Join Redesign */
.who-can-join {
    padding: 80px 0;
    background: #f8f9fa;
    /* Light grey background for contrast */
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.who-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
    /* Entrance animation */
}

.who-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(146, 39, 143, 0.15);
    /* Purple shadow */
    border-color: var(--primary-color);
}

.who-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(146, 39, 143, 0.1), rgba(0, 188, 212, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.who-box:hover .who-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.who-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.who-box:hover .who-icon i {
    color: #fff;
}

.who-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.who-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    /* Pushes button to bottom */
}

.btn-card {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(146, 39, 143, 0.2);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-card i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-card:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-card:hover i {
    transform: translateX(5px);
}

/* Why Choose Redesign */
.why-choose {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

/* Optional background decoration */
.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(146, 39, 143, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 10% 90%, rgba(0, 188, 212, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out backwards;
    /* Backwards ensures opacity 0 before delay */
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.15);
    /* Cyan/Blue shadow hint */
    border-color: var(--accent-color);
    /* Cyan border on hover */
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    background: var(--accent-color);
    transform: rotate(360deg);
    border-radius: 50%;
    /* Box to circle transition */
}

.why-icon i {
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.why-card:hover .why-icon i {
    color: #fff;
}

.why-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    transition: color 0.3s;
}

.why-card:hover h4 {
    color: var(--accent-color);
}

.why-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* FAQ Redesign */
.faq {
    padding: 80px 0;
    background: #fdfdfd;
}

.faq-container {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Column Grid */
    gap: 25px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 8px 25px rgba(146, 39, 143, 0.15);
    /* Purple Shadow when active */
    border-color: rgba(146, 39, 143, 0.2);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    color: #333;
    transition: color 0.3s;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 1rem;
    color: #888;
    /* Default icon color */
    transition: transform 0.3s ease, color 0.3s;
    background: #f8f9fa;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #fff;
    background: var(--primary-color);
}

.faq-answer {
    padding: 0 25px 25px 25px;
    display: none;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    /* Add space when answer opens */
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
        /* 1 Column on tablet/mobile */
    }
}

/* Support */
/* Support Redesign (Split Layout) */
.support {
    padding: 80px 0;
    background: #f4f6f8;
    /* Light grey background */
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

/* Optional faint world map or pattern */
.support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg') no-repeat center center;
    opacity: 0.03;
    background-size: cover;
    pointer-events: none;
}

.support-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Left Side Styling */
.support-left {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.support-avatar {
    width: 100px;
    height: 100px;
    background: #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.support-avatar i {
    font-size: 100px;
    color: #ccc;
    /* Placeholder color before generic img */
    margin-top: 15px;
    /* Adjust offset for icon */
}

.green-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.brand-support {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
}

.counsel-text {
    font-style: italic;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.support-phone {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    text-decoration: none;
}

.support-phone i {
    font-size: 1.8rem;
    color: #666;
    margin-right: 10px;
    vertical-align: middle;
}

/* Right Side (Form) Styling */
.support-right {
    flex: 1;
    min-width: 350px;
    max-width: 450px;
}

.callback-form-box {
    background: #92278f;
    /* Dark blue/black bg */
    padding: 30px;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.callback-form-box h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
}

.callback-form-box input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    outline: none;
}

.btn-submit-callback {
    width: 100%;
    padding: 12px;
    background: #fff;
    /* White background */
    border: none;
    border-radius: 4px;
    color: #92278f;
    /* Purple text */
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-callback:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .support-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .support-left {
        order: 2;
        /* Put form first on mobile? Or keep info first. Custom choice, keeping standard flow here. */
    }

    .support-phone {
        font-size: 2rem;
    }
}

/* Footer Refined - Accent Background */
footer {
    padding: 80px 0 30px;
    background: var(--accent-color);
    /* Top Header Color */
    color: #fff;
    border-top: none;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Logo Column */
.footer-logo-box {
    text-align: left;
}

.footer-logo-img {
    filter: brightness(0) invert(1);
    height: 55px;
    /* Slightly larger for footer balance */
}

.footer-logo-img {
    filter: brightness(0) invert(1);
    height: 55px;
    /* Slightly larger for footer balance */
}

.footer-brand {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-brand span {
    color: #fff;
    /* All white text on colored bg */
}

/* Footer Columns */
.footer-col h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

/* Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
    text-shadow: none;
}

.footer-links a:hover i {
    color: #fff;
    animation: iconSlide 0.5s ease infinite alternate;
}

@keyframes iconSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(4px);
    }
}

/* Contact Info */
.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-info a:hover {
    color: #fff;
}

.contact-info i {
    color: #fff;
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 4px;
    min-width: 20px;
}

/* Social Icons Square - White Box */
.social-links-square {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links-square a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--accent-color);
    /* Icon matches background theme */
    font-size: 1rem;
    transition: all 0.3s;
    background: #fff;
}

.social-links-square a:hover {
    transform: translateY(-3px);
    color: #fff;
    border-color: transparent;
}

.social-links-square a.facebook:hover {
    background: #1877F2;
}

.social-links-square a.twitter:hover {
    background: #1DA1F2;
}

.social-links-square a.linkedin:hover {
    background: #0077B5;
}

.social-links-square a.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-links-square a.whatsapp:hover {
    background: #25D366;
}

.footer-bottom {
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
    }

    .footer-col {
        text-align: left;
        /* Keep left align on mobile for better read */
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp {
    background-color: #25d366;
}

.call {
    background-color: #007bff;
}

/* Popup Wrapper */
.popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
}

.popup-content h3 {
    margin-bottom: 10px;
}

.popup-content p {
    margin-bottom: 20px;
}

.popup-content input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Animations */
.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .top-info {
        display: none;
    }

    .top-header .container {
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* Hide Mobile Drawer, Overlay, and Hamburger by Default (Desktop) */
.mobile-drawer,
.drawer-overlay,
.hamburger {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .logo-img {
        height: 40px;
    }

    /* Side Drawer Styles */
    .mobile-drawer {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 2000;
        transition: left 0.3s ease;
        display: flex;
        flex-direction: column;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-drawer.open {
        left: 0 !important;
    }

    .drawer-header {
        background: #fff5f0;
        /* Peach background as requested */
        padding: 40px 20px;
        position: relative;
        text-align: center;
        border-bottom: 2px solid var(--primary-color);
    }

    .drawer-logo {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--dark-color);
        font-family: 'Playfair Display', serif;
    }

    .drawer-logo span {
        color: var(--primary-color);
    }

    .close-drawer {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        background: #92278f;
        /* Orange as requested */
        border: none;
        border-radius: 50%;
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .close-drawer:hover {
        transform: rotate(90deg);
    }

    .drawer-links {
        list-style: none;
        padding: 20px 0;
        overflow-y: auto;
    }

    .drawer-links li {
        border-bottom: 1px solid #f0f0f0;
    }

    .drawer-links a {
        display: flex;
        align-items: center;
        padding: 15px 25px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.05rem;
        transition: color 0.3s ease;
    }

    .drawer-links a i.fa-chevron-right {
        font-size: 0.8rem;
        margin-right: 15px;
        color: #999;
    }

    .drawer-links a:hover {
        color: var(--primary-color);
        background: #f9f9f9;
    }

    /* Dropdown inside drawer */
    .drawer-dropdown .toggle-icon {
        margin-left: auto;
        font-size: 0.9rem;
        color: #92278f;
        transition: transform 0.3s ease;
    }

    .drawer-dropdown.active .toggle-icon {
        transform: rotate(45deg);
    }

    .drawer-submenu {
        list-style: none;
        background: #fdfdfd;
        display: none;
        padding-left: 20px;
    }

    .drawer-dropdown.active .drawer-submenu {
        display: block;
    }

    .drawer-submenu a {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .drawer-btn-apply {
        background: var(--primary-color) !important;
        color: #fff !important;
        margin: 20px;
        border-radius: 5px;
        justify-content: center;
    }

    .drawer-btn-apply i {
        color: #fff !important;
    }

    /* Overlay Styles */
    .drawer-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1999;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .drawer-overlay.show {
        display: block;
        opacity: 1;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 12px 10px;
        background: #92278f;
        /* Brown box as in image */
        border-radius: 4px;
    }

    .hamburger span {
        width: 25px;
        height: 2px;
        background: #fff;
        border-radius: 1px;
    }

    .hero {
        padding: 60px 0;
    }

    .scholarship h2 {
        font-size: 1.8rem;
    }
}

/* Digital Marketing Course Page Enhancements */
.course-hero {
    background: linear-gradient(135deg, #4b1248 0%, #92278f 100%);
    padding: 80px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.course-hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.trust-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.course-hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.course-hero-left h1 span {
    color: #fff;
}

.course-hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.feat-item i {
    color: #4caf50;
}

.hero-action-btns {
    display: flex;
    gap: 20px;
}

.btn-primary-glow {
    background: #fff;
    color: #333;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 235, 59, 0.4);
    transition: var(--transition);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 235, 59, 0.6);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Enrollment Form */
.enroll-form-box {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--dark-color);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h3 {
    color: var(--primary-color);
    font-weight: 800;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.input-group input {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: var(--transition);
}

.input-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(146, 39, 143, 0.1);
}

.btn-submit-glow {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(146, 39, 143, 0.3);
    transition: var(--transition);
}

.btn-submit-glow:hover {
    background: #7a1f77;
    transform: translateY(-2px);
}

.form-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Modules Section */
.dm-modules-section {
    padding: 100px 0;
    background: #fbfbfb;
}

.section-title-box {
    margin-bottom: 60px;
}

.sub-title {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.modules-accordion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.module-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: var(--transition);
}

.module-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(146, 39, 143, 0.1);
    border-color: var(--primary-color);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.mod-num {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
}

.module-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.mod-list {
    list-style: none;
}

.mod-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.mod-list li::before {
    content: '\\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .course-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .course-hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-action-btns {
        justify-content: center;
    }

    .course-hero-features {
        align-items: center;
    }
}


/* Module Card Redesign (Reference Design) */
.module-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.premium-module-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.premium-module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-special {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffeb3b;
    color: #333;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-info h3 {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.4;
    color: #222;
    margin-bottom: 15px;
    min-height: 3.2em;
}

.card-author {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.card-author span {
    font-weight: 800;
    color: #000;
}

.card-footer {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.score-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.score-text {
    font-size: 0.85rem;
    font-weight: 800;
    color: #000;
}

.score-bar {
    width: 60px;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.score-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 90%;
    background: #ffeb3b;
    border-radius: 2px;
}

.btn-view-module {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
    transition: all 0.2s ease;
    background: #fff;
}

.btn-view-module span {
    color: #92278f;
}

.btn-view-module:hover {
    background: #f8f8f8;
    border-color: #ccc;
}


/* Modern UI/UX & Animation Enhancements */

/* Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
}

/* Staggered Delay Classes */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
}

.delay-7 {
    animation-delay: 0.7s;
}

.delay-8 {
    animation-delay: 0.8s;
}

.delay-9 {
    animation-delay: 0.9s;
}

.delay-10 {
    animation-delay: 1s;
}

/* Pulse Animation for Badges */
@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
    }
}

/* Redesigned Premium Card Styles */
.premium-module-card {
    border: none;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.premium-module-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(146, 39, 143, 0.2);
}

.premium-module-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(45deg, #92278f, #FFD700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.premium-module-card:hover::after {
    opacity: 1;
}

.badge-special {
    background: rgba(255, 215, 0, 0.9) !important;
    backdrop-filter: blur(5px);
    color: #000 !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulseGlow 2s infinite ease-in-out;
}

.card-info h3 {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.premium-module-card:hover .card-info h3 {
    color: #7a1f77;
}

.score-bar::after {
    background: linear-gradient(90deg, #92278f, #FFD700) !important;
    width: 95% !important;
}

.btn-view-module {
    background: linear-gradient(45deg, #f8f8f8, #ffffff);
    border: 1px solid #eee;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-view-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(146, 39, 143, 0.1), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-view-module:hover::before {
    left: 100%;
}

.btn-view-module:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(5px);
}


/* Digital Growth Roadmap Styles */
.roadmap-section {
    padding: 100px 0;
    background: #fdfdfd;
    overflow: hidden;
}

.roadmap-container {
    position: relative;
    padding: 40px 0;
}

.roadmap-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), #FFD700, transparent);
    z-index: 1;
}

.roadmap-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.roadmap-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-node {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(146, 39, 143, 0.4);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid #fff;
}

.step-content {
    width: 45%;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.roadmap-step:hover .step-content {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(146, 39, 143, 0.1);
    border-color: var(--primary-color);
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.module-tag {
    background: #f0f0f0;
    color: #555;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.roadmap-step:hover .module-tag {
    background: rgba(146, 39, 143, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Mobile Responsiveness for Roadmap */
@media (max-width: 768px) {
    .roadmap-container::before {
        left: 30px;
    }

    .roadmap-step {
        flex-direction: row !important;
        justify-content: flex-start;
        padding-left: 80px;
        margin-bottom: 50px;
    }

    .step-node {
        left: 30px;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-content {
        width: 100%;
    }
}


/* Bento Grid Module Styles */
.bento-modules-section {
    padding: 100px 0;
    background: #f8f9ff;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    margin-top: 50px;
}

.bento-item {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(146, 39, 143, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.bento-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(146, 39, 143, 0.15);
    border-color: var(--primary-color);
}

/* Bento Item Sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-item .icon-box {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: rgba(146, 39, 143, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.bento-item:hover .icon-box {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(15deg);
}

.bento-item h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.bento-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.bento-item .badge-new {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #FFD700;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Background Gradients for Visual Variety */
.bg-gradient-purple {
    background: linear-gradient(135deg, rgba(146, 39, 143, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.bg-gradient-gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Mobile Responsiveness for Bento */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-large,
    .bento-wide,
    .bento-tall,
    .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-item {
        min-height: 200px;
    }
}


/* Ultimate Course Card Design (Phase 4) */
.ultimate-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ultimate-course-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.ultimate-course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(146, 39, 143, 0.1);
}

.ultimate-card-header {
    position: relative;
    height: 220px;
    overflow: hidden;
    margin: 15px;
    border-radius: 15px;
}

.ultimate-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ultimate-course-card:hover .ultimate-card-header img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.card-bookmark {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ultimate-card-meta {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-info img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.card-pricing {
    display: flex;
    gap: 8px;
    align-items: center;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.discount-price {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.1rem;
}

.ultimate-card-body {
    padding: 0 20px 20px;
    flex-grow: 1;
}

.ultimate-card-body h3 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.4;
    color: #222;
    margin-bottom: 12px;
    height: 3.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.85rem;
    color: #777;
}

.ultimate-card-footer {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.footer-stat i {
    color: var(--primary-color);
}

.stat-divider {
    width: 1px;
    height: 20px;
    background: #ddd;
}

.ultimate-card-action {
    padding: 0 20px 20px;
}

.btn-preview {
    width: 100%;
    padding: 12px;
    background: #92278f;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-preview:hover {
    background: var(--primary-color);
    box-shadow: 0 5px 15px rgba(146, 39, 143, 0.3);
}

.ultimate-course-card:nth-child(2) .btn-preview {
    background: var(--primary-color);
}

/* ==========================================================================
   Contact Page Redesign (Premium & Modern)
   ========================================================================== */

.contact-hero {
    background: linear-gradient(135deg, #2D0B4B 0%, #150523 100%);
    padding: 120px 0 160px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(150px);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.3;
}

.contact-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.contact-main-section {
    margin-top: -100px;
    padding-bottom: 80px;
    position: relative;
    z-index: 10;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: animate-fade-up 0.8s ease backwards;
}

.contact-info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(146, 39, 143, 0.15);
    border-color: var(--primary-color);
}

.info-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(146, 39, 143, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.contact-info-card:hover .info-icon-box {
    background: var(--primary-color);
    transform: rotate(10deg);
}

.info-icon-box i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.contact-info-card:hover .info-icon-box i {
    color: #fff;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 15px;
}

.contact-info-card p,
.contact-info-card a {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* Redesigned Contact Form */
.contact-form-container {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
    animation: animate-fade-up 1s ease 0.2s backwards;
}

.form-main {
    padding: 60px;
}

.form-sidebar {
    background: linear-gradient(135deg, var(--primary-color), #6a1b6b);
    padding: 60px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-main h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 10px;
}

.form-main p {
    color: #777;
    margin-bottom: 40px;
}

.modern-form .input-group {
    position: relative;
    margin-bottom: 30px;
}

.modern-form .input-group input,
.modern-form .input-group textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #eee;
    font-size: 1.1rem;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}

.modern-form .input-group label {
    position: absolute;
    left: 0;
    top: 15px;
    color: #aaa;
    pointer-events: none;
    transition: all 0.3s;
}

.modern-form .input-group input:focus~label,
.modern-form .input-group input:valid~label,
.modern-form .input-group textarea:focus~label,
.modern-form .input-group textarea:valid~label {
    top: -15px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.modern-form .input-group input:focus,
.modern-form .input-group textarea:focus {
    border-bottom-color: var(--primary-color);
}

.sidebar-info h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.sidebar-contact-list {
    list-style: none;
    margin-bottom: 40px;
}

.sidebar-contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    opacity: 0.9;
}

.sidebar-contact-list li i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.social-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.sidebar-social {
    display: flex;
    gap: 15px;
}

.side-social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.side-social-btn:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    color: #222;
}

.btn-form-submit {
    background: var(--primary-color);
    color: #fff;
    padding: 18px 40px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(146, 39, 143, 0.2);
}

.btn-form-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(146, 39, 143, 0.3);
    background: #7a1f78;
}

@media (max-width: 968px) {
    .contact-form-container {
        grid-template-columns: 1fr;
    }

    .form-sidebar {
        order: -1;
        padding: 40px;
    }

    .form-main {
        padding: 40px 25px;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-info-card {
        padding: 30px 20px;
    }
}

/* Map Section Styles */
.contact-map-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.map-card {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    height: 500px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2) contrast(1.1);
}

.map-overlay-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    animation: animate-fade-up 1s ease 0.5s backwards;
}

.map-overlay-info h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.map-overlay-info p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

/* ==========================================================================
   Contact Page Redesign V2 (Ultimate Glass & Glow)
   ========================================================================== */

.ultimate-contact-hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(45, 11, 75, 0.7), rgba(21, 5, 35, 0.8)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.hero-glass-text {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 60px 80px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 0 20px;
    animation: zoomIn 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-glass-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-glass-text p {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Ultimate Contact Dashboard */
.contact-dashboard {
    padding: 100px 0;
    margin-top: -150px;
}

.bento-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.bento-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.bento-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 50px 100px rgba(146, 39, 143, 0.2);
    border-color: var(--primary-color);
}

.bento-icon {
    width: 90px;
    height: 90px;
    background: rgba(146, 39, 143, 0.08);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s;
}

.bento-card:hover .bento-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(10deg);
}

.bento-card h3 {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 15px;
    font-weight: 800;
}

.bento-card p,
.bento-card a {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    text-decoration: none;
    display: block;
}

.bento-card a:hover {
    color: var(--primary-color);
    font-weight: 600;
}

/* Ultimate Form Section */
.ultimate-form-section {
    background: #fff;
    border-radius: 60px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    animation: animate-fade-up 1s ease;
}

.form-visual-panel {
    flex: 1;
    background: linear-gradient(rgba(146, 39, 143, 0.9), rgba(45, 11, 75, 0.95)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=800') center/cover;
    padding: 80px 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-visual-panel h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
}

.premium-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.p-stat h4 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.p-stat p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.form-main-panel {
    flex: 1.4;
    padding: 80px;
}

.form-main-panel h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.form-main-panel p {
    color: #777;
    margin-bottom: 50px;
}

.v2-form .v2-group {
    position: relative;
    margin-bottom: 40px;
}

.v2-form input,
.v2-form textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #eee;
    font-size: 1.2rem;
    color: #111;
    outline: none;
    transition: all 0.3s;
}

.v2-form label {
    position: absolute;
    left: 0;
    top: 15px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s;
}

.v2-form input:focus~label,
.v2-form input:valid~label,
.v2-form textarea:focus~label,
.v2-form textarea:valid~label {
    top: -15px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
}

.v2-form input:focus,
.v2-form textarea:focus {
    border-bottom-color: var(--primary-color);
}

.v2-submit-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 20px 50px;
    border-radius: 20px;
    border: none;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(146, 39, 143, 0.3);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.v2-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(146, 39, 143, 0.4);
}

@media (max-width: 992px) {
    .ultimate-form-section {
        flex-direction: column;
    }

    .form-visual-panel {
        padding: 60px 40px;
    }

    .bento-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bento-contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-glass-text h1 {
        font-size: 3rem;
    }

    .form-main-panel {
        padding: 40px 25px;
    }
}

/* --- Digital Marketing Page Redesign Styles --- */

/* Course Overview */
.course-overview-section {
    padding: 80px 0;
    background-color: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.overview-content h2 span {
    color: var(--primary-color);
}

.highlight-list {
    margin-top: 30px;
    list-style: none;
}

.highlight-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
    display: flex;
    align-items: center;
}

.highlight-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.2rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: #f9f9f9;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Syllabus Accordion */
.syllabus-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.syllabus-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.syllabus-item {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.syllabus-header {
    width: 100%;
    padding: 20px 30px;
    background: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.syllabus-header:hover,
.syllabus-header.active {
    background: #fff5fd;
}

.syllabus-header h3 {
    font-size: 1.2rem;
    margin: 0;
    flex-grow: 1;
    color: var(--dark-color);
    font-weight: 600;
}

.module-count {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    background: rgba(146, 39, 143, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 20px;
}

.syllabus-header i {
    color: #aaa;
    transition: transform 0.3s;
}

.syllabus-header.active i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.syllabus-content {
    padding: 0 30px;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    display: none;
    /* Changed via JS */
}

.syllabus-header.active+.syllabus-content {
    display: block;
    /* Handle via JS mostly, but basic fallback */
    padding: 20px 30px;
    border-top: 1px solid #f0f0f0;
}

.topic-list {
    list-style: none;
    padding-left: 10px;
}

.topic-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.topic-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Tools Grid */
.tools-section {
    padding: 80px 0;
    background: #fff;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tool-item {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
}

.tool-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    background: #fffbf9;
}

.tool-item i {
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
    display: block;
}

.tool-item:hover i {
    color: var(--primary-color);
}

.tool-item span {
    font-weight: 600;
    color: #555;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
    /* Changed from #f4f6f9 for cleaner look with cards */
}

/* Syllabus Cards (New Layout) */
.syllabus-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.syllabus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.syllabus-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #eee;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.syllabus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(146, 39, 143, 0.15);
    border-color: rgba(146, 39, 143, 0.3);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(146, 39, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.syllabus-card:hover .card-icon-wrapper {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.card-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: 0.4s;
}

.syllabus-card:hover .card-icon-wrapper i {
    color: #fff;
}

.syllabus-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.syllabus-card .topic-list {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

.syllabus-card .topic-list li {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.syllabus-card .topic-list li::before {
    content: '\f00c';
    /* FontAwesome check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #34bfa3;
    /* Green checkmark */
    font-size: 0.8rem;
    top: 3px;
}

/* Entry Animation */
.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-question.active+.faq-answer {
    padding: 20px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .syllabus-header {
        padding: 15px;
    }

    .module-count {
        margin-right: 10px;
        font-size: 0.8rem;
    }

    .syllabus-header h3 {
        font-size: 1rem;
        line-height: normal;
    }
}