/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #fff;
    --black: #000;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

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

h1,
h2,
h3,
h4 {
    margin-bottom: 15px;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.section {
    padding: 80px 0;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--text-light);
}

.dark-bg {
    background-color: var(--primary-color);
    color: var(--white);
}

.dark-bg .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.light-bg {
    background-color: var(--light-color);
}

/* Navigation */
nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.logo img {
    width: 150px;
    height: auto;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.hamburger {
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    height: 100vh;
    min-height: 600px;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* About Section */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image {
    border-radius: 10px;
    background-color: none;
    overflow: hidden;

}

.about-image img {
    width: 100%;
    border-radius: 10px;
    transition: var(--transition);
}

.about-text ul {
    margin: 20px 0;
}

.about-text li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-text i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Execution Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
    text-align: center;
}

.step:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--white);
    margin-bottom: 15px;
}

/* Key Modules Section */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.module-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.module-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.module-card h3 {
    color: var(--primary-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 30px;
    color: var(--white);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
}

.contact-form {
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-links h3,
.footer-legal h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-links a,
.footer-legal a {
    color: #bdc3c7;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 12px 25px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    text-align: center;
    margin-bottom: 40px;

}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: #fff;
    padding: 20px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.card ul {
    padding-left: 20px;
    margin: 0;
}

.card ul li {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Dropdown Styling */
.nav-links li {
    position: relative;
}

.nav-links .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-color);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 220px;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 6px;
    z-index: 1000;
}

.nav-links .dropdown li a {
    display: block;
    padding: 10px 15px;
    color: white;
    font-weight: 500;
}



/* Show dropdown on hover */
.nav-links li:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Highlight effect */
/* Default highlight (light background cards) */
.card.highlight {
    animation: highlightFade 1s ease-out;
    background-color: #fff3cd;
    /* light yellow */
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.7);
}

/* Dark mode highlight */
.dark-bg .card.highlight {
    animation: highlightFadeDark 2s ease-out;
    background-color: #d1ecf1;
    /* light blue */
    box-shadow: 0 0 15px rgba(23, 162, 184, 0.7);
}

/* Yellow fade animation */
@keyframes highlightFade {
    0% {
        background-color: #fff3cd;
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.9);
    }

    100% {
        background-color: #fff;
        box-shadow: var(--box-shadow);
    }
}

/* Blue fade animation (dark sections) */
@keyframes highlightFadeDark {
    0% {
        background-color: #d1ecf1;
        box-shadow: 0 0 20px rgba(23, 162, 184, 0.9);
    }

    100% {
        background-color: rgba(255, 255, 255, 0.1);
        /* default dark card bg */
        box-shadow: var(--box-shadow);
    }
}

/* For tablets and smaller (<= 992px) */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        /* Stack text and image */
        text-align: center;
    }

    .about-image {
        margin-top: 20px;
        max-width: 400px;
        /* prevent it from getting too wide */
    }
}

/* For mobile phones (<= 576px) */
@media (max-width: 576px) {
    .about-image {
        max-width: 400px;
        margin: 0 auto;
        /* center on screen */
    }

    .about-image dotlottie-wc {
        width: 100% !important;
        height: auto !important;
    }

    /* Hide about section animation on very small devices */
    @media (max-width: 400px) {
        .about-image {
            display: none;
        }
    }

}
/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #fff;
    --black: #000;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

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

h1,
h2,
h3,
h4 {
    margin-bottom: 15px;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.section {
    padding: 80px 0;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--text-light);
}

.dark-bg {
    background-color: var(--primary-color);
    color: var(--white);
}

.dark-bg .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.light-bg {
    background-color: var(--light-color);
}

/* Navigation */
nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.logo img {
    width: 150px;
    height: auto;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.hamburger {
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    height: 100vh;
    min-height: 600px;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* About Section */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image {
    border-radius: 10px;
    background-color: none;
    overflow: hidden;

}

.about-image img {
    width: 100%;
    border-radius: 10px;
    transition: var(--transition);
}

.about-text ul {
    margin: 20px 0;
}

.about-text li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-text i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Execution Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
    text-align: center;
}

.step:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--white);
    margin-bottom: 15px;
}

/* Key Modules Section */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.module-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.module-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.module-card h3 {
    color: var(--primary-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 30px;
    color: var(--white);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
}

.contact-form {
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-links h3,
.footer-legal h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-links a,
.footer-legal a {
    color: #bdc3c7;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 12px 25px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    text-align: center;
    margin-bottom: 40px;

}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: #fff;
    padding: 20px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.card ul {
    padding-left: 20px;
    margin: 0;
}

.card ul li {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Dropdown Styling */
.nav-links li {
    position: relative;
}

.nav-links .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-color);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 220px;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 6px;
    z-index: 1000;
}

.nav-links .dropdown li a {
    display: block;
    padding: 10px 15px;
    color: white;
    font-weight: 500;
}



/* Show dropdown on hover */
.nav-links li:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Highlight effect */
/* Default highlight (light background cards) */
.card.highlight {
    animation: highlightFade 1s ease-out;
    background-color: #fff3cd;
    /* light yellow */
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.7);
}

/* Dark mode highlight */
.dark-bg .card.highlight {
    animation: highlightFadeDark 2s ease-out;
    background-color: #d1ecf1;
    /* light blue */
    box-shadow: 0 0 15px rgba(23, 162, 184, 0.7);
}

/* Yellow fade animation */
@keyframes highlightFade {
    0% {
        background-color: #fff3cd;
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.9);
    }

    100% {
        background-color: #fff;
        box-shadow: var(--box-shadow);
    }
}

/* Blue fade animation (dark sections) */
@keyframes highlightFadeDark {
    0% {
        background-color: #d1ecf1;
        box-shadow: 0 0 20px rgba(23, 162, 184, 0.9);
    }

    100% {
        background-color: rgba(255, 255, 255, 0.1);
        /* default dark card bg */
        box-shadow: var(--box-shadow);
    }
}

/* For tablets and smaller (<= 992px) */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        /* Stack text and image */
        text-align: center;
    }

    .about-image {
        margin-top: 20px;
        max-width: 400px;
        /* prevent it from getting too wide */
    }
}

/* For mobile phones (<= 576px) */
@media (max-width: 576px) {
    .about-image {
        max-width: 400px;
        margin: 0 auto;
        /* center on screen */
    }

    .about-image dotlottie-wc {
        width: 100% !important;
        height: auto !important;
    }

    /* Hide about section animation on very small devices */
    @media (max-width: 400px) {
        .about-image {
            display: none;
        }
    }

}