/* Import Fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* CSS ROOT */


:root {
    --red: #E30512;
    --white: #fff;
    --black: #000;
    --light-black: #1E1E19;
    --grey: #848484
}

/* Typography */

p,
a,
button {
    font-family: "Poppins", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", serif !important;
}

h1 {
    font-size: 2.77em;
    font-weight: 800;
}

h2 {
    font-size: 2.44rem;
    font-weight: 700;
}


/* Topbar start  */
.top-bar {
    background: var(--red);
    height: 40px;
    display: flex;
    align-items: center;
}

/* Topbar end  */


/* Navbar Starts  */

.navbar {
    background: var(--white);
}

.navbar ul li {
    margin-right: 40px;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
}

.navbar ul li a {
    text-transform: uppercase;
    color: var(--light-black) !important;
}

.navbar ul li a.active {
    color: var(--red) !important;
}

.nav-link {
    position: relative;
    text-decoration: none;
    /* Remove default underline */
    color: inherit;
    /* Keeps the default link color */
}

.nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    /* Adjust height of the underline */
    background-color: currentColor;
    /* Use the link color for the underline */
    transition: width 0.7s ease;
    /* Smooth transition */
    width: 100%;
    /* Makes the underline appear full width */
}

.nav-link:hover {
    color: var(--red);
    /* Change color on hover, optional */
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.7s ease;
    /* Smooth transition */
}

.navbar button.red-btn {
    border: 2px solid red;
    border-radius: 50px;
    padding: 8px 20px;
    color: var(--white);
    background-color: var(--red);
    font-weight: 600;
}

.navbar button.red-btn:hover {
    border: 2px solid red;
    border-radius: 50px;
    padding: 8px 20px;
    color: var(--red);
    background-color: var(--white);
    font-weight: 600;
}

.navbar .white-btn {
    border: 2px solid red;
    border-radius: 50px;
    padding: 8px 20px;
    color: var(--red);
    background-color: var(--white);
    font-weight: 600;
}

.navbar .white-btn:hover {
    border: 2px solid red;
    border-radius: 50px;
    padding: 8px 20px;
    color: var(--white);
    background-color: var(--red);
    font-weight: 600;
}

/* Narbar Ends  */


/* Banner Slider Starts  */

/* Make the slider full width */
.banner-slider {
    width: 100%;
    margin: 0;
    padding: 0;
}

#carouselExampleCaptions {
    width: 100%;
}

.banner-slider .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Ensures the image covers the entire area without being distorted */
}

.banner-slider .carousel-caption {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 10px;
    font-family: "Russo One", serif;
    font-weight: 300;
    background: rgba(0, 0, 0, 0.5);
}


/* Services/Categories Section */

.servicesservices {
    background-color: #f8f9fa;
    /* Light background for contrast */
}

.services .card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.services .icon {
    color: var(--red) !important;
    /* Premium blue tone for icons */
}

.services .card h5 {
    margin-top: 1rem;
    font-weight: 600;
    color: #333;
}

.services .card p {
    font-size: 0.9rem;
}


/* What We Do Section */



.what-we-do-section {
    background-color: var(--white);
    padding-top: 60px;
    padding-bottom: 60px;
}

.what-we-do-section h2 {
    color: var(--black);
}

.what-we-do-section h5 {
    font-size: 16px;
}

.what-we-do-section p.lead {
    color: var(--grey);
    font-size: 1.1rem;
}

.what-we-do-section .img-fluid {
    transition: transform 0.3s ease;
}

.what-we-do-section .img-fluid:hover {
    transform: scale(1.05);
}

.what-we-do-section .d-flex {
    display: flex;
    align-items: center;
}

.what-we-do-section .fa-3x {
    color: var(--red);
}

.what-we-do-section .fw-bold {
    font-weight: bold;
}

.what-we-do-section .text-muted {
    color: var(--grey);
}

@media (max-width: 768px) {
    .what-we-do-section h2 {
        font-size: 2rem;
    }

    .what-we-do-section p {
        font-size: 1rem;
    }
}



/* Stats Section */

.stats-section {
    background: #f5f5f5;
    padding-top: 6rem;
    padding-bottom: 6rem;
    margin: 5rem 0;
    position: relative;
}

.stats-section h2 {
    color: var(--black) !important;
}

.stats-section p {
    font-size: 1.2rem;
    color: var(--grey);
}

.stat-card {
    background-color: var(--black);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.card-overlay {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: background 0.3s ease;
}

.stat-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.stat-icon i {
    color: var(--red);
}

.stat-text h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-text p {
    font-size: 1rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .stats-section h2 {
        font-size: 2rem;
    }

    .stat-text h3 {
        font-size: 1.5rem;
    }
}


/* FAQ Section */


.faq-section {
    padding: 60px 0;
}

.faq-section .faq-title {
    color: var(--black);
    margin-bottom: 20px;
}

.faq-section .faq-description {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 40px;
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 15px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-section .accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    border: none;
    border-radius: 8px;
    padding: 20px;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--red);
    /* Accent color */
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

.faq-section .accordion-button::after {
    color: #fff;
    font-size: 1.2rem;
}

.faq-section .accordion-body {
    font-size: 1rem;
    color: #555;
    background-color: #fff;
    padding: 20px;
    border-top: 1px solid #ddd;
}


/* Testimonail Section */



.testimonial-section {
    padding: 6rem 0;
    margin: 6rem 0;
    background-color: #f9f9f9;
}

.testimonial-section .testimonial-title {
    color: var(--black);
    margin-bottom: 20px;
}

.testimonial-section .testimonial-description {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 40px;
}

.testimonial-section .carousel-item {
    opacity: 0;
    transition: opacity 0.1s ease;
    width: 100%;
}

.testimonial-section .carousel-item.active {
    opacity: 1;
    position: relative;
}


.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 1px 14px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    text-align: center;
}

.testimonial-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author .testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--red);
    /* Accent color */
}

.author-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.author-position {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.testimonial-section .carousel-control-prev-icon,
.testimonial-section .carousel-control-next-icon {
    background-color: var(--red);
    /* Accent color */
    border-radius: 50%;
    width: 40px;
    height: 40px;
}



/* ABOUT US PAGE CSS */


.about-us {
    background-color: #f7f7f7;
    color: #333;
    padding: 6rem 0;
    margin-bottom: 2rem;
}

.about-us .section-title {
    color: var(--black);
}

.about-us .about-description {
    font-size: 1rem;
    color: #555;
}

.about-us ul {
    padding-left: 0;
    list-style: none;
}

.about-us ul li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #333;
}

.about-us ul li i {
    font-size: 1.5rem;
    color: var(--red);
    margin-right: 0.5rem;
}

.why-choose-us h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--black);
}

.why-choose-us .icon-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-choose-us .icon-box:hover {
    transform: translateY(-10px);
}

.why-choose-us .icon-box {
    color: var(--red);
}

.why-choose-us .icon-box h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.why-choose-us .icon-box p {
    color: #666;
}


/* Contact Us Page CSS */

/* Contact Us Section */
.contact-us .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.contact-us .section-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-info-box {
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.contact-info-box ul {
    list-style: none;
    padding: 0;
}

.contact-info-box li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.contact-info-box i {
    color: #e74c3c;
    margin-right: 10px;
}

.contact-form-box {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form-box .form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 1rem;
    color: #333;
}

.contact-form-box .form-control:focus {
    border-color: #e74c3c;
    box-shadow: none;
}

.contact-form-box .btn-primary {
    background-color: #e74c3c;
    border: none;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.contact-form-box .btn-primary:hover {
    background-color: #d62c1a;
}

/* Services Page */

/* Services Section */
.services-page .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.services-page .section-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

.service-card {
    margin-bottom: 2.44rem;
    position: relative;
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.service-icon {
    position: relative;
    font-size: 1.44rem;
    color: #E30512;
    margin-top: -30px;
    margin-bottom: 10px;
    background: #fff;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
    border: 1px solid #E30512;
    transition: color 0.3s ease;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.service-price {
    font-size: 1rem;
    color: #E30512;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.service-preview-btn {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #E30512;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.service-preview-btn:hover {
    color: #fff !important;
    background-color: #d62c1a;
}

@media (max-width: 768px) {
    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.1rem;
    }
}


/* Footer Section Starts*/
.main-footer {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    border-radius: 20px;
    min-height: 400px;
    background-color: var(--light-black);
}

.main-footer .footer-row h2 {
    color: var(--white);
    font-size: 42px !important;
    font-weight: 400;
    line-height: 50px;
}

.main-footer .footer-row p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: var(--white);
    font-family: "Roboto", serif;
}

.main-footer .footer-row .social-icons {
    font-size: 30px;
    color: var(--red);
}

.main-footer .social-icons a {
    color: var(--red) !important;
    text-decoration: none !important;
}

.main-footer .footer-row form {
    border: 2px solid var(--grey);
    border-radius: 10px;
}

.main-footer .footer-row form input {
    background-color: var(--light-black) !important;
    border: none !important;
    outline: none;
}

.main-footer .footer-row form button {
    background-color: var(--red);
    /* red-like color */
    padding: 8px 25px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    /* border-radius: 40px; */
    border: 2px solid var(--red);
}

.main-footer .footer-row form button:hover {
    background-color: var(--light-black);
    border: 2px solid var(--red);
    color: var(--red);
}

/* Footer Section Ends*/


/* Utility Classes */
.txt-red {
    color: var(--red);
}

.txt-black {
    color: var(--black);
}

.card-img {
    object-fit: cover;
}



/* Mobile Responsive */


@media (max-width: 786px) {

    p,
    a {
        font-size: 13px !important;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 27px !important;
    }

    .w-50,
    .w-75 {
        width: 500px !important;
        max-width: 100% !important;
    }

    section {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .banner-slider .w-50 {
        width: 300px !important;
    }


    .banner-slider p {
        display: none;
    }


    /* Navbar */

    .navbar-brand img {
        width: 100px !important;
        height: 50px !important;
    }

}



.banner-slider img{
    height: 500px !important;
}