html {
    scroll-behavior: smooth;
}
:root {
    --main-color: #006699;
}

/* Navbar Styling */
.navbar-nav .nav-link {
    font-size: 1rem;
    color: #000;
    margin-right:10px;
    font-weight: bold;
    /* Blue color from the logo */
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #006699;
}

.navbar-toggler {
    position: absolute;
    top: 16px;
    right: 10px;
}

.sign-in-btn {
    background-color: var(--main-color);
    color: #fff;
    border-radius: 25px;
    padding: 8px 20px;
    transition: background-color 0.3s ease;
}

.sign-in-btn:hover {
    background-color: #004d66;
    /* Darker shade of the main color on hover */
    color: #fff;
}

#heroCarousel {
    position: relative;
    height: 600px;
}

#heroCarousel .carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 5%;
    right: 5%;
    text-align: left;
    color: #fff;
}

.carousel-caption h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

.btn-primary:hover {
    background-color: #004d66 !important;
    /* Darker shade on hover */
    border-color: #004d66 !important;
}

.bg-primary {
    background-color: #006699 !important;
}

.feature-box {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Animation on Hover */
.feature-box img {
    transition: transform 0.3s ease;
}

.feature-box:hover img {
    transform: scale(1.2);
}

.feature-box p {
    transition: color 0.3s ease;
}

/* Styling for the Services Section */
#services {
    background-color: #f5f5f5;
}

.section-title {
    font-size: 2rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.view-all-link {
    color: var(--main-color);
    text-transform: uppercase;
    font-weight: bold;
}

.service-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 350px;
    /* Fixed height for consistency */
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box img {
    height: 100px;
    object-fit: contain;
}

.service-box h5 {
    font-weight: bold;
    color: var(--main-color);
}

.service-box p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 40px;
    /* To create space for "Read more" */
}

.read-more {
    font-weight: bold;
    color: var(--main-color);
    text-decoration: none;
    position: absolute;
    bottom: 20px;
    left: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover .read-more {
    opacity: 1;
}

/* Styling for User Interface Section */
#ui-ux {
    background-color: #fff;
}

.section-title {
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--main-color);
}

.section-underline {
    width: 80px;
    height: 3px;
    background-color: var(--main-color);
    margin: 0 auto 20px auto;
}

.section-subtitle {
    margin-bottom: 5px;
    font-size: 1.5rem;
    color: #333;

}

.section-text {
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    margin-bottom: 5px;
}

.play-store-btn img {
    height: 50px;
    transition: transform 0.3s ease;
}

.play-store-btn:hover img {
    transform: scale(1.05);
}

/* Increase mobile app image height */
.app-image img {
    max-height: 550px;
    /* Increased height */
    object-fit: contain;
}

.features-row {
    margin-top: 40px;
}

.feature-box {
    text-align: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e0f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.icon {
    width: 50px;
    height: 50px;
}

h5 {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.feature-box:hover h5 {
    color: var(--main-color);
}

/* AOS Animation styles */
[data-aos="fade-up-left"],
[data-aos="fade-up-right"] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
}

[data-aos="fade-up-left"].aos-animate,
[data-aos="fade-up-right"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
#advantages {
    background-color: #f8f9fa;
    padding-top: 50px;
    padding-bottom: 50px;
}

#advantages h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
}

#advantages p {
    font-size: 1.2rem;
    color: #6c757d;
}

#advantages ul li {
    font-size: 1.1rem;
    color: #495057;
}

#advantages ul li i {
    font-size: 1.3rem;
    color: #28a745;
}

#advantages img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.img-fluid {
    border-radius: 15px;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

#signup {
    background-color: #4a2e36;
}

#signup h2 {
    color: #fff;
    font-weight: 700;
}

#signup p {
    color: #dcdcdc;
}

#signup input.form-control {
    background-color: transparent;
    border-color: #dcdcdc;
    color: #fff;
}

#signup input::placeholder {
    color: #dcdcdc;
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #4a2e36;
}

.btn-outline-danger:hover {
    background-color: #fff;
    color: #dc3545;
}

/* Footer Styling */
.site-footer {
    /* background-color: #2c022d; */
    color: #666;
    padding: 40px 0;
}

/* .site-footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
} */

.footer-logo img {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-nav,
.footer-other-links,
.footer-social {
    margin-top: 20px;
}

.footer-nav ul,
.footer-other-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-nav ul li,
.footer-other-links ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-other-links ul li a {
    color: #666;
    text-decoration: none;
}

.footer-nav ul li a:hover,
.footer-other-links ul li a:hover {
    color: #006699;
}

.social-icons a {
    /* color: #fff; */
    margin-right: 10px;
}

.social-icons a:hover {
    color: #ffd700;
}

.footer-bottom {
    background-color: #f5f5f5;;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

/* Styling for the modal header */
.modal-header {
    /* background-image: url('/assets/about/about-us-page-title-background.jpg'); */
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    /* height: 150px; */
    color: #fff;
}

.modal-title {
    font-weight: bold;
    color: #fff;
}

.modal-body {
    padding: 20px;
}

.form-control {
    border-radius: 30px;
    padding: 10px 20px;
}

.btn-close {
    background-color: #fff;
    opacity: 0.7;
}

.btn-close:hover {
    opacity: 1;
}

/* Sign-in button in navbar */
.navbar .btn-danger {
    border-radius: 30px;
    padding: 5px 20px;
}

.modal-footer p {
    margin-bottom: 0;
}

.modal-footer a {
    color: #dc3545;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer .row>div {
    animation: fadeInUp 1s ease-in-out;
}

/* Responsive Style */
@media (max-width: 991.98px) {
    .sign-in-btn {
        position: absolute;
        right: 90px;
        top: 16px;
    }
    #heroCarousel {
        height: auto;
    }

    #heroCarousel .carousel-item {
        height: auto;
    }

    .read-more {
        opacity: 1;
    }
}

@media (max-width: 768px) {

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

    .carousel-item img {
        /* height: auto;
        width: 100%; */
        max-height: 400px;
        object-fit: cover;
    }

    /* .carousel-item {
        min-height: 500px;
        /* Increase the height of the hero section for mobile
    } */

    .footer-logo,
    .footer-nav,
    .footer-other-links,
    .footer-social {
        margin-bottom: 20px;
    }

    .footer-nav,
    .footer-other-links,
    .footer-social {
        text-align: center;
    }

    .footer-social .social-icons {
        justify-content: center;
    }
        
}