body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    padding: 1rem;
    background-color: #00d9ff;
}
.navbar-toggler {
    border: none;
    background-color: #ff0000; 
    padding: 10px;
}

.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%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}
.navbar-brand img {
    width: 100px; 
    height:80px; 
    margin: 0; 
    padding: 0; 
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    margin-left: auto;
}

.nav-item {
    margin-right: 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
}

.nav-link:hover {
    color: #ccc;
}

.cta-btn {
    background-color: #ff69b4;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
.navbar .btn-primary {
    background-color: #ff5100;
    border-color: #ff5100;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    margin-left: 20px; 
    padding: 10px 20px; 
    color: #fff; 
    font-weight: bold; 
}

.navbar .btn-primary:hover {
    background-color: #00d9ff;
    border-color: #00d9ff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.sliding-banner .slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 20px;
}

.slide-title, .slide-text {
    position: absolute;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-title {
    font-size: 3rem;
    top: 20%;
}

.slide-text {
    font-size: 1.5rem;
    top: 40%;
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2rem;
        top: 20%;
    }

    .slide-text {
        font-size: 1rem;
        top: 40%;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.5rem;
        top: 20%;
    }

    .slide-text {
        font-size: 0.8rem;
        top: 40%;
    }
}

@media (max-width: 320px) {
    .slide-title {
        font-size: 1rem;
        top: 20%;
    }

    .slide-text {
        font-size: 0.6rem;
        top: 40%;
    }
}

.sliding-banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}
.carousel-inner {
    height: 100%;
  }
  
  .carousel-item {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
  }
  
  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .carousel-control-prev, .carousel-control-next {
    width: 30px;
    height: 30px;
    background-color: #00d9ff;
    border-radius: 50%;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .carousel-control-prev:hover, .carousel-control-next:hover {
    background-color: #00d9ff;
  }
  
  .carousel-control-prev-icon, .carousel-control-next-icon {
    font-size: 24px;
    color: #fff;
  }

.sliding-banner .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sliding-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    width: calc(33.33% - 20px);
    margin: 20px 0px;
    background-color: #f7f7f7;
    padding: 20px;
    border: 2px solid #333; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-sizing: border-box;
}
.service-card i {
    font-size: 24px;
    margin-right: 10px;
    display: inline-block ;
    vertical-align: middle;
}
.service-card button {
    background-color: #00d9ff;
    border-color: #00d9ff;
    color: #fff;
}

.service-card button:hover {
    background-color: #00d9ff;
    border-color: #00d9ff;
}

.why-choose-us {
    background-color: #f7f7f7;
    padding: 20px;
}

.why-choose-us ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.why-choose-us li {
    margin-bottom: 10px;
}

.services-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.service-detail-card {
    margin: 30px; 
    padding: 20px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.services-detail h2 {
    margin-top: 0;
    width: 100%;
}

.services-detail img {
    width: 100%;
    height: 400px; 
    object-fit: cover;
    margin-bottom: 20px;
}

.services-detail p {
    width: 100%;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .services-detail {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .services-detail img {
        height: 150px;
    }
}

@media (max-width: 320px) {
    .services-detail img {
        height: 100px;
    }
}

.contact {
    background-color: #f7f7f7;
    padding: 20px;
}

.contact form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}


.google-maps {
    width: 100%;
    height: 300px;
    border: 1px solid #ddd;
}

footer {
    background-color: #00d9ff;
    color: #333;
    padding: 20px;
    text-align: center;
}

footer .quick-links, footer .services, footer .about, footer .social-media, footer .contact-info, footer .newsletter {
    display: inline-block;
    vertical-align: top;
    margin: 20px;
}
footer h2, footer h3, footer h4, footer h5, footer h6 , footer p {
    color: #fff; 
}

footer h2 {
    margin-top: 0;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer li {
    margin-bottom: 10px;
}

footer a {
    color: #fff; 
    text-decoration: none;
}

footer .newsletter form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

footer .newsletter input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}



/* Responsive Styles */

@media (max-width: 1200px) {
    .service-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 992px) {
    .service-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .service-card {
        width: calc(50% - 20px);
    }
    .sliding-services {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .service-card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .sliding-banner {
        height: 300px;
    }
    .service-card {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .sliding-banner {
        height: 200px;
    }
    .service-card {
        width: 100%;
    }
    .service-card i {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .service-card i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .service-card i {
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .service-card i {
        font-size: 14px;
    }
}