:root {
    --brand-blue: #0b3c8c;
    --brand-orange: #f28c28;
    --dark: #1f2937;
    --light: #f9fafb;
    --muted: #6b7280;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    /* background-color: var(--brand-blue);  */
    color: white;
    width: 80px;
    /* height: 50px; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.logo-icon img{
    width: 100%;
}

.logo-text h1 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--brand-blue);
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--muted);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-blue);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--brand-blue);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(11, 60, 140, 0.85), rgba(11, 60, 140, 0.9)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--brand-orange);
    color: white;
}

.btn-primary:hover {
    background-color: #e07d18;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(242, 140, 40, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Page Header */
.page-header {
    background-color: var(--brand-blue);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--brand-orange);
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--brand-orange);
}

.service-card.highlight {
    border-top-color: var(--brand-blue);
}

.service-icon {
    font-size: 40px;
    color: var(--brand-blue);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--brand-blue);
}

.service-card ul {
    margin-top: 20px;
    padding-left: 20px;
}

.service-card li {
    margin-bottom: 8px;
}

/* Leadership Section */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.leader-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-5px);
}

.leader-image {
    height: 300px;
    background-color: #e5e7eb;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow:hidden;
}

.leader-image img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;

}

/* Avatar with Initials */
.avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.initials-text {
    z-index: 2;
}

.avatar-tooltip {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition);
}

.avatar-initials:hover .avatar-tooltip {
    opacity: 1;
}

.team-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    padding: 25px;
}

.leader-info h3 {
    color: var(--brand-blue);
    margin-bottom: 5px;
}

.leader-role {
    color: var(--brand-orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-qualifications {
    margin-top: 15px;
}

.leader-qualifications h4 {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 10px;
}

.leader-qualifications ul {
    padding-left: 20px;
}

.leader-qualifications li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Credibility Section */
.credibility {
    background-color: #f0f4ff;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.credibility-point {
    background-color: white;
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.credibility-icon {
    font-size: 40px;
    color: var(--brand-blue);
    margin-bottom: 15px;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 40px;
    color: var(--brand-blue);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--brand-blue);
    margin-bottom: 15px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    color: var(--brand-blue);
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    background-color: #e8f0fe;
    color: var(--brand-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
}

.contact-form button {
    background-color: var(--brand-blue);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.contact-form button:hover {
    background-color: #092c6b;
}

/* Footer */
footer {
    /* background-color: var(--brand-blue); */
    background-color: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-style: italic;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact .contact-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.business-hours p {
    margin-bottom: 10px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.copya{
    text-decoration: none;
    color: rgba(127, 255, 212, 0.705);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--brand-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--brand-orange);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .page-header h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .content-section {
        padding: 60px 0;
    }

    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}


/* ==========================
   GRID LAYOUTS - CENTERED
   ========================== */

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--brand-orange);
}

.service-card.highlight {
    border-top-color: var(--brand-blue);
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
    gap: 30px;
    justify-content: center;
}

.leader-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-5px);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    gap: 30px;
    justify-content: center;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

/* Credibility Grid */
.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    gap: 30px;
    justify-content: center;
}

.credibility-point {
    background-color: white;
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

/* ==========================
   RESPONSIVE ADJUSTMENTS
   ========================== */

@media (max-width: 768px) {
    .services-grid,
    .leadership-grid,
    .values-grid,
    .credibility-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .leadership-grid,
    .values-grid,
    .credibility-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .service-card,
    .leader-card,
    .value-card,
    .credibility-point {
        max-width: 100%;
    }
}

/* ==========================
   TARGET AUDIENCE SECTION
   ========================== */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.audience-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
    opacity: 0;
    transition: var(--transition);
}

.audience-card:hover::before {
    opacity: 1;
}

.audience-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
    transition: var(--transition);
}

.audience-card:hover .audience-icon {
    transform: scale(1.1) rotate(5deg);
}

.audience-card h3 {
    color: var(--brand-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.audience-card p {
    color: var(--muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.audience-services {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.audience-services h4 {
    color: var(--dark);
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.audience-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-services li {
    color: var(--muted);
    font-size: 0.9rem;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.audience-services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: bold;
}

.audience-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.audience-cta:hover {
    color: var(--brand-orange);
    gap: 12px;
}

.audience-cta i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.audience-cta:hover i {
    transform: translateX(5px);
}

/* Stats Counter for Audience Section */
.audience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #092c6b 100%);
    border-radius: var(--radius);
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .audience-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .audience-card {
        padding: 25px;
    }
    
    .audience-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .audience-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ==========================
   FOOTER SOCIAL MEDIA
   ========================== */

.social-media-panel {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media-panel h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.social-icon:hover {
    background-color: var(--brand-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 140, 40, 0.3);
}

/* Specific colors for social icons on hover */
.social-icon:hover.fa-facebook-f {
    background-color: #1877f2; /* Facebook blue */
}

.social-icon:hover.fa-twitter {
    background-color: #1da1f2; /* Twitter blue */
}

.social-icon:hover.fa-linkedin-in {
    background-color: #0a66c2; /* LinkedIn blue */
}

.social-icon:hover.fa-instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon:hover.fa-youtube {
    background-color: #ff0000; /* YouTube red */
}

.social-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    font-style: italic;
}

/* Footer Links */
.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--brand-orange);
    padding-left: 5px;
}

/* Newsletter Signup */
.newsletter-signup {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-signup h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--brand-orange);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    border-radius: var(--radius);
    background-color: var(--brand-orange);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background-color: #e07d18;
    transform: translateY(-2px);
}

/* Copyright Styles */
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.copyright span {
    display: block;
}

.copya {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.copya:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-btn {
        width: 100%;
        padding: 12px;
    }
    
    .copyright {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Animation for social icons */
@keyframes socialPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.social-icon:active {
    animation: socialPulse 0.3s ease;
}

/* Map Styles */
.map-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

.map-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 20px;
}

.map-details h4 {
    color: var(--brand-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.detail-item h5 {
    color: var(--brand-orange);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.detail-item p {
    font-size: 0.9rem;
    color: var(--dark);
}

/* Responsive map adjustments */
@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 300px;
    }
}

/* Form Response Styles */
.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--radius);
    display: none;
}

.form-response.success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.form-response.error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.form-response h4 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-response ul {
    margin: 0;
    padding-left: 20px;
}

/* Newsletter Section */
.newsletter-section {
    margin-bottom: 40px;
    padding: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--radius);
}

.newsletter-section h3 {
    color: white;
    text-align: center;
    margin-bottom: 15px;
}

.newsletter-section p {
    color: rgba(255,255,255,0.9);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Social Links */
.social-links {
    margin-top: 20px;
}

.social-links h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--brand-orange);
    transform: translateY(-2px);
}

/* Form Response Styles */
.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--radius);
    display: none;
}

.form-response.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.form-response.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.form-response h4 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-response ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.form-response li {
    margin-bottom: 5px;
}

/* Form Loading State */
button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    overflow: hidden;
}

/* ==========================
   GALLERY SECTION
   ========================== */

.gallery-section {
    background-color: #f8f9fa;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-description {
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: white;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--brand-blue);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    
}

.gallery-item {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background-color: #e5e7eb;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--brand-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-info {
    padding: 25px;
}

.gallery-info h3 {
    color: var(--brand-blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.gallery-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.9rem;
    color: var(--muted);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item i {
    color: var(--brand-orange);
}

.gallery-description {
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.gallery-tag {
    background-color: #f0f4ff;
    color: var(--brand-blue);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.gallery-load-more {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    padding: 15px 40px;
    background-color: var(--brand-blue);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    background-color: #092c6b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 60, 140, 0.2);
}

/* Gallery Testimonials */
.gallery-testimonials {
    background-color: white;
    padding: 50px;
    border-radius: var(--radius);
    margin-top: 60px;
    box-shadow: var(--shadow);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    text-align: center;
    padding: 0 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--brand-orange);
    opacity: 0.3;
    position: absolute;
    font-family: serif;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--brand-blue);
    margin-top: 30px;
}

.testimonial-role {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius);
}

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 15px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--brand-orange);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--brand-orange);
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .gallery-info {
        padding: 20px;
    }
    
    .gallery-testimonials {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
    
    .gallery-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ==========================
   GALLERY SECTION
   ========================== */

.gallery-section {
    background-color: #f8f9fa;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-description {
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: white;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--brand-blue);
    color: white;
}

/* CENTERED GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 350px)); /* Fixed width cards */
    gap: 30px;
    margin-bottom: 50px;
    justify-content: center; /* This centers the grid items */
}

.gallery-item {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    width: 100%; /* Ensure full width within grid cell */
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background-color: #e5e7eb;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--brand-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-info {
    padding: 25px;
    text-align: left; /* Keep text left-aligned within cards */
}

.gallery-info h3 {
    color: var(--brand-blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.gallery-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.9rem;
    color: var(--muted);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item i {
    color: var(--brand-orange);
}

.gallery-description {
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.gallery-tag {
    background-color: #f0f4ff;
    color: var(--brand-blue);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.gallery-load-more {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    padding: 15px 40px;
    background-color: var(--brand-blue);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    background-color: #092c6b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 60, 140, 0.2);
}

/* Alternative center alignment using flexbox */
/* Uncomment if you prefer flexbox over grid */

/*
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    justify-content: center;
}

.gallery-item {
    flex: 0 0 350px; /* Fixed width cards */
    /*
    max-width: 350px;
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
*/

/* Responsive adjustments for centered cards */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 320px));
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
        gap: 20px;
    }
    
    .gallery-info {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    /* Single column for mobile with centered card */
    .gallery-grid {
        grid-template-columns: minmax(280px, 350px);
        justify-content: center;
    }
    
    .gallery-item {
        max-width: 350px;
    }
}

/* For even more control over card width */
.gallery-grid-centered {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.gallery-grid-centered .gallery-item {
    flex: 0 0 350px;
    max-width: 350px;
}

/* Gallery Testimonials */
.gallery-testimonials {
    background-color: white;
    padding: 50px;
    border-radius: var(--radius);
    margin-top: 60px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    text-align: center;
    padding: 0 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--brand-orange);
    opacity: 0.3;
    position: absolute;
    font-family: serif;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--brand-blue);
    margin-top: 30px;
}

.testimonial-role {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius);
}

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 15px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--brand-orange);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--brand-orange);
}

/* ==========================
   COURSES SECTION
   ========================== */

.courses-section {
    background-color: #f8f9fa;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 380px));
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.course-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
    opacity: 0;
    transition: var(--transition);
}

.course-card:hover::before {
    opacity: 1;
}

.course-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid #e5e7eb;
}

.course-category {
    display: inline-block;
    background-color: var(--brand-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-title {
    color: var(--brand-blue);
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.course-provider {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-provider i {
    color: var(--brand-orange);
    font-size: 0.8rem;
}

.course-summary {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.course-body {
    padding: 20px 25px;
    flex-grow: 1;
}

.section-title {
    color: var(--brand-blue);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--brand-orange);
}

.why-course-list,
.modules-list,
.accreditation-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.why-course-list li,
.modules-list li,
.accreditation-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.why-course-list li::before,
.modules-list li::before,
.accreditation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: bold;
}

.modules-list li {
    border-bottom: 1px solid #f0f0f0;
}

.modules-list li:last-child {
    border-bottom: none;
}

.accreditation-list li {
    color: var(--muted);
    font-size: 0.9rem;
    font-style: italic;
}

.course-footer {
    padding: 20px 25px;
    border-top: 1px solid #e5e7eb;
    background-color: #f9fafb;
}

.course-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.meta-value {
    font-weight: 600;
    color: var(--brand-blue);
    font-size: 1.1rem;
}

.meta-value.price {
    color: var(--brand-orange);
}

.course-availability {
    background-color: #e8f0fe;
    padding: 10px 15px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    text-align: center;
}

.availability-label {
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.course-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--brand-blue);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.95rem;
}

.cta-button:hover {
    background-color: #092c6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 60, 140, 0.2);
}

.cta-button i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.cta-button:hover i {
    transform: translateX(3px);
}

.cta-button.outline {
    background-color: transparent;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
}

.cta-button.outline:hover {
    background-color: var(--brand-blue);
    color: white;
}

.contact-numbers {
    text-align: center;
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 10px;
}

.contact-numbers strong {
    color: var(--brand-blue);
}

/* Course Detail Modal */
.course-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.course-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.course-modal-content {
    background-color: white;
    border-radius: var(--radius);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--brand-orange);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: #e07d18;
    transform: rotate(90deg);
}

.course-modal-header {
    padding: 40px 40px 20px;
    background: linear-gradient(135deg, var(--brand-blue), #092c6b);
    color: white;
    position: relative;
}

.course-modal-header .course-category {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.course-modal-header .course-title {
    color: white;
    font-size: 1.8rem;
    margin: 15px 0 10px;
}

.course-modal-header .course-summary {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.course-modal-body {
    padding: 30px 40px;
}

.modal-section {
    margin-bottom: 30px;
}

.modal-section-title {
    color: var(--brand-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.modal-info-card {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--brand-orange);
}

.modal-info-card h4 {
    color: var(--brand-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.modal-info-card p {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.course-modal-footer {
    padding: 25px 40px;
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.modal-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-orange);
    font-family: 'Playfair Display', serif;
}

.price-currency {
    font-size: 1.2rem;
    color: var(--muted);
}

.price-note {
    color: var(--muted);
    font-size: 0.9rem;
    max-width: 200px;
}

/* Responsive Courses Section */
@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 350px));
    }
    
    .course-modal-content {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 320px));
        gap: 20px;
    }
    
    .course-header,
    .course-body,
    .course-footer {
        padding: 20px;
    }
    
    .course-meta {
        grid-template-columns: 1fr;
    }
    
    .course-modal-header,
    .course-modal-body,
    .course-modal-footer {
        padding: 25px;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .course-modal-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-pricing {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .courses-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .course-card {
        max-width: 100%;
    }
    
    .course-title {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Course Filter (for multiple courses) */
.courses-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-chip {
    padding: 8px 20px;
    background-color: white;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-chip:hover,
.filter-chip.active {
    background-color: var(--brand-blue);
    color: white;
}

/* Empty State */
.courses-empty {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.courses-empty i {
    font-size: 4rem;
    color: var(--muted);
    margin-bottom: 20px;
    opacity: 0.5;
}

.courses-empty h3 {
    color: var(--brand-blue);
    margin-bottom: 10px;
}

.courses-empty p {
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto 30px;
}