/* ===========================
   HOME PAGE STYLES
   =========================== */

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-blue);
    background-image: url('/assets/img/hero-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-top: var(--navbar-height);
    padding-bottom: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(10, 22, 40, 0.92) 0%,
            rgba(10, 22, 40, 0.85) 40%,
            rgba(10, 22, 40, 0.6) 70%,
            rgba(10, 22, 40, 0.4) 100%);
    z-index: 1;
}

/* Geometric shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--accent-orange);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: 10%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 25%;
    border-radius: 50%;
}

/* --- Hero Two-Column Layout --- */
.hero .container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    /* Reduced side margins */
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.hero-content {
    max-width: 650px;
    /* Increased from 560px */
    flex: 1;
}

/* --- Hero Form Wrapper --- */
.hero-form-wrapper {
    flex: 0 0 440px;
    max-width: 440px;
}

/* --- Hero Form Card --- */
.hero-form-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 6px;
}

.hero-form-subtitle {
    font-size: 0.88rem;
    color: var(--gray-400);
    text-align: center;
    margin-bottom: 24px;
}

/* --- Form Inputs --- */
.hero-lead-form .form-group {
    margin-bottom: 14px;
}

.hero-lead-form .form-row {
    display: flex;
    gap: 10px;
}

.hero-lead-form .form-row .form-group {
    flex: 1;
}

.hero-lead-form input[type="text"],
.hero-lead-form input[type="email"],
.hero-lead-form input[type="tel"],
.hero-lead-form select,
.hero-lead-form .captcha-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    color: var(--dark-text);
    background: var(--off-white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.hero-lead-form input:focus,
.hero-lead-form select:focus,
.hero-lead-form .captcha-input:focus {
    border-color: var(--accent-orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232, 131, 12, 0.1);
}

.hero-lead-form input::placeholder {
    color: var(--gray-300);
}

.hero-lead-form select {
    cursor: pointer;
    color: var(--gray-400);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.hero-lead-form select option {
    color: var(--dark-text);
}

/* Captcha */
.hero-lead-form .captcha-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-lead-form .captcha-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    white-space: nowrap;
    min-width: 70px;
}

.hero-lead-form .captcha-section .captcha-input {
    flex: 1;
}

/* Submit Button */
.hero-form-submit {
    width: 100%;
    padding: 15px 24px;
    margin-top: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--white);
    background: linear-gradient(135deg, var(--accent-orange), #f5a623);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-base);
    letter-spacing: 0.3px;
}

.hero-form-submit:hover {
    background: linear-gradient(135deg, #d4760a, var(--accent-orange));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 131, 12, 0.35);
}

.hero-form-submit:active {
    transform: translateY(0);
}

/* Hero Text Content */
.hero-institute {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hero-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero-rating .stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.hero-rating .rating-text {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
}

.hero-rating .rating-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 18px;
}

.hero-title span {
    color: var(--accent-orange);
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
}

.hero-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin-bottom: 28px;
    list-style: none;
    padding: 0;
}

.hero-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-features-list li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .hero-features-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.hero-ctas {
    display: flex;
    gap: 14px;
}

/* ===== GLOBAL SECTION STYLES ===== */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.25;
}

.section-title span {
    color: var(--accent-orange);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-400);
    max-width: 100%;
    margin-bottom: 48px;
    line-height: 1.6;
}

.section-header.text-center {
    text-align: center;
    margin-bottom: 12px;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: transparent;
    padding: 0;
    position: relative;
    margin-top: -60px;
    z-index: 20;
}

.stats-bar .container {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--primary-blue);
}

.stat-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 2px;
}

/* Stats bar mobile */
@media (max-width: 768px) {
    .stats-bar {
        margin-top: 20px;
        padding: 0 16px;
    }

    .stats-bar .container {
        padding: 28px 24px;
        border-radius: 16px;
        border-top: 4px solid var(--accent-orange);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.82rem;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-highlights {
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--dark-text);
    font-weight: 500;
}

.highlight-icon {
    font-size: 1.1rem;
}

.about-img-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3a5c 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.about-img-placeholder::before {
    content: 'PDMTI';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
}

.about-overlay-card {
    background: var(--accent-orange);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
}

.overlay-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
}

.overlay-text {
    font-size: 0.85rem;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: var(--white);
}


.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-base);
}

.review-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.review-text {
    font-size: 0.92rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark-text);
}

.author-role {
    font-size: 0.78rem;
    color: var(--gray-300);
}

.review-google {
    width: 20px;
    height: 20px;
    margin-left: auto;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-section {
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.why-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.why-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Course Details Bar */
.course-details-bar {
    display: flex;
    justify-content: space-between;
    background: var(--primary-blue);
    border-radius: var(--radius-lg);
    padding: 28px 40px;
    gap: 20px;
}

.detail-item {
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 1.05rem;
}

/* ===== BATCHES SECTION ===== */
.batches-section {
    background: var(--white);
}

.batches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.batch-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.batch-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.batch-card.featured {
    border: 2px solid var(--accent-orange);
    box-shadow: 0 8px 30px rgba(232, 131, 12, 0.15);
}

.batch-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.batch-type {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 14px;
}

.batch-date {
    margin-bottom: 16px;
}

.batch-day {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.batch-month {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.batch-details {
    margin-bottom: 16px;
}

.batch-detail {
    font-size: 0.85rem;
    color: var(--gray-400);
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.batch-status {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.batch-status.available {
    background: #dcfce7;
    color: #16a34a;
}

.batch-status.few-seats {
    background: #fef9c3;
    color: #ca8a04;
}

/* ===== TRAINERS SECTION ===== */
.trainers-section {
    background: var(--off-white);
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trainer-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-base);
}

.trainer-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.trainer-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), #1a3a5c);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.trainer-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.trainer-role {
    font-size: 0.82rem;
    color: var(--gray-400);
    margin-bottom: 6px;
}

.trainer-exp {
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 14px;
}

.trainer-skills {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.trainer-skills span {
    background: var(--off-white);
    color: var(--primary-blue);
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* ===== TRAINING PROCESS ===== */
.process-section {
    background: var(--white);
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gray-200);
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 0;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 2;
    border: 4px solid var(--white);
}

.step-content h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== CERTIFICATIONS ===== */
.certifications-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f2942 100%);
    color: var(--white);
}

.certifications-section .section-title {
    color: var(--white);
}

.certifications-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.cert-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: all var(--transition-base);
}

.cert-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: var(--accent-orange);
}

.cert-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.cert-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cert-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

/* ===== COMPANIES MARQUEE ===== */
.companies-section {
    background: var(--off-white);
    overflow: hidden;
}

.companies-marquee {
    overflow: hidden;
    padding: 10px 0;
}

.companies-track {
    display: flex;
    gap: 30px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.company-logo {
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 18px 36px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-blue);
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.company-logo:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* ===== GOOGLE ADS EXPERT ===== */
.google-ads-section {
    background: #f8f9fa;
}

.gads-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.gads-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition-base);
}

.gads-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.gads-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.gads-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.gads-card p {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ===== STUDENT MEMORIES ===== */
.memories-section {
    background: var(--off-white);
}

.memories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.memory-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.memory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.memory-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3a5c 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    gap: 8px;
}

.memory-placeholder span {
    font-size: 2rem;
}

.memory-placeholder p {
    font-size: 0.82rem;
}

/* ===== SYLLABUS ACCORDION ===== */
.syllabus-section {
    background: var(--white);
}

/* ===== SYLLABUS SECTION ===== */
.syllabus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    /* align-items: flex-start;  Removed to allow equal height */
}

.syllabus-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.syllabus-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.syllabus-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 24px 10px;
    background: var(--white);
}

.syllabus-module {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--accent-orange);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.syllabus-header h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0;
    line-height: 1.4;
}

.syllabus-body {
    padding: 0 24px 24px;
}

.syllabus-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.syllabus-body ul li {
    position: relative;
    padding: 6px 0 6px 20px;
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.syllabus-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .syllabus-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== COURSE OVERVIEW GRID ===== */
.overview-section {
    background: var(--off-white);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.overview-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-orange);
}

.overview-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.overview-card:hover .overview-icon {
    background: var(--primary-blue);
    color: var(--white);
}

.overview-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.overview-card p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .overview-card {
        padding: 24px;
    }
}

/* ===== PLACED STUDENTS ===== */
.placements-section {
    background: var(--white);
}

.placements-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.placement-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition-base);
}

.placement-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.placement-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), #f5a623);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    overflow: hidden;
    border: 3px solid var(--accent-orange);
}

.placement-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placement-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.placement-role {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.placement-company {
    font-size: 0.78rem;
    color: var(--gray-300);
    margin-bottom: 10px;
}

.placement-package {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 4px 14px;
    border-radius: 20px;
}

/* ===== DM TOOLS ===== */
.tools-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f2942 100%);
    color: var(--white);
}

.tools-section .section-title {
    color: var(--white);
}

.tools-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.tool-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px 12px;
    text-align: center;
    transition: all var(--transition-base);
}

.tool-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: var(--accent-orange);
}

.tool-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.tool-item span {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--off-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

/* ===== FAQ GRID ===== */
.faq-section {
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
}

.faq-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-card p {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background: var(--white);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.blog-img-placeholder {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-blue), #1a3a5c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 2.5rem;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.blog-date {
    font-size: 0.78rem;
    color: var(--gray-300);
}

.blog-category {
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(232, 131, 12, 0.1);
    color: var(--accent-orange);
    padding: 2px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-orange);
    text-decoration: none;
}

.blog-link:hover {
    text-decoration: underline;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-outline-dark:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-orange), #f5a623);
    padding: 80px 0;
}

.cta-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

.cta-card h2 span {
    color: var(--primary-blue);
}

.cta-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.cta-buttons .btn-primary:hover {
    background: #0e2e4a;
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--accent-orange);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-row {
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-form-wrapper {
        flex: none;
        max-width: 480px;
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero::before,
    .hero::after,
    .hero-shapes {
        width: 100%;
        opacity: 0.3;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-details-bar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .batches-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gads-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .memories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .placements-slider {
        grid-template-columns: repeat(3, 1fr);
    }

    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-institute {
        font-size: 0.9rem;
    }

    .hero-badges {
        gap: 8px;
    }

    .hero-badge {
        padding: 6px 14px;
        font-size: 0.78rem;
    }

    .hero-form-wrapper {
        max-width: 100%;
    }

    .hero-lead-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        margin-bottom: 32px;
    }

    .stats-grid {
        gap: 20px;
    }

    .stats-grid .stat-number {
        font-size: 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .course-details-bar {
        padding: 20px;
        flex-direction: column;
    }

    .trainers-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gads-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .placements-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-card h2 {
        font-size: 1.7rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 32px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .hero-form-card {
        padding: 20px 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 1.3rem !important;
    }

    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .certs-grid {
        grid-template-columns: 1fr;
    }

    .gads-grid {
        grid-template-columns: 1fr;
    }

    .placements-slider {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .memories-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== DM COMPANIES SCROLLER ===== */
.dm-partners-section {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}

/* Ensure subtitle is centered */
.dm-partners-section .section-subtitle {
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
    /* Explicitly center text */
}

.scrolling-container {
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.dm-scrolling-wrapper {
    display: flex;
    width: max-content;
    animation: dm-scroll-left 40s linear infinite;
    gap: 30px;
}

.dm-client-img {
    flex-shrink: 0;
    width: 160px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.dm-client-img:hover {
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dm-client-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: grayscale(100%); Removed grayscale */
    transition: all var(--transition-base);
    /* opacity: 0.7; Removed opacity */
}

/* 
.dm-client-img:hover img {
    filter: grayscale(0%);
    opacity: 1;
} 
*/

@keyframes dm-scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.dm-scrolling-wrapper:hover {
    animation-play-state: paused;
}