/* Symphony Project Showcase */
.showcase-symphony {
    background: url('../../../images/projects/symphony-project-1.webp') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.showcase-symphony.project-2 {
    background: linear-gradient(135deg, #002b5e 0%, #004e92 100%), url('../../../images/projects/symphony-project-2.webp') no-repeat center center/cover;
    background-blend-mode: multiply;
}

.showcase-symphony::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.showcase-symphony.project-2::before {
    display: none;
}

.showcase-symphony .container {
    position: relative;
    z-index: 1;
}

.showcase-symphony h1 {
    font-family: var(--heading-font);
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: -1px;
}

.showcase-symphony p {
    font-family: var(--body-font);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Symphony Video Section */
.symphony-video-section {
    padding: 100px 0;
    background: #fff;
}

.symphony-video-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.symphony-video-section .intro-text-content {
    flex: 1;
}

.symphony-video-section .intro-text-content h2 {
    font-family: var(--heading-font);
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--heading-color);
    position: relative;
    line-height: 1.2;
}

.symphony-video-section .intro-text-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: var(--primary-color);
    margin-top: 15px;
    border-radius: 3px;
}

.symphony-video-section .intro-text-content p {
    font-family: var(--body-font);
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.symphony-video-section .video-wrapper {
    flex: 1;
    position: relative;
    padding-bottom: 56.34%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.symphony-video-section .video-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.symphony-video-section .project-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Premium Course Layout */
.course-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.course-section-title h2 {
    font-size: 3rem;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.course-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Featured Series Card (Meeting 1) */
.featured-series {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    min-height: 500px;
}

.series-info {
    flex: 0 0 35%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #003366 100%);
    padding: 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.series-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.series-info h3 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.series-info p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.series-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.series-content {
    flex: 1;
    padding: 40px;
    background: #fdfdfd;
    overflow-y: auto;
}

.session-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.session-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    cursor: pointer;
}

.session-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.session-thumbnail {
    width: 160px;
    height: 90px;
    background: #2c3e50;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.session-thumbnail::after {
    content: '\f04b';
    /* Play icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.session-item:hover .session-thumbnail::after {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
}

.session-details h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.session-details p {
    font-family: var(--body-font);
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0;
}

/* Secondary Content Grid (Meetings 2 & 3) */
.secondary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.secondary-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.secondary-card:hover {
    transform: translateY(-10px);
}

.card-header {
    background: var(--light-bg-color);
    padding: 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--heading-color);
}

.card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.watch-btn {
    align-self: flex-start;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.watch-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .featured-series {
        flex-direction: column;
    }

    .series-info {
        padding: 40px;
    }

    .session-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .session-thumbnail {
        width: 100%;
        height: 180px;
    }
}

/* Project Phases Timeline */
#project-phases {
    padding: 80px 0;
    text-align: center;
    background: var(--light-bg-color);
}

#project-phases .text-center {
    margin-bottom: 60px;
}

#project-phases h2 {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--heading-color);
    margin-bottom: 20px;
}

#project-phases .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 40px;
}

#project-phases .project-image {
    display: block;
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, #003366 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #003366 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 67, 135, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.timeline-content h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timeline-content p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

/* Implemented Modules Section */
#implemented-modules {
    padding: 80px 0;
    background: #fff;
}

#implemented-modules h2 {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 20px;
}

#implemented-modules .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#implemented-modules .text-center {
    margin-bottom: 60px;
}

/* Card Grid for Modules (with images) */
#implemented-modules .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

#implemented-modules .card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

#implemented-modules .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #003366 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

#implemented-modules .card:hover::before {
    transform: scaleX(1);
}

#implemented-modules .card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 67, 135, 0.2);
}

#implemented-modules .card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#implemented-modules .card:hover .card-img {
    transform: scale(1.1);
}

#implemented-modules .card-content {
    padding: 30px;
}

#implemented-modules .card-content h3 {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    color: var(--heading-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

#implemented-modules .card:hover .card-content h3 {
    color: var(--primary-color);
}

#implemented-modules .card-content p {
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

/* Modules Grid (icon-based alternative) */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.module-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #003366 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.module-card:hover::before {
    transform: scaleX(1);
}

.module-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 67, 135, 0.15);
}

.module-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #003366 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0, 67, 135, 0.2);
}

.module-card h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.module-card p {
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Project Overview Section */
#project-overview {
    padding: 80px 0;
    background: var(--light-bg-color);
}

#project-overview h2 {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 60px;
}

#project-overview .text-center {
    margin-bottom: 60px;
}

#project-overview .about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

#project-overview .about-content:nth-child(even) {
    flex-direction: row-reverse;
}

#project-overview .about-text {
    flex: 1;
}

#project-overview .about-text h3 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

#project-overview .about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #003366 100%);
    border-radius: 2px;
}

#project-overview .about-text p {
    font-family: var(--body-font);
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

#project-overview .about-image {
    flex: 1;
}

#project-overview .about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

#project-overview .about-image img:hover {
    transform: scale(1.05);
}

/* Overview Grid (alternative layout) */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-10px);
}

.overview-card h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.overview-card h3 i {
    font-size: 2rem;
}

.overview-card p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

/* Project Team Section */
#project-team {
    padding: 80px 0;
    background: #fff;
}

#project-team h2 {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 20px;
}

#project-team .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#project-team .text-center {
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #003366 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 67, 135, 0.15);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #f0f0f0;
    transition: all 0.3s ease;
}

.team-member:hover img {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.team-member h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--heading-color);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.team-member:hover h4 {
    color: var(--primary-color);
}

.team-member p {
    font-family: var(--body-font);
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0;
    opacity: 0.8;
}

/* Project Gallery Section */
#project-gallery {
    padding: 80px 0;
    background: var(--light-bg-color);
}

#project-gallery h2 {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 20px;
}

#project-gallery .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 60px;
}

#project-gallery .text-center {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 67, 135, 0.7) 0%, rgba(0, 51, 102, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* CTA Section */
#cta,
#cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #003366 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

#cta::before,
#cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

#cta .container,
#cta-section .container {
    position: relative;
    z-index: 1;
}

#cta h2,
#cta-section h2 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

#cta p,
#cta-section p {
    font-family: var(--body-font);
    font-size: 1.4rem;
    margin-bottom: 45px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

#cta .button,
#cta-section .button {
    animation: fadeInUp 0.8s ease 0.4s backwards;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#cta .button:hover,
#cta-section .button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    #project-overview .about-content {
        flex-direction: column !important;
        gap: 40px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .symphony-video-section .container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .symphony-video-section .video-wrapper {
        transform: none !important;
        width: 100%;
    }

    .symphony-video-section .intro-text-content h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 100px;
    }

    .timeline-icon {
        position: absolute;
        left: 0;
    }

    .timeline-content {
        width: 100%;
    }

    #implemented-modules .card-grid,
    .modules-grid,
    .overview-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #project-phases h2,
    #implemented-modules h2,
    #project-overview h2,
    #project-team h2,
    #project-gallery h2,
    #cta h2,
    #cta-section h2 {
        font-size: 2rem;
    }

    #cta p,
    #cta-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.module-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #003366 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.module-card:hover::before {
    transform: scaleX(1);
}

.module-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 67, 135, 0.15);
}

.module-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #003366 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0, 67, 135, 0.2);
}

.module-card h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.module-card p {
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Project Overview Section */
#project-overview {
    padding: 80px 0;
    background: var(--light-bg-color);
}

#project-overview h2 {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 60px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-10px);
}

.overview-card h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.overview-card h3 i {
    font-size: 2rem;
}

.overview-card p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

/* Project Gallery Section */
#project-gallery {
    padding: 80px 0;
    background: #fff;
}

#project-gallery h2 {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 20px;
}

#project-gallery .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
#cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #003366 100%);
    text-align: center;
    color: #fff;
}

#cta-section h2 {
    font-family: var(--heading-font);
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

#cta-section p {
    font-family: var(--body-font);
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 100px;
    }

    .timeline-icon {
        position: absolute;
        left: 0;
    }

    .timeline-content {
        width: 100%;
    }

    .modules-grid,
    .overview-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    #project-phases h2,
    #implemented-modules h2,
    #project-overview h2,
    #project-gallery h2,
    #cta-section h2 {
        font-size: 2rem;
    }
}