@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


body{
background-color: #ffff;
}

h1,h2, h4, h5, h3{
    font-family: "Oxanium", sans-serif;
}
p{
    font-family: "Montserrat", sans-serif;
}
.orange-text{
    color: #028dff;
}
.btn-orange{
    background-color: #028dff;
    color: #fff;
}
.btn-orange:hover{
    background-color: #e75a2f;
    color: #fff;
}
/* Navbar */
.navbar {
    position: fixed;
   padding: 0px;
    width: 100%;
    height: 85px;
    background: #fff;
    border-bottom: 0.1px solid rgba(0, 0, 0, 0.178);
    backdrop-filter: blur(10px); /* Blur effect */
    z-index: 1000; /* Make sure it stays above the content */
}
.navbarlogo{
    width: 100px;
    height: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.nav-item{
    font-family: "Montserrat", sans-serif;
    
}
.navbar-nav .nav-item.active .nav-link {
    color: #028dff !important;
    font-weight: bold;
}
.navbar .nav-link {
    color: #000;
 
    margin: 0 15px;
}
.navbar .nav-link:hover {
    color: #000;
}
.navbar .navbar-brand img {
    height: 50px;
}
.contact-number {
    font-weight: bold;
    color: #000;
}

/* Hero Section Styles */
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)); /* Darker at top, lighter at bottom */
    z-index: 1;
}

.carousel-item {
    height: 98vh;
    position: relative;
    background-size: cover;
 
}
.carousel-item .container {
    position: relative;
    z-index: 2; /* Make sure the text is above the gradient */
}

.carousel-item h1, 
.carousel-item p, 
.carousel-item a {
    color: #fff; /* Ensure text is white and readable */
}
.banner_heading{
    font-size: 4rem;
}

/* Services Section */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    color: #fff;
}
.all-services-btn {
    background-color: #028dff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    
}
.service-card {
    background-color: #fff;
    border: none;
    transition: all 0.3s ease;
    color: #000;
   border-radius: 10px;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.details-link {
    color: #e75a2f;
    text-decoration: none;
}
.details-link:hover {
    text-decoration: underline;
}

footer {
  background-color: #dcdcdc6b;
    color: #000;
    padding: 2rem 0;
}
footer a {
    text-decoration: none;
}
.footer-logo {
    max-width: 100px;
    margin-bottom: 1rem;
}
.phone-number {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.social-icons a {
    color: #000;
    margin-right: 1rem;
}

/* About Us Sections */

.aboutbanner {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.83), rgba(0, 0, 0, 0.5)),
    url("../images/blue_banners/bluedeccanbanner9.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh; /* Adjust the height as needed */
  
}
.progress {
    height: 10px;
}
.progress-bar {
    background-color: #028dff;
}

.extra-services-section {
    background-image: url('../images/blue_banners/bluedeccanbanner8.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
    position: relative;
}
.extra-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
}
.extra-services-title {
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}
.extra-services-list {
    padding-left: 20px;
}
.extra-services-list li {
    margin-bottom: 10px;
}
.extra-services-list li::marker {
    content: "✓ ";
    color: #028dff;
}
.extra-services-list li {
    font-family: "Montserrat", sans-serif;
}

/* Contact Us */
.contact-icon {
    font-size: 24px;
    color: white;
    background-color: #028dff;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    margin-top: -47px;
}
.contact-card {
    height: 100%;
    background-color: #F0F0F0;
    color: #000;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
 
}

iframe {
    width: 100%;
    height: 400px;
    border: none;
 
}

/* Service Detail */

.bg-contact {
    background-image: linear-gradient(rgba(0, 0, 0, 0.83), rgba(0, 0, 0, 0.5)),url('../images/services/engine_service2.jpeg');
    background-size: cover;
    color: white;
    padding: 20px;
    height: 40vh;
    text-align: center;
    border-radius: 10px;
  }

  .bg-contact h4 {
    margin-bottom: 10px;
  }

  .service-list {
    list-style: none;
    padding: 0;
  }
  
  .service-item {
    position: relative;
    padding: 15px;
   color: #000;
    border-left: 5px solid #028dff; /* Left red border */
    background-color: #fff;
    font-weight: bold;
    
    transition: background-color 0.3s ease;
  }
  
  .service-item:hover {
    background-color: #eee;
    background-color: #028dff;
  }

/* Tab Screens */
@media (max-width: 992px){
    .banner_heading{
        font-size: 3rem;
    }
    .banner_paragraph{
        font-size: 12px;
    }
    .mobilenav{
        display: block !important;
        display: flex !important;
        justify-content: space-between !important;
        color: #fff !important;
    }
    .navbar-collapse {
        height: 100vh;
        background-color: #fff;
        color: #fff !important;
        backdrop-filter: blur(20px);
        
    }
    .navbarlogo{
        width: 70px;
        height: 70px;
      
    }
    .preloader1{
        position: fixed;
        background-color: #fff;
        color: #fff !important;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
         
        }
        .rounded-circle{
            display: flex !important;
            justify-content: center;
            align-items: center;
        }
}
/* Mobile */
@media (max-width: 767px) {
    .navbarlogo{
        width: 85px;
        height: 90px;
      
    }
    .mobilenav{
        display: block !important;
        display: flex !important;
        justify-content: space-between !important;
    }
    .navbar-collapse {
        height: 100vh;
        background-color: #000000da;
        backdrop-filter: blur(20px);
        padding: 20px;
    }
    .preloader1{
        position: fixed;
        background-color: #fff;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
         
        }
        .rounded-circle{
            display: flex !important;
            justify-content: center;
            align-items: center;
        }
    .banner_heading{
        font-size: 1.8rem;
    }
    .carousel-item {
        height: 90vh;
        position: relative;
        background-size: cover;
        background-position: center;
    }

}


 