body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

:root {
    --primary-color: #FF8C00; /* Orange */
    --secondary-color: #000000; /* Black */
    --light-color: #f8f9fa;
    --dark-grey: #212529;
    --secondary-dark-color: #1a1a1a;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e67e00; /* Darker orange */
    border-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bg-dark {
    background-color: var(--secondary-color) !important;
}

.bg-secondary-dark {
    background-color: var(--secondary-dark-color) !important;
}

.text-white {
    color: #fff !important;
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
}

.navbar-brand .site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease;
}

.navbar-brand:hover .site-name {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.offcanvas.show {
    transform: translateX(0);
}

.offcanvas-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Responsive Typography */
h1,
.display-3 {
    font-size: 2.5rem;
}

h2,
.display-5 {
    font-size: 2rem;
}

@media (min-width: 768px) {
    h1,
    .display-3 {
        font-size: 3rem;
    }

    h2,
    .display-5 {
        font-size: 2.5rem;
    }

    .navbar-brand .site-name {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    h1,
    .display-3 {
        font-size: 3.8rem;
    }

    h2,
    .display-5 {
        font-size: 3rem;
    }

    .navbar-brand .site-name {
        font-size: 2.2rem;
    }
}

@media (max-width: 1100px) {
    .navbar-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .navbar-nav .nav-item {
        flex-shrink: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        display: none !important;
    }

    .offcanvas-body .navbar-nav .nav-link {
        padding: 10px 15px;
        margin: 0;
        width: 100%;
    }

    .offcanvas-body .navbar-nav .nav-link::after {
        display: none;
    }

    .offcanvas-body .navbar-nav .nav-link:hover {
        background-color: var(--secondary-dark-color);
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-grey) 100%);
    color: #fff;
    min-height: 80vh;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-image-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .hero-image-container {
        min-height: 300px;
        margin-top: 30px;
    }
}

/* About Section - Vertical Timeline */
.about-section {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    padding: 20px 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    left: 50%;
    margin-left: -2px;
    z-index: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
    padding-inline: 30px;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 15px;
    left: 50%;
    margin-left: -10px;
    border: 3px solid #fff;
    z-index: 2;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: auto;
    right: 50%;
    margin-right: -10px;
}

.timeline-content {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    position: relative;
}


@media (max-width: 767.98px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        margin-left: 0;
    }

    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-dot {
        left: 20px;
        margin-left: -10px;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: 20px;
        margin-left: -10px;
        right: auto;
    }

    .timeline-item:nth-child(odd) .timeline-content::before {
        left: -15px;
        right: auto;
        border-width: 15px 15px 15px 0;
        border-color: transparent #fff transparent transparent;
    }

    .timeline-item:nth-child(even) .timeline-content::before {
        left: -15px;
        right: auto;
        border-width: 15px 15px 15px 0;
        border-color: transparent #fff transparent transparent;
    }
}

/* Features Section - Stacked Cards */
.features-section {
    background-color: var(--secondary-color);
    color: #fff;
}

.feature-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--secondary-dark-color);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.feature-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card .card-text {
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.feature-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #ccc;
}

.feature-card ul li::before {
    content: '\2713'; /* Checkmark */
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-card .btn {
    margin-top: auto;
}

/* How It Works Section - Minimalist Diagram */
.how-it-works-section {
    background-color: var(--light-color);
}

.process-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.process-step {
    padding: 20px;
    position: relative;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-icon {
    font-size: 3rem;
    color: #fff;
}

.process-line {
    height: 4px;
    background-color: #ccc;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 1s ease-out;
}

.process-line[data-aos-delay="200"]::after {
    transition-delay: 0.2s;
}

.process-line[data-aos-delay="500"]::after {
    transition-delay: 0.5s;
}

/* AOS animation for lines */
.aos-animate .process-line::after {
    width: 100%;
}

@media (max-width: 767.98px) {
    .process-step {
        width: 100%;
        margin-bottom: 30px;
    }

    .process-line {
        height: 50px;
        width: 4px;
        margin: 0 auto;
        background-color: #ccc;
    }

    .process-line::after {
        width: 100%;
        height: 0%;
    }

    .aos-animate .process-line::after {
        height: 100%;
        width: 100%;
    }
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--secondary-color);
    color: #fff;
}

.portfolio-item {
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--secondary-dark-color);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.portfolio-item .card-body {
    padding: 1.5rem;
}

.modal-content {
    border-radius: 15px;
    background-color: var(--secondary-dark-color);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: var(--primary-color);
}

.modal-body img {
    border-radius: 10px;
}

/* Team Section */
.team-section {
    background-color: var(--light-color);
}

.founder-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.founder-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--primary-color);
}

.team-member {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.team-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--secondary-color);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonial-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: start; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;

    .testimonial-bubble {
        flex: 1 0 25%;
    }
}

.testimonial-bubble {
    background-color: var(--secondary-dark-color);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.testimonial-bubble::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--secondary-dark-color);
    bottom: -15px;
    left: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-color);
}

.help-widget {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header .accordion-button {
    background-color: #f1f1f1;
    color: #333;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.accordion-header .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

.accordion-header .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #fff;
    color: #555;
}

.faq-search-results .accordion-item {
    display: block;
}

.faq-search-results .accordion-item.hidden {
    display: none;
}

/* Contact Section */
.contact-section {
    background-color: var(--secondary-color);
    color: #fff;
}

.contact-form {
    background-color: var(--secondary-dark-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form .form-label {
    color: #ccc;
    font-weight: 600;
}

.contact-form .form-control {
    background-color: #333;
    border: 1px solid #555;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
}

.contact-form .form-control::placeholder {
    color: #888;
}

.contact-form .form-control:focus {
    background-color: #444;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25);
    color: #fff;
}

.contact-info p {
    font-size: 1.1rem;
    color: #ccc;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #fff;
}

.email-break-all {
    word-break: break-all;
}

/* Footer Section */
.footer-section {
    background-color: var(--secondary-color);
    color: #fff;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-section .navbar-brand .footer-logo-img {
    height: 35px;
}

.footer-section .navbar-brand .site-name {
    font-size: 1.6rem;
    color: #fff;
}

.footer-section .navbar-brand:hover .site-name {
    color: var(--primary-color);
}

.footer-section h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    padding-left: 0;
    list-style: none;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 0;
    display: block;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

@media (max-width: 767.98px) {
    .footer-section .col-md-4 {
        text-align: center;
    }

    .footer-section .navbar-brand {
        justify-content: center;
    }

    .footer-section ul {
        margin-bottom: 30px;
    }
}
/*
 * Base styles for the legal content block.
 * Provides internal spacing for the content.
 */
.legalDomeBlock {
    padding: 40px 20px; /* Top/Bottom padding 40px, Left/Right padding 20px */
}

/*
 * Heading styles for h1 to h5 within legalDomeBlock.
 * Font sizes are kept moderate as requested.
 */
.legalDomeBlock h1 {
    font-size: 28px; /* Moderate font size for main heading */
    line-height: 1.2;
    margin-top: 0; /* Remove default top margin for the first heading */
    margin-bottom: 20px; /* Space below the heading */
    font-weight: bold;
    color: #333; /* Slightly softer black for readability */
}

.legalDomeBlock h2 {
    font-size: 24px; /* Moderate font size for sub-heading */
    line-height: 1.2;
    margin-top: 30px; /* Space above the heading */
    margin-bottom: 18px;
    font-weight: bold;
    color: #333;
}

.legalDomeBlock h3 {
    font-size: 20px; /* Moderate font size for smaller sub-heading */
    line-height: 1.3;
    margin-top: 25px;
    margin-bottom: 16px;
    font-weight: bold;
    color: #333;
}

.legalDomeBlock h4 {
    font-size: 18px; /* Moderate font size for even smaller sub-heading */
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 14px;
    font-weight: bold;
    color: #333;
}

.legalDomeBlock h5 {
    font-size: 16px; /* Font size similar to body text, distinguished by weight/margin */
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 12px;
    font-weight: bold;
    color: #333;
}

/*
 * Paragraph styles within legalDomeBlock.
 * Provides good readability and spacing between paragraphs.
 */
.legalDomeBlock p {
    font-size: 16px; /* Standard body text size */
    line-height: 1.6; /* Optimal line height for readability */
    margin-top: 0;
    margin-bottom: 1em; /* Space between paragraphs */
    color: #333;
}

/*
 * Unordered list styles within legalDomeBlock.
 * Resets default list margins and provides consistent indentation.
 */
.legalDomeBlock ul {
    list-style-type: disc; /* Standard disc bullets */
    margin: 0 0 1em 0; /* Top: 0, Right: 0, Bottom: 1em, Left: 0 */
    padding-left: 1.5em; /* Indent for bullet points */
    color: #333;
}

/*
 * List item styles within legalDomeBlock.
 * Provides spacing between individual list items.
 */
.legalDomeBlock li {
    font-size: 16px; /* Consistent font size with body text */
    line-height: 1.6;
    margin-bottom: 0.5em; /* Space between list items */
}
