.top-bar {
    background-color: #333;
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
}

.top-bar span {
    font-size: 14px;
    display: block;
    color: white;
}
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");

}
.custom-navbar-bg {
    background-color: #08487e; /* Example custom color */
}
/* Full-screen height on large screens */
.carousel-item img {
    object-fit: cover;
    height: 50vh;
}

/* Adjust height on tablets (Safari included) */
@media (max-width: 1024px) {
    .carousel-item img {
        height: 40vh;
    }
}

/* Adjust height on mobile phones */
@media (max-width: 768px) {
    .carousel-item img {
        height: 30vh;
    }
}

/* Smaller phones */
@media (max-width: 425px) {
    .carousel-item img {
        height: 25vh;
    }
}

/* Mobile-specific section that moves below the logo */
.mobile-contact-info {
    background-color: #333;
    color: white;
    font-size: 15px;
}

.mobile-contact-info i {
    color: #f1c40f;
    margin-right: 5px;
}

/* Hide top bar from the top on mobile */
@media (max-width: 992px) {
    .top-bar {
        display: none; /* Top bar gets hidden */
    }
    
    .mobile-contact-info {
        display: block; /* Mobile view stacked info becomes visible below */
    }
}



/* Service card hover effect */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    box-shadow: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-card .card-body h5 {
    font-size: 18px;
    font-weight: 600;
}

.service-card .card-body p {
    font-size: 14px;
    color: #777;
}

.service-card .learn-more {
    color: red;
    text-transform: uppercase;
    font-weight: 600;
}

.service-card .learn-more:hover {
    text-decoration: underline;
}

/* Mobile responsiveness for the services section */
@media (max-width: 576px) {
    .service-card {
        margin-bottom: 20px;
    }
}

/* How It Works Section */
#how-it-works {
    background-color: #08487e; /* Dark background */
    padding: 60px 0;
}

#how-it-works .section-title {
    color: #f8b8d4;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#how-it-works .section-heading {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}

.process-card {
    border-radius: 8px;
    padding: 40px 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.process-card h5 {
    margin-top: 20px;
    font-weight: 600;
}

.process-card p {
    color: #cccccc;
    font-size: 14px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #how-it-works .process-card {
        margin-bottom: 20px;
    }
}
/* Slide-in animation */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.process-item {
    opacity: 0; /* Hidden initially */
    transform: translateX(-100%); /* Slide from the left */
    transition: all 0.5s ease-in-out;
}

.process-item.slide-in {
    opacity: 1;
    transform: translateX(0);
}
/* Stats Section Styling */
#stats {
    background: linear-gradient(45deg, #ff6f61 10%, #fc466b 90%);
    color: white;
    padding: 60px 0;
}

#stats h2 {
    font-size: 3rem;
    font-weight: 700;
}

#stats p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 10px;
}
/* Google Reviews Section */
#reviews {
    background-color: #1a1a3d;
}

#reviews .section-title {
    color: #f8b8d4;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#reviews .section-heading {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}

.review-card {
    border-radius: 8px;
    padding: 20px;
    background-color: #333;
}

.review-avatar {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
}

.bg-pink {
    background-color: #f8b8d4;
}

.bg-green {
    background-color: #65C16F;
}

.bg-blue {
    background-color: #5172B4;
}

.review-header img {
    margin-left: 10px;
}

.text-warning i {
    font-size: 18px;
}
/* Footer Section Styling */
.footer-section {
    background-color: #08487e; /* New dark gray color */
    padding: 40px 0;
}


.footer-section h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section p {
    color: #cccccc;
    font-size: 14px;
}

.footer-section ul {
    padding: 0;
    list-style-type: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-section .social-icons a {
    font-size: 20px;
    margin-right: 10px;
}

.footer-section .list-inline-item a:hover {
    color: #ffffff;
}

/* Ensure 2 columns in a single row on smaller screens */
@media (max-width: 768px) {
    .footer-section .col-md-6 {
        display: inline-block;
        width: 48%;
        vertical-align: top;
        text-align: center;
        margin-bottom: 20px;
    }
}

/* Brands Section */
#brands {
    background-color: #fff; /* Light background */
    padding: 40px 0;
}

#brands .section-heading {
    color: #333;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Adjust logo sizes for different screen sizes */
#brands img {
    max-height: 60px; /* Default size */
}

@media (min-width: 768px) {
    #brands img {
        max-height: 80px; /* Larger size for laptops/desktops */
    }
}

@media (max-width: 767px) {
    #brands .carousel-inner .row {
        display: flex;
        justify-content: center;
        text-align: center;
    }
    #brands img {
        max-height: 50px; /* Smaller size for mobile screens */
    }
}

