/********** Template CSS **********/
.blog-body {
    background-color: #1a1a1a;
    font-family: 'Arial', sans-serif;
  }

.blog-card {
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease;
    background-color: #292929;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  .card-img-top {
    height: 250px;
    object-fit: cover;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: transform 0.4s ease;
  }
  .blog-card:hover .card-img-top {
    transform: scale(1.1);
  }
  .card-body {
    padding: 25px;
  }
  .card-body h5 {
    color: blue;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  .card-body p {
    color: #b8b8b8;
  }
  .card-footer {
    background-color: transparent;
    border-top: none;
    text-align: right;
    color: #f4f4f4;
    font-weight: bold;
  }
  /* Extra card styling */
  .blog-card .card-body:hover {
    border-left: 5px solid blue;
  }

/* Adjust the position of the previous control arrow */
.carousel-control-prev {
    left: -40px; /* Shift the arrow 40px to the left (adjust as needed) */
}

/* Adjust the position of the next control arrow */
.carousel-control-next {
    right: -40px; /* Shift the next arrow 40px to the right (adjust as needed) */
}

/* Style for the logos in the carousel */
.carousel-item img {
    max-height: 100px; /* Adjust based on your logo size */
    max-width: 150px;
}

/* Add padding between logos */
.d-flex img {
    padding: 0 15px; /* Adds padding between logos */
}

/* Media query for mobile screens */
@media (max-width: 767.98px) {
    .d-flex img {
        padding: 0 10px; /* Smaller padding for mobile */
    }

    .carousel-item {
        flex-direction: column; /* Stack logos on top of each other on very small screens */
        text-align: center;     /* Center logos */
    }

    .carousel-item img {
        max-width: 100px; /* Reduce logo size on mobile for better fit */
        margin-bottom: 15px; /* Add space between logos vertically */
    }

    .carousel-control-prev, .carousel-control-next {
        top: 50%;
        transform: translateY(-50%);
    }
}

.carousel-control-prev {
    left: -40px; /* Shift the arrow 40px to the left (adjust as needed) */
}

.carousel-control-next {
    right: -40px; /* Shift the next arrow 40px to the right (adjust as needed) */
}
.carousel-item {
    transition: transform 0.9s ease-in-out;
}

.carousel-item img {
    max-height: 100px; /* Adjust the height according to your logo size */
    max-width: 150px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: black; /* Optional styling for control icons */
    border-radius: 50%;
    padding: 10px;
}

  .animate-scroll {
    animation: scroll 20s linear infinite;
  }
.global-heading {
    font-size: 1.8rem; /* Example size */
    color: #148bda;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    position: relative;
}

.global-heading:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #000000;
    margin: 10px auto;
}

.why-choose-us {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.0rem;
    color: #333;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

/* .why-choose-us h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #00b4d8;
    margin: 10px auto;
} */

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.feature-item {
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    border-radius: 15px;
    padding: 30px;
    margin: 10px;
    width: 320px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-15px);
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.2);
}

.feature-item:before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 180, 216, 0.15);
    transition: top 0.6s ease;
}

.feature-item:hover:before {
    top: 0;
}

.feature-icon {
    font-size: 50px;
    color: #00b4d8;
    margin-bottom: 20px;
    transition: transform 0.6s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-title {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.feature-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

    /* Define the auto-scrolling animation */
    @keyframes scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%); /* Move halfway, adjust based on the number of logos */
        }
      }
  
      .scrolling-wrapper {
        display: flex;
        overflow: hidden;
        width: 100%; /* Full width of the container */
        max-width: calc(10 * 10rem); /* Shows only 10 logos initially, adjust logo width accordingly */
      }
  
      .scrolling-content {
        display: flex;
        width: max-content;
        animation: scroll 20s linear infinite; /* Adjust duration based on content length */
      }
  
      .scrolling-content:hover {
        animation-play-state: paused; /* Pause on hover */
      }

 /* Ensure all images have the same size */
 .gallery-img {
    height: 250px; /* Fixed height */
    object-fit: cover; /* Crop to fit the box */
    width: 100%; /* Full width */
}

.float-right-button {
    position: fixed;
    bottom: 10px; /* Adjust this value to move the button up or down */
    right: 10px;  /* Adjust this value to move the button left or right */
    z-index: 1050; /* Ensure it stays on top of other content */
    border-radius: 90%; /* Optional: makes the button round */
    padding: 8px 8px; /* Optional: adjust size of the button */
  }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Fade-in animation */
.fade-in {
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Modal Styles */
#contact-modal {
    display: none;
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
#contact-form-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}

/* Loading Screen Style */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-left-color: #3490dc;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Fade-in animation */
.fade-in {
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Modal Styles */
#contact-modal {
    display: none;
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
#contact-form-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}

/* Adjust word spacing */
p {
    word-spacing: -1px; /* You can adjust this value as needed */
}

/* Media query for smaller screens */
@media only screen and (max-width: 600px) {
    .phone-link {
        display: block; /* Display block on smaller screens */
        text-align: center; /* Center text on smaller screens */
    }

    .phone-icon {
        display: none; /* Hide phone icon on smaller screens */
    }
}


@media (max-width: 767px) {
    .row.justify-content-center .col-lg-4 {
        flex: 0 0 auto;
        max-width: none;
    }
}

.phone-link {
    color: black;
    /* Set initial color to black */
    text-decoration: none;
    /* Remove default underline */
    display: flex;
    align-items: center;
}

.phone-link:hover {
    color: #E0A93A;
    /* Change color on hover */
}

.phone-icon {
    margin-right: 5px;
    /* Adjust spacing between icon and number */
}


body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;

}

.blog-post {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-post img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.blog-post h2 {
    color: #CC3930;
}


.accordion-container {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    /* Adjust opacity value to make the shadow darker */
}

.gallery-item {
    margin-bottom: 30px;
}

.call-button {
    position: fixed;
    left: 20px;
    /* Adjust as needed */
    top: 50%;
    /* Adjust as needed */
    transform: translateY(-50%);
    background-color: ;
    /* Change button color as needed */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    z-index: 9999;
    /* Ensure the button appears on top of other content */
    display: flex;
    align-items: center;
}

.icon {
    width: 20px;
    /* Adjust as needed */
    height: 20px;
    /* Adjust as needed */
    margin-right: 10px;
}

.call-button:hover {
    background-color: #0056b3;
    /* Change button hover color as needed */
}


.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


#tawkchat-minimized {
    background-color: #E0A93A !important;
}

#tawkchat-maximized {
    background-color: #E0A93A !important;
}

.py-5 {
    background-color: #f8f9fa;
}

.section-heading {
    color: #000000;
}

.img-fluid {
    transition: transform 0.3s ease-in-out;
}

.col-md-4:hover .img-fluid {
    transform: scale(1.1);
}

.font-weight-bold {
    color: #CC3930;
    transition: color 0.3s ease-in-out;
}

.col-md-4:hover .font-weight-bold {
    color: #0056b3;
}

.text-muted {
    color: #6c757d;
    transition: color 0.3s ease-in-out;
}

.col-md-4:hover .text-muted {
    color: #495057;
}




/* Example styles for the "Request a Quote" section */
#quote-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

#quote-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.quote-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #CC3930;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 1.2rem;
    color: #343a40;
    margin-bottom: 30px;
}

.quote-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #CC3930;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.quote-button:hover {
    background-color: #0056b3;
}


/* Add a hover effect to the cards */
.feature-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}




/* Add a hover effect to the cards */
.offer-card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Add a hover effect to the cards */
.card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.card-zoom:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}



.zoom-in-card {
    animation: zoomIn 1s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
    }

    to {
        transform: scale(1);
    }
}

:root {
    --primary: #E0A93A;
    --secondary: #F6F6F6;
    --light: #FFFFFF;
    --dark: #152440;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;

}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 150px;
    bottom: 30px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    text-transform: capitalize;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 36, 64, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.service-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50px;
    bottom: -50px;
    left: 0;
    background: var(--light);
    border-radius: 100% 100% 0 0;
    box-shadow: 0px -10px 5px #EEEEEE;
    transition: .5s;
}

.service-item:hover::after {
    bottom: -25px;
}

.service-item p {
    transition: .3s;
}

.service-item:hover p {
    margin-bottom: 25px !important;
}

.team-item img {
    transform: scale(1.15);
    margin-left: -30px;
    transition: .5s;
}

.team-item:hover img {
    margin-left: 0;
}

.team-item .team-text {
    left: -100%;
    transition: .5s;
}

.team-item .team-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    right: -60px;
    margin-top: -30px;
    border: 30px solid;
    border-color: transparent transparent transparent var(--primary);
}

.team-item:hover .team-text {
    left: 0;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .owl-item img {
    width: 90px;
    height: 90px;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.1);
}