body {
    margin: 0;
    padding: 0;
}
/* Custom Fonts */ 
 h2{
    font-family: Eras ITC; font-weight: 400; font-size: 55px;
}
p{
 font-family: Montserrat, Medium;
}

/* Font Families */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* General Styling */
.text-color {
    color: #00adea; /* Replace with your desired text color */
}

.text-black {
    color: black;
}

.text-white {
    color: white;
}

/* Font Sizes and Families */
h2 {
    font-family: 'Eras ITC', Demi;
    font-size: 70px;
}

h3 {
    font-family: 'Eras ITC', Demi;
    font-size: 40px;
}

h5.fw-bold {
    font-family: 'Eras ITC', Bold;
}

p {
    font-family: 'Eras ITC', Medium;
}

p.mt-3,
p.my-4 {
    font-family: 'Montserrat', light;
    line-height: 28px;
    font-size: 18px;
}

.btn.cust-button {
    font-family: 'Montserrat', medium;
}

h3.text-black {
    font-size: 60px;
}

h2.text-white {
    font-size: 50px;
}

/* Footer Styles */
footer {
    font-family: 'Montserrat', light;
}

footer .fw-bold {
    font-family: 'Eras ITC', Bold;
}


.text-primary{
    color: #31BCEE;
}

hr {
    border: none;
    height: 1px;
    background-color: black;
}
.cust-button{
    border: none;
    border-radius: 0;
    padding: 10px 30px;
    font-family: Montserrat;
    text-transform: uppercase;
}

/* Navbar base styles */
.custom-navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #000000b8;
    /* Transparent when not scrolled */
    box-shadow: none;
}

/* Navbar when scrolled */
.custom-navbar.scrolled {
    /* background-color: rgba(255, 255, 255, 0.9);  */
    background-color: rgba(0, 0, 0, 0.356);
    /* Light background when scrolled */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

/* Navbar logo */
.navbar-brand img {
    height: auto;
}

/* Hamburger toggler */
.navbar-toggler {
    border: none;
    /* Remove border from the toggler button */
}

.navbar-toggler-icon {

    color: white;
}

/* Expanded menu background for mobile */
.navbar-collapse.collapse.show {

    z-index: 1050;
    /* Ensure it stays on top */
    border-radius: 0 0 10px 10px;
    /* Optional rounded bottom corners */

    transition: background-color 0.3s ease-in-out;
}

/* Navbar links styling */
.navbar-nav .nav-link {
    color: #fff !important;
    /* Black text for navbar links */
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: #00adee !important;
    /* Primary color on hover */
}

/* Dropdown menu links on mobile */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        text-align: center;
        /* Center-align links in the dropdown */
        padding: 1rem;
        /* Add padding for better touch usability */
    }
}

/* Media query for hamburger */
@media (max-width: 991px) {
    .navbar-toggler {
        margin-left: auto;
        /* Keep toggle aligned to the right */
    }
}


.hero {
    height: 95vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner.png') no-repeat center center/cover;
    color: white;
    position: relative;
}

.hero .content {
    position: absolute;
    top: 53%;
    margin-left: 8%;
    transform: translateY(-50%);
}

.hero-head {
    color: var(--unnamed-color-ffffff);
    text-align: left;
    letter-spacing: NaNpx;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    font-size: 75px;
    font-family: Eras ITC;
    font-weight: 600;
}

.btn-primary {
    background-color: #00adea;
    border: none;
}

.car-image img {
    position: absolute;
    bottom: 0;
    left: 40%;
    z-index: 1;
}

.car-image img {
    max-width: 60%;
    object-fit: contain;
}

.services,
.faq,
.contact {
    padding: 50px 0;
}

.faq .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #00adea;
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* About-Us Stylling */
#about {
    background: #fff;
    padding: 50px 0;
}

#about h2 {
    font-weight: bold;
    font-size: 36px;
}

#about h3 {
    font-size: 28px;
    font-weight: bold;
}

.img-style {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    margin: 10px 0;
}

.text-color {
    color: #00adea;
}

