* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.bg-red {
    background-color: #e33033 !important;
}

.bg-black {
    background-color: black !important;
    /* background-color: #343434 !important; */
}

.text-red {
    color: #e33033 !important;
}

.btn-red {
    color: #fff;
    background-color: #e33033;
    border-color: #e33033;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 20px;
    border: 2px solid white;
}

.main-title {
    font-family: 'Roboto';
    font-size: 4rem;
}

.btn-red:hover {
    color: #fff;
    background-color: #e41c20;
}

.mt-7 {
    margin-top: 7rem !important;
}

.w-10 {
    width: 10% !important;
}

.w-15 {
    width: 15% !important;
}

.w-20 {
    width: 20% !important;
}

.mt-67 {
    margin-top: 6.7rem;
}

.navbar-brand img {
    width: 80%;
}

@media (max-width: 768px) {
    .mt-67 {
        margin-top: 5.8rem !important;
    }

    .w-15 {
        width: 25% !important;
    }

    .navbar-brand img {
        width: 160% !important;
    }
}

@media (max-width: 428px) {
    .mt-67 {
        margin-top: 4.5rem !important;
    }

    .w-15 {
        width: 30% !important;
    }
}

/* SERVICES */
.image-overlay-container {
    position: relative;
    display: inline-block;
}

.image-overlay-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Black overlay with transparency */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    /* Set default opacity to 1 */
    border-radius: 8px;
}

.overlay-title {
    font-family: 'Roboto';
    font-size: 2rem;
    letter-spacing: 1.5px;
    font-weight: bold;
    text-align: center;
}

/* SERVICES */
/* CAROUSEL */
/* Carousel Container Styles */
.carousel-container {
    margin-top: 50px;
}

/* Image Styling */
.carousel-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.carousel-img:hover {
    transform: scale();
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Owl Carousel Dots and Navigation */
.owl-dots .owl-dot {
    background: #ccc;
    border-radius: 50%;
    height: 12px;
    width: 12px;
    margin: 5px;
    transition: background 0.3s ease-in-out;
}

.owl-dots .owl-dot.active {
    background: #e33033 !important;
}

.owl-nav button {
    background: #e33033 !important;
    color: white !important;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.owl-nav button:hover {
    background: #0056b3;
    transform: scale(1.1);
}

.owl-nav button span {
    font-size: 1.5rem;
}

/* CAROUSEL */
/* FAQ'S */
.faq-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: #f8f9fa;
    color: #333;
    font-weight: bold;
    padding: 1rem;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    background-color: #fff;
}

/* FAQ'S */
/* CONTACT */
.contact-card {
    border-radius: 15px;
    padding: 20px;
}

.contact-card h4 {
    font-weight: bold;
}

.contact-card .icon {
    font-size: 1.5rem;
    color: #333;
    margin-right: 10px;
}

.social-icons a {
    margin-right: 10px;
    font-size: 1.5rem;
    color: #333;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #e33033;
}

.form-control {
    border-radius: 8px;
}

.btn-primary {
    background-color: #e33033;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
}

.btn-primary:hover {
    background-color: #cc2929;
}

/* CONTACT */
/* FOOTER */
/* Footer Starts */
.footer {
    background-color: #000;
    padding: 40px 0;
}

.footer-logo {
    /* width: 100px; */
}

/* .footer-col{
     width: 25%;
     padding: 0 15px;
  } */
.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--secondary);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: white;
    background-color: #e41c20
}

li {
    list-style: none;
}

/*responsive*/
@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }

    .sticky-wrapper {
        height: 56px !important;
    }
}

/* Footer Ends */
/* FOOTER */

/* ABOUT  */
.about-hero {
    height: 40vh;
    background: url(../images/about-bg.jpg) no-repeat center;
    background-size: cover;
}

.quick {
    height: 54vh;
    background: url(../images/about-bg.jpg) no-repeat center;
    background-size: cover;
}

@media(max-width: 428px){
    .quick{
        height: 60vh;
    }
}

.blog-card {
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    border-radius: 10px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.blog-card img {
    transition: transform 0.3s, opacity 0.3s;
}

.blog-card:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.blog-card-body {
    padding: 25px;
}

.blog-card-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.contact-section {
    padding: 60px 0;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #333;
}

.contact-section .lead {
    color: #666;
}

.contact-card {
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    border-radius: 5px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}

.btn-submit {
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #0056b3;
}

.rounded-20 {
    border-radius: 20px !important;
}

/* ABOUT  */
/* E PAPER */
#loading-indicator {
    font-size: 1.5em;
    text-align: center;
    font-weight: bold;
    color: #555;
    margin-top: 20px;
}


/* E PAPER */
/* SERVICES */
.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #e3303329;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #e33033;
}

.service-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e33033;
}

.service-description {
    color: #6c757d;
}

/* SERVICES */