* {
    font-family: "Poppins", sans-serif;
    color: #1E293B;
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}

h1,
h2,
h3 {
    color: #0F172A;
}

#navbar {
    background-color: #DBEAFE !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.186);
}

body {
    margin: 0;
    padding: 0;
    background-color: #EFF6FF;
}

.link-col:hover {
    color: black;
    text-decoration: underline black;
}

.info-call-address {
    margin-top: 70px;
    display: flex;
    justify-content: space-evenly;
}

.container {
    margin-top: 50px;
}
#hero{
    padding-top: 2rem;
}

.hero {
    background-image: url("./assets/hero.png");
    background-size: cover;
}

.hero i {
    color: white;
}

.hero-card-body {
    padding: 8rem 2rem;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-card {
    box-shadow: 2px 2px 5px gray;
    transition: 0.3s ease-in-out;
}


.hero-card:hover {
    box-shadow: 5px 5px 8px gray;
}

#pricing i {
    color: white;
}

.price-container {
    margin-bottom: 50px;
}

.price-card {
    box-shadow: 2px 2px 4px gray;
    transition: 0.3s ease;
}

.img-wrapper {
    height: 280px;
    display: flex;
    align-items: flex-end; 
    justify-content: center;
}

.img-wrapper img {
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.price-card div p i {
    color: #1E293B !important;
}

.price-card:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 8px gray;
}

#brands {
    background: radial-gradient(circle, #13274F 0%, #0A192F 100%);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

#brands,#brands h2,#brands h4,#brands p,#brands b {
    color: white !important;
}

.brand-container {
    margin-top: 4rem;
    display: flex;
    justify-content: space-evenly;
}

.brand-container p {
    font-size: 30px;
    color: white !important;
    letter-spacing: 1px;

    padding: 12px 25px;
    border-bottom: 3px solid #14B8A6;
    transition: 0.3s ease;
}

.brand-container p:hover {
    transform: translateY(-3px);
}

#services {
    background: white;
    padding: 50px 0;
    margin-top: 60px;
    margin-bottom: 60px;
    background:url("./assets/service.png");
    background-size: cover;
}

.service-tip i {
    color: #116a60;
    font-size: 32px;
    margin-bottom: 10px;
}

.service-tip {
    padding: 20px;
}

.service-tip p {
    max-width: 300px;
    margin: auto;
}

h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.1rem;
    background: #14B8A6;
    margin-top: 12px;
}

h2 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 10px;
}

.choose-bg {
    background-color: #ffffff;
    padding: 40px 0;
}
#choose {
    background:url("./assets/choose-us.png");
    background-size: cover;
}

.about-bg {
    background-image: url("./assets/about.png");
    background-size: cover;

}

#carouselExample .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.choose-card {
    height: 150px;
    box-shadow: 2px 2px 4px gray;
    margin: 0 auto !important;
    transition: 0.3s ease;
    background-color: #EFF6FF;
}

.choose-card:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 8px gray;
}

.contact-container {
    display: flex;
    justify-content: center;
}

.left-contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.left-contact h2 {
    padding-bottom: 2rem;
}


.contact-details {
    border: 1px solid gray;
    border-radius: 3px;
    padding: 8px;
    margin: 16px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-image: url("./assets/footer1.png");
    background-size: cover;
}

footer .quicklinks h2 {
    color: white;
}

footer .copy-right {
    color: white;
}

footer a {
    font-family: "Poppins", sans-serif !important;
    color: #CBD5E1 !important;

}

footer a:hover {
    color: white !important;
    text-decoration: underline white !important;
}

footer div {
    margin: 40px;
}

/* --- Custom Google Reviews Styles (Added Without Changing Anything Else) --- */
.review-card {
    border: none;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.review-stars {
    color: #FBBF24;
    /* Beautiful Gold/Yellow Star color */
    font-size: 1.1rem;
}

.review-cta h2 {
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width:1199px) {
    .hero-card-body {
        padding: 4rem 1.5rem;
    }
}

@media (max-width:992px) {

    .hero-card-body {
        padding: 1.5rem 1.5rem;
    }

    .info-call-address {
        flex-wrap: wrap;
    }

    .info-call-address .info-elem {
        padding: 2rem;
    }

    .brand-container {
        flex-wrap: wrap;
    }

    .contact-container {
        flex-wrap: wrap;
    }

    footer {
        flex-wrap: wrap;
    }
}

@media (max-width:695px) {

    .info-call-address {
        display: none;
    }
    .container {
        text-align: center;
    }

    .hero-card-body h1 {
        font-size: 25px;
    }

    h2 {
        font-size: 35px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {

    .info-call-address {
        display: none;
    }

    .hero-card-body {
        padding: 1.5rem !important;
    }

    .hero-card-body h1 {
        font-size: 2rem;
    }

    .hero-card-body h4 {
        font-size: 1.2rem;
    }

    .hero-card-body p {
        font-size: 0.9rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    #carouselExample .carousel-item img {
        height: 300px;
    }

    .choose-card {
        height: auto;
        min-height: 140px;
    }
}

.carousel-img {
    object-fit: cover;
}
