:root {
    --color-primary: #0d6efd;
    --color-secondary: #6c757d;
    --color-tertiary: #6610f2;
    --color-highlight: #ffc107;
    --color-success: #239A48;
    --color-dark: #000000c3;
    --color-light-bg: #f8f9fa;
    --color-muted: #6c757d;
    --color-nav-hover: #0047ab;
    --color-header-text: rgb(0, 0, 0);
    --header-height: 80px;
}

/* ------------------ */
/* Base Styles */
/* ------------------ */

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s, background-color 0.3s, opacity 0.3s;
}

:hover {
    cursor: pointer;
}

/* ------------------ */
/* Buttons */
/* ------------------ */

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    border: 1px solid transparent;
}

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

.button.secondary {
    background-color: var(--color-secondary);
    color: white;
}

.button.primary:hover {
    background-color: #0b5ed7;
}

.button.secondary:hover {
    background-color: #5c636a;
}

.button.small.outline {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    background-color: transparent;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.button.small.outline:hover {
    background-color: var(--color-secondary);
    color: white;
}

.button-group {
    display: flex;
    gap: 0.5rem;
}

/* ------------------ */
/* Typography Helpers */
/* ------------------ */

.lead-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

.lead-small {
    font-size: 1rem;
    color: var(--color-muted);
    display: block;
    margin-bottom: 1.5rem;
}

.muted-text {
    color: var(--color-muted);
}

/* ------------------ */
/* Header & Navigation */
/* ------------------ */

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-radius: 200px;
    background-color: rgba(213, 212, 212, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--color-header-text);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 166px;
}

.site-title {
    font-size: 1.125rem;
    font-weight: 700;
}

.desktop-nav {
    display: none;
}

.desktop-nav .nav-links {
    display: flex;
    gap: 1.25rem;
    background-color: rgba(0, 0, 0, 0.343);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    padding: 0.125rem;
}

.desktop-nav .nav-item {
    display: block;
    padding: 0.6875rem 0.9375rem;
    color: rgb(255, 255, 255);
    font-weight: 600;
    border-radius: 0.375rem;
    transition: background-color 0.3s;
}

.desktop-nav .nav-item:hover {
    color: var(--color-nav-hover);
    background-color: rgba(255, 255, 255, 0.8);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.action-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.6875rem 1.25rem;
    background-color: var(--color-success);
    color: white;
    border-radius: 0.375rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.action-button:hover {
    background-color: rgba(35, 154, 72, 0.8);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    background: none;
    transition: background-color 0.3s;
    gap: 5px;
    position: relative;
    z-index: 100;
}

.menu-toggle .bar {
    display: block;
    height: 2px;
    background-color: var(--color-success);
    width: 13px;
    transition: all 0.3s ease-in-out;
}

.menu-toggle .bar.one {
    margin-left: 4px;
    border-radius: 0 50% 50% 0;
}

.menu-toggle .bar.two {
    margin-right: 4px;
    border-radius: 50% 0 0 50%;
}

.menu-toggle:hover .bar {
    background-color: white;
}

.menu-toggle:hover {
    background-color: var(--color-success);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    overflow-y: auto;
}

.main-header.is-open .mobile-menu {
    transform: translateX(0);
}

.menu-wrapper {
    padding: 1rem;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-mobile {
    max-height: 40px;
    width: auto;
}

.menu-close-button {
    background: none;
    border: none;
    color: black;
    font-size: 2.5rem;
    cursor: pointer;
}

.menu-area {
    padding-top: 1.5rem;
}

.menu-section {
    margin-bottom: 2rem;
}

.menu-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.main-link-list li a,
.quick-link-list li a {
    display: block;
    padding: 0.5rem 0;
    color: var(--color-dark);
    font-size: 1.1rem;
}

.main-link-list li a:hover,
.quick-link-list li a:hover {
    color: var(--color-nav-hover);
}

.contact-info .media {
    display: flex;
    align-items: flex-start;
    margin-top: 1rem;
}

.contact-info .media-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    filter: invert(1);
}

.contact-info .media-body h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.contact-info .about-text {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ------------------ */
/* Main Content Sections */
/* ------------------ */

.content-start {
    margin-top: var(--header-height);
}

.hero-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
}

.hero-content {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .hero-content {
        max-width: 50%;
    }
}

.hero-content h1 {
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.video-background-section {
    position: relative;
    height: calc(100vh - var(--header-height));
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content-overlay {
    position: relative;
    z-index: 1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    padding: 20px;
}

/* ------------------ */
/* Testimonials Section (Re-Added) */
/* ------------------ */

.testimonials-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.testimonial-image {
    flex-shrink: 0;
    margin: 0;
    margin-bottom: 1.5rem;
}

.testimonial-image img {
    width: 150px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #eee;
}

.testimonial-content {
    flex-grow: 1;
}

.testimonial-quote {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin: 0 0 1rem 0;
}

.testimonial-author {
    font-weight: bold;
    color: #0056b3;
    margin: 0;
}

/* ------------------ */
/* Footer */
/* ------------------ */

.main-footer {
    background-color: #d4d4d464;
    color: var(--color-muted);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.back-to-top {
    float: right;
    margin-bottom: 0.5rem;
}

.copyright-text,
.author-text {
    margin-bottom: 0.5rem;
}

.copyright-text b {
    font-weight: 700;
}

/* ------------------ */
/* Responsive Media Queries (Testimonials restored) */
/* ------------------ */

/* --- Mobile (Default Styles / max-width: 767px) --- */
.testimonials-section {
    padding: 2rem 0;
}

.section-title {
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: 1rem;
}


/* --- Tablet / Small Laptop (min-width: 768px) --- */
@media (min-width: 768px) {
    .menu-area {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .testimonials-section {
        padding: 4rem 0;
    }

    /* Testimonial specific tablet/desktop layout */
    .testimonial-card {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 2rem;
    }

    .testimonial-image {
        margin-bottom: 0;
        width: 200px;
    }

    .testimonial-image img {
        width: 100%;
    }

    .testimonial-author {
        text-align: right;
    }
}


/* --- Desktop (min-width: 1024px) --- */
@media (min-width: 1024px) {
    .desktop-nav {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-menu {
        visibility: hidden;
    }
}