/* Import the Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #fff;
}

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

.navbar-nav .nav-link {
    color: #333 !important;
}

.navbar-toggler-icon {
    filter: invert(0);
}

.nav-link:hover {
    color: #28a745 !important;
}

.jumbotron {
    position: relative;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.jumbotron::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.jumbotron .container {
    position: relative;
    z-index: 2;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.jumbotron h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.jumbotron p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.btn-3d {
    background-color: #28a745;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-3d:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.bg-light {
    background-color: #f8f9fa !important;
    color: #333;
}

.bg-dark {
    background-color: #333;
    color: #fff;
}

.bg-primary {
    background-color: #007bff !important;
    color: #fff;
}

.process-section {
    background: url('process-image.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    padding: 5rem 0;
    position: relative;
}

.horizontal-scroller {
    display: flex;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-behavior: smooth;
}

.scroller-item {
    flex: 0 0 auto;
    margin-right: 2rem;
    background: #333;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.scroller-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.scroller-item:last-child {
    margin-right: 0;
}

.process-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.process-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #ddd;
}

/* Scroll Hint Styles */
.scroll-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    color: #fff;
    animation: bounce 2s infinite;
}

.scroll-hint .scroll-text {
    margin-right: 10px;
    font-size: 1rem;
}

.scroll-hint .scroll-arrow {
    font-size: 1.5rem;
}

/* Keyframes for Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Testimonial Styles */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-card .card-text {
    color: #fff;
}

.testimonial-card .card-text .text-muted {
    color: #ccc;
}

/* Responsive Brand Scroller */
.brands-scroller {
    display: flex;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-behavior: smooth;
    white-space: nowrap;
}

.brand-item {
    flex: 0 0 auto;
    margin-right: 2rem;
    width: 150px;
    height: 250px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

.brand-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* FAQ Styles */
.faq-item .card-header {
    background-color: #28a745;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.faq-item .btn-link {
    color: #fff;
    text-decoration: none;
    width: 100%;
    text-align: left;
}

.faq-item .btn-link:hover {
    color: #fff;
    text-decoration: underline;
}

.faq-item .card-body {
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

/* Contact Form Styles */
#contactForm .form-group label {
    color: #333;
}

#contactForm .form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 10px;
}

#contactForm .btn-3d {
    background-color: #28a745;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

#contactForm .btn-3d:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

footer .container {
    text-align: center;
}

footer .list-inline {
    padding: 0;
    list-style: none;
}

footer .list-inline-item {
    display: inline-block;
    margin-right: 10px;
}

/* Import the Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #fff;
}

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

.navbar-nav .nav-link {
    color: #333 !important;
}

.navbar-toggler-icon {
    filter: invert(0);
}

.nav-link:hover {
    color: #28a745 !important;
}

.jumbotron {
    position: relative;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.jumbotron::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.jumbotron .container {
    position: relative;
    z-index: 2;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.jumbotron h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.jumbotron p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.btn-3d {
    background-color: #28a745;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-3d:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.bg-light {
    background-color: #f8f9fa !important;
    color: #333;
}

.bg-dark {
    background-color: #333;
    color: #fff;
}

.bg-primary {
    background-color: #007bff !important;
    color: #fff;
}

.process-section {
    background: url('process-image.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    padding: 5rem 0;
    position: relative;
}

.horizontal-scroller {
    display: flex;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-behavior: smooth;
}

.scroller-item {
    flex: 0 0 auto;
    margin-right: 2rem;
    background: #333;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.scroller-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.scroller-item:last-child {
    margin-right: 0;
}

.process-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.process-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #ddd;
}

/* Scroll Hint Styles */
.scroll-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    color: #fff;
    animation: bounce 2s infinite;
}

.scroll-hint .scroll-text {
    margin-right: 10px;
    font-size: 1rem;
}

.scroll-hint .scroll-arrow {
    font-size: 1.5rem;
}

/* Keyframes for Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Testimonial Styles */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-card .card-text {
    color: #fff;
}

.testimonial-card .card-text .text-muted {
    color: #ccc;
}

/* Responsive Brand Scroller */
.brands-scroller {
    display: flex;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-behavior: smooth;
    white-space: nowrap;
}

.brand-item {
    flex: 0 0 auto;
    margin-right: 2rem;
    width: 150px;
    height: 250px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

.brand-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* FAQ Styles */
.faq-item .card-header {
    background-color: #28a745;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.faq-item .btn-link {
    color: #fff;
    text-decoration: none;
    width: 100%;
    text-align: left;
}

.faq-item .btn-link:hover {
    color: #fff;
    text-decoration: underline;
}

.faq-item .card-body {
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

/* Contact Form Styles */
#contactForm .form-group label {
    color: #333;
}

#contactForm .form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 10px;
}

#contactForm .btn-3d {
    background-color: #28a745;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

#contactForm .btn-3d:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

footer .container {
    text-align: center;
}

footer .list-inline {
    padding: 0;
    list-style: none;
}

footer .list-inline-item {
    display: inline-block;
    margin-right: 10px;
}

footer .list-inline-item a {
    color: #fff;
} 

#schedule .btn-3d {
    background-color: #4d9817; /* Changed to a brighter color for visibility */
    border: 2px solid #ffffff;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.25rem;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
}

#schedule .btn-3d:hover {
    background-color: #ffb300; /* Slightly darker shade for hover effect */
    border-color: #ffb300;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

