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

:root {
    --background-color-light: #fff;
    --text-color-light: #333;
    --highlight-color-light: #fc7404;
    --background-color-dark: #121212;
    --text-color-dark: #f0f0f0;
    --highlight-color-dark: #ffa500;
}

html {
    scroll-behavior: smooth; /* Enable smooth scrolling */
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color-light);
    color: var(--text-color-light);
    padding-top: 70px;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode {
    background-color: var(--background-color-dark);
    color: var(--text-color-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

body.dark-mode::-webkit-scrollbar-track {
    background: #2c2c2c;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

body.dark-mode::-webkit-scrollbar-thumb {
    background: #555;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

body.dark-mode::-webkit-scrollbar-thumb:hover {
    background: #777;
}

/* --- UPDATED NAVIGATION STYLES START HERE --- */

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

body.dark-mode .navbar {
    background-color: rgba(18, 18, 18, 1);
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

body.dark-mode .navbar.scrolled {
    background-color: rgba(18, 18, 18, 0.9);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color-light);
    text-decoration: none;
    flex-shrink: 0; /* Prevents the logo from shrinking */
}

body.dark-mode .nav-logo {
    color: var(--text-color-dark);
}

.nav-logo img {
    height: 50px; /* Reduced logo height for a more compact navbar */
    width: auto;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem; /* Reduced gap between navigation links */
    align-items: center;
}

.nav-link {
    color: var(--text-color-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0.75rem; /* Reduced padding for each link */
    min-height: 44px;
    white-space: nowrap; /* Prevents text inside links from wrapping */
}

body.dark-mode .nav-link {
    color: var(--text-color-dark);
}

.nav-link:hover {
    color: var(--highlight-color-light);
}

body.dark-mode .nav-link:hover {
    color: var(--highlight-color-dark);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-color-light);
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

body.dark-mode .hamburger {
    color: var(--text-color-dark);
}

.hamburger.active {
    transform: rotate(90deg);
}

/* --- UPDATED NAVIGATION STYLES END HERE --- */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

h1.main-heading {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 900px;
}

.highlight {
    color: var(--highlight-color-light);
}

body.dark-mode .highlight {
    color: var(--highlight-color-dark);
}

.subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 700px;
}

body.dark-mode .subtitle {
    color: #aaa;
}

.text-link {
    color: inherit;
    text-decoration: underline;
}

/* CTA Button */
.cta-container {
    margin-bottom: 5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: var(--highlight-color-light);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    min-height: 44px; /* Accessible touch target */
}

body.dark-mode .cta-button {
    background-color: var(--highlight-color-dark);
    color: #121212;
}

.cta-button:hover {
    background-color: #e06804;
}

body.dark-mode .cta-button:hover {
    background-color: #ffb700;
}

.arrow-icon {
    margin-left: 10px;
}

/* Team Section */
.testimonial-heading {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    color: var(--text-color-light);
    margin-bottom: 2rem;
   display:flex;
   justify-content: center;
}

body.dark-mode .testimonial-heading {
    color: var(--text-color-dark);
}
.services-section {
    padding: 4rem 2rem;
    border:var(--highlight-color-light);
    border-bottom:#0C0C0E;
    text-align: center;
}

h1.services-heading, .services-heading h2 {
    font-size: 2.5rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-color-light);
}

body.dark-mode h1.services-heading, body.dark-mode .services-heading h2 {
    color: var(--text-color-dark);
}

.services-container{
    display:flex;
    justify-content:center;
    gap: 30px;
    flex-wrap:wrap;
}

.avatar-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.avatar-container {
    width: 80px;
    height: 80px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}
/* Testimonial Banner Styles */
.testimonial-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    overflow: hidden;
}

body.dark-mode .testimonial-section {
    background-color: #1a1a1a;
}

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

.testimonial-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.testimonial-logo {
    flex: 0 0 auto;
    margin: 0 2rem;
}

.testimonial-logo img {
    height: 50px;
    width: 150px;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

/* Pause animation on hover */
.testimonial-container:hover .testimonial-track {
    animation-play-state: paused;
}

/* Content Section */
.content-section {
    padding: 4rem 2rem;
}

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

@media screen and (min-width: 768px) {
    .card-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.vertical-card {
    border: 2px solid var(--highlight-color-light);
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

body.dark-mode .vertical-card {
    border-color: var(--highlight-color-dark);
    background-color: #1a1a1a;
}

.vertical-card:hover {
    transform: translateY(-5px);
}

.vertical-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: var(--text-color-light);
}

body.dark-mode .card-content h3 {
    color: var(--text-color-dark);
}

.card-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

body.dark-mode .card-content p {
    color: #aaa;
}

.card-heading {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.card-heading h2 {
    font-size: 2.5rem;
    color: var(--text-color-light);
    margin: 0;
    padding: 0;
}

body.dark-mode .card-heading h2 {
    color: var(--text-color-dark);
}

.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.Academy-section {
    background-color: #0C0C0E;
}

/* Services Page Styles */
.services-section {
    padding: 4rem 2rem;
    background: linear-gradient(90deg, var(--highlight-color-light) 50%, transparent 50%);
    text-align: left;
}

body.dark-mode .services-section {
    background: linear-gradient(90deg, var(--highlight-color-dark) 50%, transparent 50%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
}

.services-left-box {
    width: 50%;
    padding: 2rem;
    color: #ffffff;
}

.services-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.services-section {
    padding: 80px 0;
}

.services-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

body.dark-mode .services-subtitle {
    color: #aaa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

body.dark-mode .service-card {
    background: #1e1e1e;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color-light);
}

body.dark-mode .service-card h3 {
    color: var(--text-color-dark);
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

body.dark-mode .service-card p {
    color: #bbb;
}

/* Solution Section */
.solution-section {
    background-color: #f0f0f0;
}

body.dark-mode .solution-section {
    background-color: #1a1a1a;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(to right, #f8f8f8, #fff);
}

body.dark-mode .final-cta-section {
    background: linear-gradient(to right, #1a1a1a, #121212);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
}

.services-left-box {
    width: 50%;
    padding: 2rem;
    color: #ffffff;
}

.services-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

body.dark-mode .services-subtitle {
    color: #aaa;
}

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

.service-card {
    background: #fff;
    border: 2px solid var(--highlight-color-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

body.dark-mode .service-card {
    background-color: #1a1a1a;
    border-color: var(--highlight-color-dark);
}

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

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f0f0f0;
}

.service-card h3 {
    color: var(--text-color-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

body.dark-mode .service-card h3 {
    color: var(--text-color-dark);
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

body.dark-mode .service-card p {
    color: #aaa;
}

.Academy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.Academy-heading {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 900px;
    color: #f0f0f0;
}


/* Consent Banner Styles */
.consent-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 800px;
    background-color: #2C2C2E;
    color: white;
    padding: 1.5rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.consent-banner.visible {
    display: flex;
    opacity: 1;
}

.consent-banner p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.consent-banner a {
    color: var(--highlight-color-light);
    text-decoration: underline;
    font-weight: 500;
}

.consent-buttons {
    display: flex;
    gap: 1rem;
    margin-left: 1.5rem;
    flex-shrink: 0;
}

.consent-buttons .cta-button {
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 500;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
}

#consent-accept {
    background-color: var(--highlight-color-light);
    color: white;
    border-color: var(--highlight-color-light);
}

#consent-accept:hover {
    background-color: #e06804;
    border-color: #e06804;
}

#consent-decline {
    background-color: transparent;
    color: var(--highlight-color-light);
    border-color: var(--highlight-color-light);
}

#consent-decline:hover {
    background-color: rgba(252, 116, 4, 0.1);
}

/* Responsive styles for consent banner */
@media (max-width: 768px) {
    .consent-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
        bottom: 10px;
    }

    .consent-buttons {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }

    .consent-buttons .cta-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .consent-banner {
        width: 90%;
        padding: 1rem;
    }

    .consent-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .consent-buttons .cta-button {
        width: 100%;
    }
}


/* Print-friendly version */
@media print {
    body {
        padding-top: 0;
        background-color: #fff;
        color: #000;
    }

    .navbar, .cta-container, .consent-banner, .hamburger, .testimonial-section, .Academy-section {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 20px 0;
    }

    h1.main-heading {
        font-size: 24pt;
    }

    .subtitle {
        font-size: 14pt;
    }

    .card-container {
        display: block;
    }

    .vertical-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    a {
        text-decoration: none;
        color: inherit;
    }
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-orange);
    color: white;
    padding: 8px;
    z-index: 9999;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

/* Blueprint Section */
.blueprint-section {
    padding: 80px 0;
    background-color: var(--background-color-light);
    transition: background-color 0.3s ease;
}

body.dark-mode .blueprint-section {
    background-color: var(--background-color-dark);
}

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

.blueprint-section .services-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-color-light);
}

body.dark-mode .blueprint-section .services-heading h2 {
    color: var(--text-color-dark);
}

.blueprint-section .services-text p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 700px;
    line-height: 1.6;
}

body.dark-mode .blueprint-section .services-text p {
    color: #aaa;
}

.blueprint-section .cta-button {
    margin-top: 1rem;
}