:root {
    --primary: #f2a900;
    /* Golden Yellow Accent */
    --primary-dark: #d69400;
    --primary-light: #fff5cc;
    --secondary: #0f3f87;
    /* Royal Blue Text / Headings */
    --bg-main: #f5f8fc;
    /* Very Light Blue Background */
    --bg-white: #ffffff;
    --text-main: #1e293b;
    --text-muted: #475569;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

h1 span {
    color: var(--primary);
}

h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Layout Grid & Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-6 {
    width: 50%;
    padding: 0 15px;
}

.items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-white);
}

.bg-dark {
    background-color: var(--secondary);
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: white;
}

.btn-primary-light {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.btn-primary-light:hover {
    background-color: var(--primary);
    color: var(--secondary);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Suptitle */
.suptitle {
    display: block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

/* Navbar Elements */
.navbar {
    padding: 1rem 0;
    background-color: var(--bg-main);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary);
    font-size: 1.05rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background-color: var(--secondary);
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 2;
    position: relative;
}

.hero-content {
    flex: 1;
}

.hero-content h1,
.hero-content h2,
.hero-content h3 {
    color: white;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.subtitle .icon {
    color: var(--primary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-actions .btn-outline:hover {
    background: white;
    color: var(--secondary);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    padding: 20px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.4);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.badge-text h3 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--secondary);
}

.badge-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 500;
}

/* Features */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-main);
    color: var(--primary-dark);
    font-size: 1.8rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Courses */
.section-title {
    margin-bottom: 3rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.course-card {
    background: var(--bg-main);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.course-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.course-img {
    position: relative;
    height: 220px;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--secondary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.course-content {
    padding: 2rem;
}

.course-list {
    margin-top: 1rem;
}

.course-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.course-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-dark);
    font-size: 0.85rem;
}

/* Path / Process Grid */
.path-section {
    background-color: var(--bg-main);
}

.path-graphics {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.path-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.path-item:hover {
    border-color: var(--primary);
}

.path-icon {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.path-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid var(--bg-white);
}

.path-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 10;
    box-shadow: 0 0 0 10px var(--bg-main);
}

/* Testimonials */
.testimonials h2,
.testimonials .suptitle {
    color: white;
}

.testimonials p {
    color: rgba(255, 255, 255, 0.7);
}

.stats-row {
    display: flex;
    justify-content: flex-end;
    gap: 3rem;
}

.stat-box h3 {
    font-size: 3.5rem;
    margin-bottom: 0px;
    color: var(--primary);
}

.stat-box p {
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    animation: modalFadeIn 0.5s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: -15px;
    right: -15px;
    color: white;
    background: var(--secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.close-modal:hover {
    background: var(--primary);
    color: var(--secondary);
}

.modal-body img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    display: block;
}

/* Bridge Course Section */
.bridge-course {
    background: linear-gradient(135deg, #0f3f87 0%, #1e293b 100%);
    color: white;
    border-radius: 40px;
    margin: 2rem auto;
    width: 95%;
    max-width: 1200px;
    overflow: hidden;
}

.bridge-course h2,
.bridge-course p,
.bridge-course span:not(.offer-badge) {
    color: white;
}

.bridge-course h2 span {
    color: var(--primary);
}

.bridge-course .container {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    gap: 3rem;
}

.bridge-content {
    flex: 1;
}

.bridge-image {
    flex: 1;
}

.bridge-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.offer-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.bridge-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bridge-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bridge-feat-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.bridge-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .bridge-course .container {
        flex-direction: column;
        text-align: center;
    }

    .bridge-features {
        justify-items: center;
    }

    .bridge-actions {
        justify-content: center;
    }
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card.active-card,
.testimonial-card.shadow-green {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.testimonial-card.active-card p,
.testimonial-card.shadow-green p,
.testimonial-card.active-card h4,
.testimonial-card.shadow-green h4 {
    color: var(--secondary);
}

.stars {
    color: #faba16;
    margin-bottom: 1rem;
}

.testimonial-card.active-card .stars,
.testimonial-card.shadow-green .stars {
    color: #0f3f87;
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-avatar {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-card.active-card .t-avatar,
.testimonial-card.shadow-green .t-avatar {
    color: rgba(15, 63, 135, 0.5);
}

.t-author h4 {
    color: white;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.t-author span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    gap: 3rem;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-container {
    flex: 2;
}

.contact-info-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #cbd5e1;
    background: var(--bg-main);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.2);
}

.c-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    background: var(--bg-main);
    transition: var(--transition);
}

.c-card.active-ccard {
    background: var(--primary);
}

.c-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.c-card.active-ccard .c-icon {
    color: var(--secondary);
}

.c-text h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.c-card.active-ccard .c-text h4,
.c-card.active-ccard .c-text p {
    color: var(--secondary);
}

.c-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--bg-main);
    padding: 5rem 0 0;
    border-top: 1px solid var(--primary-light);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul a:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 5px 0 0 5px;
    background: var(--bg-white);
    outline: none;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--primary-light);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .experience-badge {
        bottom: 10px;
        left: 10px;
    }

    .col-6 {
        width: 100%;
    }

    .stats-row {
        justify-content: flex-start;
        margin-top: 2rem;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links,
    .navbar .btn {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        padding: 2rem;
        box-shadow: var(--shadow-md);
    }

    .mobile-menu-btn {
        display: block;
    }

    .path-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .path-center-icon {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}