/* ======================================= */
/* TAJAU BERSERI - COMPLETE STYLESHEET */
/* ======================================= */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2D3748;
    line-height: 1.3;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 500;
}

p {
    color: #4A5568;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.section-divider {
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, #4F46E5, #7C3AED);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background: white;
    color: #4F46E5;
    border: 2px solid #4F46E5;
}

.btn-secondary:hover {
    background: #4F46E5;
    color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #4F46E5;
    border: 2px solid #4F46E5;
}

.btn-outline:hover {
    background: #4F46E5;
    color: white;
}

.btn-large {
    padding: 12px 35px;
    font-size: 1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 50px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

/* Back button next to logo for easier navigation (accessible for older users) */
.nav-back-button {
    background: transparent;
    border: 2px solid transparent;
    color: #4F46E5;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    cursor: pointer;
    font-size: 16px;
}
.nav-back-button i { font-size: 16px; }
.nav-back-button:hover { background: rgba(79,70,229,0.08); }

.logo-text h2 {
    font-size: 0.95rem;
    max-width: 200px;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #4A5568;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #7C3AED !important;
    background: rgba(124, 58, 237, 0.08);
    text-shadow: 0 0 12px rgba(124, 58, 237, 0.45);
    font-weight: 600;
}

.nav-cta {
    background: transparent;
    color: #4A5568;
    padding: 6px 15px;
    font-weight: 600;
    border-radius: 6px;
}

.nav-cta:hover,
.nav-cta.active {
    color: #7C3AED !important;
    background: rgba(124, 58, 237, 0.08);
    text-shadow: 0 0 12px rgba(124, 58, 237, 0.45);
}

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

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2D3748;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Sections */
.hero, .page-hero {
    padding: 130px 20px 70px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url("./images/hero-bg.png") center/cover no-repeat;
    color: white;
    margin-top: 65px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.page-hero.advertisement {
    /* Make advertisement hero consistent with other pages */
    padding: 130px 20px 70px;
    min-height: 60vh;
}

.hero-container, .page-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ======================================= */
/* ABOUT SECTION */
/* ======================================= */
.about {
    padding: 70px 20px;
    background: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content p {
    margin-bottom: 20px;
}

/* ======================================= */
/* SERVICES GRID */
/* ======================================= */
.services-grid {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.service-icon i {
    color: #4F46E5;
}

/* Make service icon images fully fill and be clipped to the circular frame */
.service-icon {
    overflow: hidden; /* clip images to circle */
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fill the frame and crop if needed */
    display: block;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* CLIENTS / PARTNERS GRID */
.clients-section {
    padding: 60px 20px;
    background: white;
}

.clients-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
    padding: 0 20px;
}

.client-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.client-logo img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 480px) {
    .client-logo img {
        max-height: 60px;
    }
}

.service-card p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #4F46E5;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ======================================= */
/* TESTIMONIALS */
/* ======================================= */
.testimonials {
    padding: 80px 20px;
    background: #f8f9fa;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #4F46E5;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    color: #4F46E5;
    margin-bottom: 5px;
}

/* ======================================= */
/* CONTACT SECTION */
/* ======================================= */
.contact {
    padding: 80px 20px;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    margin-bottom: 15px;
}

.contact-subtitle {
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-details > div {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-details i {
    color: #4F46E5;
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-form {
    background: #F7FAFC;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* ======================================= */
/* FOOTER */
/* ======================================= */
footer {
    background: #0f1a24;
    color: white;
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-logo h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.footer-logo p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.footer-links h4,
.footer-social h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: white;
    color: #0f1a24;
    transform: translateY(-3px);
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ======================================= */
/* COURSES PAGE STYLES */
/* ======================================= */
.courses-section {
    padding: 70px 20px;
    background: #F7FAFC;
}

.store-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.store-course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    border: 1px solid #eaeef2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.store-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid #f0f0f0;
}

.store-course-title {
    font-size: 1.1rem;
    color: #2D3748;
    padding: 15px 15px 5px;
    margin: 0;
    line-height: 1.4;
    font-weight: 700;
    min-height: 65px;
}

.hrdf-badge {
    background-color: #e8f4ff;
    color: #4F46E5;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin: 0 15px 5px;
}

.course-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4F46E5;
    padding: 0 15px;
    margin-bottom: 5px;
}

.promo-badge {
    background-color: #ff4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    margin: 10px 15px;
    display: inline-block;
    width: fit-content;
}

.store-course-card .btn-primary {
    margin: auto 15px 20px;
    width: calc(100% - 30px);
}

.simple-info-section {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eaeef2;
}

/* ======================================= */
/* CLIENTS & GALLERY PAGE */
/* ======================================= */
.clients-section {
    padding: 70px 20px;
    background: white;
}

.clients-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    padding: 24px;
    justify-items: center;
    align-items: start;
}

.client-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 22px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ececec;
    min-height: 120px;
}

.client-logo img {
    max-width: 160px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Gallery Section */
.gallery-section {
    padding: 70px 20px;
    background: #f5f5f5;
}

.gallery-scroll-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 20px 0;
}

.gallery-scroll-wrapper {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 0 20px;
}

.gallery-scroll-item {
    flex: 0 0 280px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    cursor: pointer;
}

.gallery-scroll-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* ======================================= */
/* BLOG SECTION */
/* ======================================= */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f6 100%);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(79, 70, 229, 0.1);
}

.post-header {
    padding: 30px 30px 15px;
}

.post-category {
    display: inline-block;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.post-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #1e293b;
}

.post-meta {
    display: flex;
    gap: 20px;
    color: #64748b;
    font-size: 0.85rem;
}

.post-thumbnail {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px 30px 15px;
}

.post-tags {
    padding: 0 30px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.post-tags a {
    display: inline-block;
    padding: 4px 12px;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    font-size: 0.75rem;
    border-radius: 50px;
}

.post-actions {
    padding: 20px 30px 30px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 15px;
}

/* ======================================= */
/* SEE MORE POSTS BUTTON */
/* ======================================= */

.see-more-container {
    text-align: center;
    margin: 40px 0 30px;
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.see-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, #4338CA, #6D28D9);
}

.see-more-btn:active {
    transform: translateY(0);
}

.see-more-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.see-more-btn:hover i {
    transform: translateY(3px);
}

.see-more-btn .arrow-icon {
    transition: transform 0.3s ease;
}

.see-more-btn:hover .arrow-icon {
    transform: translateY(3px);
}

/* Alternative Outline Style (if you prefer) */
.see-more-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 34px;
    background: transparent;
    color: #4F46E5;
    border: 2px solid #4F46E5;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.see-more-btn-outline:hover {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.see-more-btn-outline:hover i {
    transform: translateY(3px);
}

/* Less More Button (for hiding posts) */
.less-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 35px;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.less-more-btn:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
    color: #1e293b;
}

.less-more-btn:hover .arrow-icon {
    transform: translateY(-3px);
}

/* Animation for button click */
@keyframes buttonPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

.see-more-btn:active,
.less-more-btn:active {
    animation: buttonPop 0.2s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .see-more-btn,
    .see-more-btn-outline,
    .less-more-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .see-more-container {
        margin: 30px 0 20px;
    }
}

@media (max-width: 480px) {
    .see-more-btn,
    .see-more-btn-outline,
    .less-more-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 119, 181, 0.12);
}

/* LinkedIn Card */
.linkedin-card {
    background: linear-gradient(135deg, #f0f7ff, #e3f0ff);
    border: 1px solid #0077b5;
    text-align: center;
}

.linkedin-card .card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: none;
    padding-bottom: 0;
}

.linkedin-card .card-header i {
    color: #0A66C2;
    font-size: 3rem;
}

.linkedin-card .card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #0077b5;
    font-weight: 700;
}

.linkedin-card p {
    color: #475569;
    margin-bottom: 25px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.linkedin-card .btn-primary {
    background: #0A66C2;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    border: none;
    color: white;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.linkedin-card .btn-primary:hover {
    background: #004182;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 102, 194, 0.2);
}

/* Women In Tech Card */
.wit-card {
    background: linear-gradient(135deg, #f0f7ff, #e3f0ff);
    border: 1px solid #0077b5;
    text-align: center;
}

.wit-card .card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: none;
    padding-bottom: 0;
}

.wit-card .card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #0077b5;
    font-weight: 700;
}

.wit-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 12px;
    border: 2px solid #0077b5;
    transition: transform 0.3s ease;
}

.wit-card:hover .wit-logo {
    transform: scale(1.05);
}

.wit-card p {
    color: #475569;
    margin-bottom: 25px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.wit-card .btn-primary {
    background: #0A66C2;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    border: none;
    color: white;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wit-card .btn-primary:hover {
    background: #004182;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 102, 194, 0.2);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}



/* ======================================= */
/* BUSINESS ESCALATION STYLES */
/* ======================================= */
.services-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.escalation-services {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}

.escalation-service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem 1.8rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.escalation-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.08);
}

.service-icon-large {
    width: 90px;
    height: 90px;
    background: #eef2f6;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.service-icon-large i {
    font-size: 2.8rem;
    color: #2f3e4e;
}

.service-icon-large img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
}

.escalation-service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
    color: #1e2b37;
}

.service-details h4 {
    font-size: 1.1rem;
    margin: 1.2rem 0 0.6rem;
    color: #1e2b37;
    font-weight: 600;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: #3a4a5a;
}

.service-details i {
    color: #2f3e4e;
    width: 22px;
}

.price-range {
    background: #eef2f6;
    border-radius: 40px;
    padding: 1.2rem;
    margin: 1.5rem 0 0.2rem;
    text-align: center;
}

/* ======================================= */
/* SPACE SOLUTIONS / COWORKING CARDS */
/* ======================================= */
.service-card.restyled {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem 1.8rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.restyled:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.08);
}

.service-card.restyled .service-icon-large i {
    font-size: 2.8rem;
    color: #2f3e4e;
    background: #eef2f6;
    width: 90px;
    height: 90px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.service-card.restyled h3 {
    font-size: 1.7rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
    color: #1e2b37;
}

.service-card.restyled .price-tag {
    background: #eef2f6;
    color: #1e2b37;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    display: inline-block;
    margin: 0.7rem 0 1.2rem;
    font-size: 1rem;
}

.service-card.restyled .service-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0.5rem 0 1rem;
}

.service-card.restyled .service-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: #3a4a5a;
}

.service-card.restyled .service-features i {
    color: #2f3e4e;
    width: 22px;
}

.service-card.restyled .highlight-feature {
    background: #f7f9fc;
    padding: 1.2rem;
    border-radius: 18px;
    margin: 0.8rem 0 0.5rem;
    border-left: 4px solid #2f3e4e;
}

/* ======================================= */
/* AMENITIES SECTION */
/* ======================================= */
.amenities-section {
    text-align: center;
    padding: 70px 20px;
    background: #f9f9f9;
}

.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.amenity-item {
    flex: 0 0 170px;
    text-align: center;
}

.amenity-item i {
    color: #2f3e4e;
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.amenity-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #1e2b37;
}

/* ======================================= */
/* PROCESS SECTION */
/* ======================================= */
.process-section {
    padding: 70px 20px;
    background: #ffffff;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-step {
    text-align: center;
    padding: 25px 20px;
    background: #f7fafc;
    border-radius: 20px;
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2f3e4e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
    font-size: 1.3rem;
}

/* ======================================= */
/* ADDRESS SECTION */
/* ======================================= */
.address-section {
    padding: 70px 20px;
    background: #f9f9f9;
    text-align: center;
}

.address-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.address-details {
    text-align: left;
    margin: 30px 0;
}

.address-details p {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.address-details i {
    color: #2f3e4e;
    font-size: 1.3rem;
    width: 25px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.maps-button, .call-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.maps-button {
    background: #2f3e4e;
    color: white;
}

.call-button {
    background: transparent;
    color: #2f3e4e;
    border: 2px solid #2f3e4e;
}

/* ======================================= */
/* CART SUMMARY */
/* ======================================= */
.cart-summary-section {
    padding: 70px 20px;
    background: #f9f9f9;
}

.cart-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    padding: 30px;
}

.cart-item {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #eef2f6;
}

.cart-item-quantity button {
    background: #eef2f6;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
}

.cart-total {
    text-align: right;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 12px;
}

/* ======================================= */
/* MODAL */
/* ======================================= */
.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideDown 0.3s ease;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ======================================= */
/* ADVERTISEMENT LISTING PAGE STYLES - UPDATED */
/* ======================================= */

/* Hero Section for Advertisement - make consistent with site-wide hero */
.page-hero.advertisement {
    /* Make advertisement hero consistent with other pages */
    padding: 130px 20px 70px;
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url("./images/hero-bg.png") center/cover no-repeat;
    color: white;
    margin-top: 65px;
    display: flex;
    align-items: center;
    position: relative;
}

/* Search Filter Wrapper */
.search-filter-wrapper {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.search-bar-container {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: white;
    padding: 12px 20px;
    border-radius: 60px;
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.08);
    border: 1px solid #e2e8f0;
}

.search-input-group {
    flex: 3;
    min-width: 280px;
    position: relative;
}

.search-input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #4F46E5;
    font-size: 0.9rem;
}

.search-input-group input {
    width: 100%;
    padding: 12px 18px 12px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    background: #f8fafc;
    transition: all 0.3s;
}

.search-input-group input:focus {
    outline: none;
    border-color: #4F46E5;
    background: white;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.filter-select {
    flex: 1;
    min-width: 140px;
    max-width: 160px;
    padding: 12px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    background: #f8fafc;
    color: #334155;
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F46E5' 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 15px center;
    background-size: 12px;
}

.filter-select:focus {
    outline: none;
    border-color: #4F46E5;
    background: white;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Listings Header */
.listings-header {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
    text-align: center;
}

.listings-header h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 700;
}

.listings-header p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Listing Grid */
.listing-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 35px;
    padding: 20px;
}

/* Listing Card */
.listing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 70, 229, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
    border-color: #4F46E5;
}

.listing-card.featured {
    border: 2px solid #4F46E5;
}

.listing-card.featured::before {
    content: 'FEATURED';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.listing-logo {
    height: 180px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.listing-logo-img {
    max-width: 130px;
    max-height: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.listing-card:hover .listing-logo-img {
    transform: scale(1.05);
}

.default-logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.default-logo i {
    font-size: 3rem;
    color: white;
}

.listing-content {
    padding: 25px;
    flex-grow: 1;
}

.listing-content h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: #1e293b;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.listing-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 2px;
}

.listing-details {
    margin-bottom: 20px;
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
}

.listing-details p {
    margin-bottom: 10px;
    color: #475569;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.listing-details p:last-child {
    margin-bottom: 0;
}

.listing-details i {
    width: 18px;
    color: #4F46E5;
    font-size: 0.9rem;
    margin-top: 3px;
}

.listing-details span,
.listing-details a {
    color: #334155;
    flex: 1;
    word-break: break-word;
}

.listing-details a {
    color: #4F46E5;
    text-decoration: none;
}

.listing-details a:hover {
    text-decoration: underline;
}

.listing-services {
    margin-top: 20px;
}

.listing-services h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #4F46E5;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

.listing-footer {
    padding: 18px 25px 22px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
}

.listing-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4F46E5;
    margin: 0;
}

.listing-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: #64748b;
}

/* Buttons - Consistent with Send Message */
.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 6px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

/* ======================================= */
/* SUBMISSION PANEL - REDESIGNED WITH CARD STYLE */
/* ======================================= */

.submission-panel {
    max-width: 1000px;
    margin: 60px auto 40px;
    background: white;
    border-radius: 28px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.panel-header {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    padding: 30px 35px;
    color: white;
}

.panel-header h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.panel-header h3 i {
    font-size: 1.8rem;
}

.panel-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

/* Requirement Box - Redesigned as Card */
.requirement-box {
    margin: 25px 35px;
    background: linear-gradient(135deg, #fef9e3, #fff6e6);
    border-left: 4px solid #f59e0b;
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.requirement-box i {
    font-size: 1.8rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.requirement-content {
    flex: 1;
}

.requirement-content strong {
    display: block;
    font-size: 1rem;
    color: #b45309;
    margin-bottom: 8px;
    font-weight: 600;
}

.requirement-content p {
    color: #92400e;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Form Container */
.form-container {
    padding: 0 35px 35px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1e293b;
    font-size: 0.9rem;
}

.form-group label i {
    color: #4F46E5;
    margin-right: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: #f8fafc;
}

.form-group input:focus {
    outline: none;
    border-color: #4F46E5;
    background: white;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Services Tags Input */
.services-tags-input {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.services-tags-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
}

.services-tags-input input:focus {
    outline: none;
    border-color: #4F46E5;
    background: white;
}

.small-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 0 24px;
    border-radius: 12px;
    color: #4F46E5;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.small-btn:hover {
    background: #4F46E5;
    color: white;
    border-color: #4F46E5;
}

#dynamicServiceTags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.service-tag-item {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-tag-item i {
    cursor: pointer;
    font-size: 0.7rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.service-tag-item i:hover {
    opacity: 1;
}

/* Submit Button - Consistent with Send Message */
.submit-listing-btn {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    width: auto;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.submit-listing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.submit-listing-btn i {
    font-size: 1rem;
}

.form-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.form-feedback {
    color: #10b981;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-feedback i {
    font-size: 1rem;
}

.form-feedback.error {
    color: #ef4444;
}

/* How It Works Section */
.how-it-works {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 50px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.how-it-works h3 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #1e293b;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.how-it-works h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 2px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1e293b;
    font-weight: 600;
}

.step p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Empty Listings */
.empty-listings {
    max-width: 500px;
    margin: 40px auto;
    padding: 50px 40px;
    background: white;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.empty-listings i {
    font-size: 3rem;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.empty-listings h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.empty-listings p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.empty-listings i {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 992px) {
    .listing-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .submission-panel {
        margin: 40px 20px;
    }
    
    .panel-header {
        padding: 25px;
    }
    
    .panel-header h3 {
        font-size: 1.5rem;
    }
    
    .requirement-box {
        margin: 20px 25px;
    }
    
    .form-container {
        padding: 0 25px 25px;
    }
}

@media (max-width: 768px) {
    .search-bar-container {
        flex-direction: column;
        border-radius: 30px;
        padding: 15px;
        gap: 12px;
    }
    
    .search-input-group {
        width: 100%;
        min-width: auto;
    }
    
    .filter-select {
        width: 100%;
        max-width: none;
        min-width: auto;
    }
    
    .listings-header h2 {
        font-size: 1.6rem;
    }
    
    .listing-grid {
        padding: 15px;
        gap: 20px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .how-it-works {
        padding: 30px 20px;
        margin: 40px 20px;
    }
    
    .how-it-works h3 {
        font-size: 1.6rem;
    }
    
    .panel-header h3 {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .panel-header p {
        text-align: center;
    }
    
    .requirement-box {
        flex-direction: column;
        text-align: center;
        margin: 20px;
    }
    
    .requirement-box i {
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .submit-listing-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .listing-logo {
        height: 150px;
    }
    
    .listing-content h3 {
        font-size: 1.2rem;
    }
    
    .listing-details p {
        font-size: 0.85rem;
    }
    
    .service-tag {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .listing-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .listing-footer .btn-sm {
        width: 100%;
        justify-content: center;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .panel-header {
        padding: 20px;
    }
    
    .panel-header h3 {
        font-size: 1.2rem;
    }
    
    .requirement-box {
        margin: 15px;
        padding: 15px;
    }
    
    .form-container {
        padding: 0 20px 20px;
    }
}

/* ======================================= */
/* ONLINE LEARNING STYLES */
/* ======================================= */
.online-courses {
    padding: 80px 20px;
    background: white;
}

.courses-filter {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 25px;
    background: #F7FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 30px;
    color: #4A5568;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #4F46E5;
    color: white;
    border-color: #4F46E5;
}

.online-courses-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.online-course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
    position: relative;
}

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

.free-trial-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #10B981;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.course-thumbnail {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.online-course-card:hover .course-thumbnail img {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4F46E5;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.course-content {
    padding: 25px;
    flex-grow: 1;
}

.course-category {
    color: #4F46E5;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.course-title {
    font-size: 1.3rem;
    color: #2D3748;
    margin-bottom: 15px;
}

.course-description {
    color: #4A5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E2E8F0;
}

.course-price {
    font-size: 1.5rem;
    color: #4F46E5;
    font-weight: 700;
}

.course-price .original {
    font-size: 1rem;
    color: #A0AEC0;
    text-decoration: line-through;
}

.course-stats {
    display: flex;
    gap: 15px;
    color: #718096;
    font-size: 0.9rem;
}

/* Student Dashboard */
.student-dashboard {
    padding: 60px 20px;
    background: #F7FAFC;
}

.dashboard-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.active-course {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #EDF2F7;
    position: relative;
}

.course-thumb-sm {
    width: 100px;
    height: 70px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-thumb-sm i {
    font-size: 2rem;
    color: white;
}

.course-info-flex {
    flex: 1;
}

.progress-bg {
    background: #E2E8F0;
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    background: #4F46E5;
    height: 100%;
    border-radius: 10px;
    width: 0%;
}

/* Payment Modal */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.payment-modal.active {
    display: flex;
}

.payment-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    position: relative;
}

.trial-offer {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin: 15px 0;
    text-align: center;
}

.btn-trial {
    width: 100%;
    padding: 15px;
    background: #10B981;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.btn-pay {
    width: 100%;
    padding: 15px;
    background: #4F46E5;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.enrolled-badge {
    background: #10B981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}

/* Platform Features */
.platform-features {
    padding: 80px 20px;
    background: #F7FAFC;
}

.features-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

/* ======================================= */
/* IT SOLUTIONS PAGE STYLES */
/* ======================================= */
.solutions-section {
    padding: 80px 20px;
    background: white;
}

.solutions-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.solution-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 1px solid #E2E8F0;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-header {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.solution-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.solution-header-overlay h3 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
}

.solution-content {
    padding: 30px;
}

.solution-features {
    list-style: none;
    margin: 20px 0;
}

.solution-features li {
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
}

.solution-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4F46E5;
}

.cert-list {
    background: #f8fafc;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    border-left: 4px solid #4F46E5;
}

/* Tech Stack */
.tech-stack {
    padding: 80px 20px;
    background: #F7FAFC;
}

.tech-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.tech-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 2rem;
    color: #4F46E5;
    margin-bottom: 15px;
}

/* IT Training */
.it-training {
    padding: 80px 20px;
    background: white;
}

.training-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.training-card {
    background: #F0F4FF;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #4F46E5;
}

.training-card h3 {
    color: #4F46E5;
    margin-bottom: 15px;
}

.certification-badge {
    background: #4F46E5;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

/* Case Studies */
.case-studies {
    padding: 80px 20px;
    background: #F7FAFC;
}

.case-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.case-study {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.case-header {
    background: #1e2b37;
    padding: 25px;
}

.case-header h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.case-header p {
    color: rgba(255,255,255,0.8);
}

.case-content {
    padding: 30px;
}

.case-results {
    background: #f7f9fc;
    padding: 20px;
    border-radius: 16px;
    border-left: 4px solid #2f3e4e;
    margin-top: 20px;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    color: white;
    font-size: 1.2rem;
}

.cta-content .btn-large {
    background: white;
    color: #4F46E5;
    border: none;
    margin-top: 20px;
}

/* ======================================= */
/* COURSE PLAYER STYLES */
/* ======================================= */
.course-player {
    display: flex;
    min-height: 100vh;
}

.course-sidebar {
    width: 320px;
    background: white;
    border-right: 1px solid #E2E8F0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #E2E8F0;
    position: sticky;
    top: 0;
    background: white;
}

.progress-overview {
    padding: 15px 20px;
    background: #F7FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.progress-bar {
    background: #E2E8F0;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    background: #4F46E5;
    height: 100%;
    border-radius: 10px;
}

.module-item {
    border-bottom: 1px solid #EDF2F7;
    cursor: pointer;
}

.module-item.active {
    background: #EEF2FF;
    border-left: 3px solid #4F46E5;
}

.module-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.module-status.completed {
    background: #10B981;
    color: white;
}

.module-status.in-progress {
    background: #F59E0B;
    color: white;
}

.module-items {
    padding: 0 20px 15px 35px;
    display: none;
}

.module-item.active .module-items {
    display: block;
}

.activity-item {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.activity-item.active {
    color: #4F46E5;
}

.course-main {
    flex: 1;
    margin-left: 320px;
    padding: 30px;
}

.content-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.watch-progress {
    background: #FEF3C7;
    padding: 12px 16px;
    border-radius: 12px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.key-points {
    background: #F7FAFC;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid #4F46E5;
}

.btn-complete {
    background: #10B981;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-next {
    background: #4F46E5;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4F46E5;
    text-decoration: none;
    margin-bottom: 20px;
}

/* ======================================= */
/* EVENT SERVICES STYLES */
/* ======================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-content {
    padding: 25px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.service-features li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4F46E5;
}

.service-pricing {
    background: #F7FAFC;
    padding: 15px;
    border-radius: 8px;
    margin-top: auto;
    text-align: center;
    font-weight: 600;
}

/* ======================================= */
/* PAYMENT CONFIRMATION */
/* ======================================= */
.confirmation-section {
    padding: 100px 20px;
    min-height: 70vh;
    background: #F7FAFC;
}

.confirmation-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.status-icon {
    width: 80px;
    height: 80px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
}

/* ======================================= */
/* THANK YOU PAGE */
/* ======================================= */
.thank-you-hero {
    padding: 160px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, #F7FAFC 0%, #ffffff 100%);
    margin-top: 65px;
}

.thank-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.thank-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    font-size: 2.4rem;
    margin-bottom: 20px;
}

/* ======================================= */
/* BACK TO TOP BUTTON */
/* ======================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.3);
    z-index: 99;
    transition: all 0.3s;
}

/* Toast Message */
.toast-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #10B981;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    display: none;
    z-index: 2001;
}

.toast-message.error {
    background: #EF4444;
}

.toast-message.warning {
    background: #F59E0B;
}

/* ======================================= */
/* RESPONSIVE DESIGN */
/* ======================================= */
@media (max-width: 992px) {
    .about-container,
    .contact-container,
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .solutions-grid,
    .case-grid,
    .training-grid,
    .online-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps,
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    .hero, .page-hero {
        padding: 100px 20px 50px;
        min-height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .services-grid,
    .solutions-grid,
    .case-grid,
    .training-grid,
    .online-courses-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .client-item {
        min-height: 80px;
        padding: 15px 10px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .process-steps,
    .steps {
        grid-template-columns: 1fr;
    }
    
    .post-thumbnail {
        height: 280px;
    }
    
    .course-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    
    .course-sidebar.open {
        transform: translateX(0);
    }
    
    .course-main {
        margin-left: 0;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-item {
        min-height: 70px;
        padding: 10px 5px;
    }
    
    .client-logo img {
        max-height: 35px;
    }
    
    .post-thumbnail {
        height: 220px;
    }
    
    .post-title {
        font-size: 1.2rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ============================================
   COURSE-HOME.HTML - CARD STYLES ONLY
   Service Cards & Course Catalog Cards
   ============================================ */

/* ---------- SERVICES PREVIEW CARDS (from index.html) ---------- */
.services-preview {
    padding: 80px 20px;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eef2f6;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #4a6baf;
    color: white;
    border-radius: 50%;
    overflow: hidden; /* ensure images are clipped to the circular frame */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.service-card h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #4a6baf;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.service-link:hover {
    gap: 10px;
}

/* ---------- COURSE CATALOG SECTION ---------- */
.course-catalog {
    padding: 80px 20px;
    background: #f8fafc;
}

.catalog-header {
    text-align: center;
    margin-bottom: 50px;
}

.catalog-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.catalog-header .section-divider {
    width: 80px;
    height: 4px;
    background: #4a6baf;
    margin: 15px auto;
}

.catalog-header p {
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

/* Course Grid */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Course Card Styling */
.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.15);
    border-color: #cbd5e1;
}

.course-badge {
    display: inline-block;
    background: #4a6baf;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.course-badge.it-badge {
    background: #0f3b5c;
}

.course-badge.online-badge {
    background: #2c6e5c;
}

.course-card-content {
    padding: 25px;
    flex: 1;
}

.course-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #0f172a;
    line-height: 1.3;
}

.course-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #5b6e8c;
    flex-wrap: wrap;
}

.course-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.course-description {
    color: #334155;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.course-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.course-features li {
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #2d3a4b;
}

.course-features li i {
    color: #4a6baf;
    width: 20px;
    font-size: 0.85rem;
}

.course-footer {
    padding: 20px 25px;
    background: #f9fbfd;
    border-top: 1px solid #edf2f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.course-price {
    font-weight: 700;
    color: #1e293b;
}

.course-price .hrdc-badge {
    background: #e6f0ff;
    color: #1e4a8a;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 8px;
}

.btn-course {
    background: #4a6baf;
    color: white;
    padding: 8px 18px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-course:hover {
    background: #2c4c8c;
    transform: translateX(3px);
}

/* Category Filter Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.tab-btn {
    background: white;
    border: 1px solid #cbd5e1;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: #334155;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.tab-btn.active {
    background: #4a6baf;
    border-color: #4a6baf;
    color: white;
}

.tab-btn:hover:not(.active) {
    background: #eef2ff;
    border-color: #4a6baf;
}

/* ---------- RESPONSIVE FOR CARDS ---------- */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .course-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .course-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .catalog-header h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px;
    }
}

/* ---------- Video Gallery  ---------- */

.gallery-scroll-item video {
    object-fit: cover;
}

