/* ========================================
   Piooneer Ideal Solutions - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #34008f;
    --secondary-color: #5b2cff;
    --accent-color: #ff5700;
    --text-dark: #151124;
    --text-light: #625b78;
    --white: #ffffff;
    --light-bg: #f7fafc;
    --border-color: #e2e8f0;
    --success: #38a169;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #dd6b20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 137, 54, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid var(--white);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-link {
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-link:hover {
    color: #dd6b20;
}

/* ========================================
   HEADER STYLES
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo img {
    height: 130px;
    max-width: 360px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list li {
    position: relative;
}

.nav-list li a,
.drop-toggle {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.drop-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-list li a::after,
.drop-toggle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-list li a:hover::after,
.nav-list li a.active::after,
.nav-list li:hover > .drop-toggle::after,
.drop-toggle.active::after {
    width: 100%;
}

.nav-list li a:hover,
.nav-list li a.active,
.nav-list li:hover > .drop-toggle,
.drop-toggle.active {
    color: var(--accent-color);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 285px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(91, 44, 255, 0.14);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(52, 0, 143, 0.16);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-list li:hover > .dropdown-menu,
.nav-list li:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.92rem;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: rgba(255, 87, 0, 0.1);
}

.header-btn {
    display: block;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats {
    background: var(--accent-color);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ========================================
   LEARN SECTION
   ======================================== */
.learn-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.learn-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.learn-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.learn-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.learn-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.learn-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.learn-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-choose {
    padding: 80px 0;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.choose-card {
    text-align: center;
    padding: 30px 20px;
}

.choose-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.choose-card:hover .choose-icon {
    background: var(--accent-color);
}

.choose-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.choose-card:hover .choose-icon i {
    color: var(--white);
}

.choose-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.choose-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   COURSE PATH
   ======================================== */
.course-path {
    padding: 80px 0;
    background: var(--light-bg);
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.path-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.path-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.path-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.path-image i {
    font-size: 2.5rem;
    color: var(--white);
}

.path-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.path-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* ========================================
   SOFTWARE SECTION
   ======================================== */
.software-section {
    padding: 60px 0;
    background: var(--primary-color);
}

.software-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.software-item {
    text-align: center;
    color: var(--white);
}

.software-item i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.software-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--text-dark);
    padding: 60px 0 20px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
}

.social-links a i {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom .designed-by {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

.footer-bottom .designed-by::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--accent-color);
    margin: 8px auto 0;
    border-radius: 2px;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {
    .learn-grid,
    .choose-grid,
    .path-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header-btn {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .learn-grid,
    .choose-grid,
    .path-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .software-grid {
        gap: 30px;
    }
    
    .software-item {
        flex-basis: 40%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 15px 0;
    }
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 150px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.brochure-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2000;
    padding: 24px;
}

.brochure-modal.active {
    display: flex;
}

.brochure-modal-content {
    width: 100%;
    max-width: 520px;
    background: var(--white);
    border-radius: 18px;
    padding: 30px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.brochure-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--text-dark);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
}

.brochure-modal-close:hover {
    transform: scale(1.05);
}

.brochure-modal-header h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.brochure-modal-header p {
    margin-bottom: 22px;
    color: var(--text-light);
    line-height: 1.7;
}

.brochure-form {
    display: grid;
    gap: 18px;
}

.brochure-form .form-group {
    display: flex;
    flex-direction: column;
}

.brochure-form .form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.brochure-form .form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.brochure-form .form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(255, 87, 0, 0.09);
}

.brochure-success {
    display: none;
    gap: 18px;
    text-align: center;
}

.brochure-success p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

.brochure-success .btn-primary {
    width: auto;
    padding: 12px 28px;
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .brochure-modal {
        padding: 16px;
    }

    .brochure-modal-content {
        padding: 22px;
    }
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.about-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image i {
    font-size: 8rem;
    color: var(--white);
    opacity: 0.3;
}

/* Mission Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--light-bg);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mv-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   COURSES PAGE
   ======================================== */
.courses-section {
    padding: 80px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.course-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.course-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 50px;
    text-align: center;
}

.course-image i {
    font-size: 4rem;
    color: var(--white);
}

.course-content {
    padding: 30px;
}

.course-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.course-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.course-features {
    margin-bottom: 25px;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.course-features li i {
    color: var(--success);
}

/* ========================================
   SERVICES PAGES
   ======================================== */
.services-section,
.service-detail-section,
.service-list-section,
.industries-section {
    padding: 80px 0;
}

.services-intro {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
}

.services-grid,
.service-list-grid,
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card,
.service-list-card,
.industry-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(91, 44, 255, 0.16);
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(52, 0, 143, 0.12);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:hover,
.service-list-card:hover,
.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(52, 0, 143, 0.18);
}

.service-icon,
.service-list-icon,
.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.service-icon i,
.service-list-icon i,
.industry-icon i {
    color: var(--white);
    font-size: 1.8rem;
}

.service-card h3,
.service-list-card h3,
.industry-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p,
.service-list-card p,
.industry-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

.service-detail-text h2,
.service-detail-panel h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 18px;
}

.service-detail-text p,
.service-detail-panel p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

.service-detail-panel {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(91, 44, 255, 0.16);
    border-radius: 10px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(52, 0, 143, 0.12);
}

.service-points {
    margin-top: 24px;
}

.service-points li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.service-points li i {
    color: var(--success);
    margin-top: 4px;
}

.service-list-section,
.services-section,
.service-detail-section,
.industries-section {
    background:
        linear-gradient(135deg, rgba(238, 232, 255, 0.88), rgba(255, 240, 230, 0.82)),
        repeating-linear-gradient(45deg, rgba(52, 0, 143, 0.035) 0 1px, transparent 1px 32px);
}

/* ========================================
   PROGRAM PAGE
   ======================================== */
.program-section {
    padding: 80px 0;
}

.program-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.program-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.program-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    width: 2px;
    height: calc(100% + 20px);
    background: var(--border-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.step-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.step-content ul li i {
    color: var(--accent-color);
}

/* Program Features */
.program-features {
    padding: 80px 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Duration & Fees */
.duration-fees {
    padding: 80px 0;
}

.df-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.df-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
}

.df-card:hover {
    transform: translateY(-10px);
}

.df-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.df-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.df-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.df-duration {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.df-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.df-card ul {
    text-align: left;
    margin-bottom: 25px;
}

.df-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.df-card ul li i {
    color: var(--success);
}

.df-card .btn-primary {
    width: 100%;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.contact-item-text h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item-text p {
    color: var(--text-light);
}

.contact-item-text .map-link {
    color: var(--text-light);
    transition: var(--transition);
}

.contact-item-text .map-link:hover {
    color: var(--accent-color);
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(237, 137, 54, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-box .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.map-action {
    text-align: center;
    margin-top: 20px;
}

/* ========================================
   RESPONSIVE FOR NEW PAGES
   ======================================== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .mv-grid,
    .features-grid,
    .df-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .service-list-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .courses-grid,
    .program-timeline {
        grid-template-columns: 1fr;
    }
    
    .mv-grid,
    .features-grid,
    .df-grid {
        grid-template-columns: 1fr;
    }
    
    .df-card.featured {
        transform: none;
    }
    
    .df-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .about-image {
        padding: 60px;
    }
    
    .about-image i {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        background: rgba(255, 250, 247, 0.96);
        border-top: 1px solid rgba(91, 44, 255, 0.14);
        box-shadow: 0 18px 35px rgba(52, 0, 143, 0.12);
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 20px;
    }

    .nav-list li a,
    .drop-toggle {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 0;
        padding: 0 0 8px 16px;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .dropdown-menu li a {
        padding: 8px 0;
    }

    .services-grid,
    .service-list-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-list-card,
    .industry-card,
    .service-detail-panel {
        padding: 26px;
    }

    .service-detail-text h2,
    .service-detail-panel h2 {
        font-size: 1.65rem;
    }
}

/* ========================================
   BRAND GRAPHIC REFINEMENTS
   ======================================== */
body {
    background:
        linear-gradient(120deg, rgba(52, 0, 143, 0.07) 0 16%, transparent 16% 100%),
        linear-gradient(300deg, transparent 0 64%, rgba(255, 87, 0, 0.08) 64% 78%, transparent 78% 100%),
        repeating-linear-gradient(135deg, rgba(91, 44, 255, 0.035) 0 1px, transparent 1px 34px),
        linear-gradient(180deg, #fff7f2 0%, #f1ebff 42%, #fff9f4 100%);
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(128deg, transparent 0 8%, rgba(52, 0, 143, 0.13) 8% 12%, transparent 12% 100%),
        linear-gradient(140deg, transparent 0 58%, rgba(255, 87, 0, 0.14) 58% 62%, transparent 62% 100%),
        linear-gradient(32deg, transparent 0 35%, rgba(91, 44, 255, 0.08) 35% 38%, transparent 38% 100%);
}

.header {
    background: rgba(255, 250, 247, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(52, 0, 143, 0.08);
}

.hero,
.page-header {
    background:
        linear-gradient(128deg, rgba(255, 87, 0, 0.95) 0 18%, transparent 18% 100%),
        linear-gradient(135deg, #24005f 0%, var(--primary-color) 48%, var(--secondary-color) 100%);
}

.learn-section,
.why-choose,
.course-path,
.testimonials,
.about-section,
.mission-vision,
.courses-section,
.program-section,
.program-features,
.duration-fees,
.contact-section,
.map-section {
    background:
        linear-gradient(135deg, rgba(238, 232, 255, 0.88), rgba(255, 240, 230, 0.82)),
        repeating-linear-gradient(45deg, rgba(52, 0, 143, 0.035) 0 1px, transparent 1px 32px);
}

.learn-card,
.path-card,
.testimonial-card,
.mv-card,
.course-card,
.step-content,
.feature-card,
.df-card,
.contact-info-box,
.contact-form-box {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(91, 44, 255, 0.16);
    box-shadow: 0 18px 45px rgba(52, 0, 143, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.software-section,
.cta-section {
    background:
        linear-gradient(132deg, rgba(255, 87, 0, 0.88) 0 14%, transparent 14% 100%),
        linear-gradient(135deg, #24005f, var(--primary-color), var(--secondary-color));
}

.software-section .section-header h2 {
    color: #ffffff;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
}

.software-section .section-header h2::after {
    background: var(--accent-color);
}

.footer {
    background: linear-gradient(135deg, #151124, #24005f 58%, #151124);
}

.logo,
.logo a {
    background: transparent;
}

.logo img {
    background: transparent;
    mix-blend-mode: normal;
}

/* ========================================
   FINAL HEADER ALIGNMENT
   ======================================== */
.header {
    padding: 8px 0;
}

.header .container {
    min-height: 92px;
    gap: 24px;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 96px;
    max-width: 230px;
}

.nav {
    flex: 1 1 auto;
}

.nav-list {
    justify-content: center;
    gap: 28px;
}

.has-dropdown {
    position: relative;
}

.has-dropdown > .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1200;
    min-width: 310px;
    padding: 12px;
    margin: 0;
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu,
.has-dropdown.dropdown-open > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    white-space: nowrap;
}

.header-btn {
    flex: 0 0 auto;
}

.header-btn .btn-primary {
    white-space: nowrap;
}

.has-dropdown.dropdown-open > .drop-toggle {
    color: var(--accent-color);
}

.has-dropdown.dropdown-open > .drop-toggle::after {
    width: 100%;
}

@media (max-width: 1024px) {
    .header .container {
        gap: 18px;
    }

    .nav-list {
        gap: 18px;
    }

    .logo img {
        height: 86px;
        max-width: 205px;
    }

    .header-btn .btn-primary {
        padding: 11px 20px;
    }
}

@media (max-width: 768px) {
    .header .container {
        min-height: 76px;
    }

    .logo img {
        height: 76px;
        max-width: 180px;
    }

    .nav-list {
        justify-content: flex-start;
        gap: 0;
    }

    .has-dropdown > .dropdown-menu {
        display: block;
        position: static;
        min-width: 0;
        padding: 0 0 8px 16px;
    }

    .dropdown-menu li a {
        white-space: normal;
    }
}
