@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --red: #ff3333;
    --black: #1a1a1a;
    --navy: #000080;
    --white: #ffffff;
    --logoGradient: -webkit-linear-gradient(left, #e7516c, #1c2648);
}

body {
    font-family: "Lato", sans-serif;

}

p {
    font-family: "Inter", sans-serif;
    color: rgb(80, 80, 80);
}

.textwhiteP {
    color: #ffffff;
}

/* Navbar Styles */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 !important;
}

.navbar-expand-lg .navbar-collapse {
    display: flex !important;
    justify-content: center;
}

.navbar-brand img {
    height: 75px;
    margin: 10px;
}

.nav-link {
    color: var(--black);
    font-weight: 500;
    margin-right: 20px;
    transition: color 0.3s;
}

@media screen and (max-width:1080px) {
    .nav-link {
        color: var(--white);
    }

    .nav-link:hover {
        color: var(--white) !important;
    }
}

.nav-link:hover {
    color: var(--red) !important;
}

/* Hero Section */
.hero {
    background: -webkit-linear-gradient(left, #e7516c, #1c2648);
    min-height: 100vh;
    padding: 180px 0 100px 0;
    color: var(--white);
}

.gradient-text {
    background: -webkit-linear-gradient(left, #e7516c, #1c2648);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* Testimonial Slider */
.testimonials {
    background-color: var(--white);
    padding: 80px 0;
}

.swiper {
    padding: 40px 0;
}



/* Mobile Menu */
.offcanvas {
    background: var(--logoGradient);
}

.offcanvas-header,
.offcanvas-body {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}

p {
    font-size: 14px !important;
}

.service-card {
    background: white;
    transition: transform 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto;
}

.store-badge img {
    transition: transform 0.3s;
}

.store-badge:hover img {
    transform: scale(1.05);
}

.bg-pattern {
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    background-color: #f8f9fa;
}

.bg-overlay {
    background: linear-gradient(rgba(0, 0, 128, 0.9), rgba(0, 0, 0, 0.9)),
        url('https://img.freepik.com/free-photo/repairman-doing-air-conditioner-service_23-2149241213.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.app-screen {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    transition: transform 0.3s;
}

.app-screen:hover {
    transform: translateY(-10px);
}

.download-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('https://img.freepik.com/free-photo/male-electrician-works-switchboard-with-electrical-connecting-cable_169016-15204.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.floating-image {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.stat-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-card {
    background: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--red);
}

.why-choose-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.why-choose-card:hover {
    border-bottom-color: var(--red);
    transform: translateY(-5px);
}

.app-screen-section {
    /* background: linear-gradient(135deg, var(--navy) 0%, var(--black) 100%); */
    background: url('../images/app-sc-bg.png');
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.app-screen-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/app-sc-bg.png');
    opacity: 0.1;
}

.app-screen {
    border-radius: 30px;
    /* box-shadow: 0 30px 60px rgba(0,0,0,0.3); */
    transition: all 0.3s ease;
}

/* .app-screen:hover {
    transform: translateY(-15px) scale(1.05);
} */

.process-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-arrow {
    position: absolute;
    top: 30%;
    right: -15%;
    width: 30%;
    height: 2px;
    background: var(--red);
}

.process-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--red);
    border-right: 2px solid var(--red);
    transform: rotate(45deg);
}

.download-section {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
        url('https://img.freepik.com/free-photo/person-using-smart-home-app-smartphone_23-2149870963.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}




/* Swiper Container Styling */
.swiper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Slide Image Styling */
.swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.swiper-slide:hover img {
    transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
    background-color: rgba(255, 255, 255, 0.8) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    color: #d8160b !important;
    font-weight: bold;
}

.swiper-button-next {
    right: 10px !important;
}

.swiper-button-prev {
    left: 10px !important;
}


.swiper-pagination-bullet-active {
    opacity: var(--red) !important;
    background: rgb(255, 0, 0) !important;
}


.section-padding {
    padding: 80px 0 70px;
}








.app-screen-section .swiper-slide img {
    width: 100%;
    padding: 0px !important;
    height: auto !important;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}




/* Contact Section Background */
/* .contact {
    background: linear-gradient(135deg, #0a1930 0%, #122c52 100%);
} */

/* Contact Info Box */
.contact-info {
    background: #ffffff75;
    border-left: 5px solid #ff4d4d;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.contact-info:hover {
    transform: translateY(-5px);
}

/* Icons */
.contact .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(125deg, #ff4d4d, #1c2648);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px !important;
    transition: all 0.3s ease;
}



.icon-box:hover {
    background: linear-gradient(180deg, #ff4d4d, #1c2648);
}

/* Contact Form Styling */
.contact-form {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ccc;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #ff4d4d;
    box-shadow: 0 0 5px rgba(255, 77, 77, 0.5);
}

.footer {
    background: #f8f9fa;
    color: #333;
    padding: 20px;
    border-top: 3px solid #ff4c60;
}

.footer h5 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ff4c60;
}

.footer p {
    font-size: 16px;
    color: #666;
}

.footer a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer a:hover {
    color: #ff4c60;
}

.footer .social-icons a {
    font-size: 22px;
    margin-right: 12px;
    color: #555;
    transition: all 0.3s ease-in-out;
}

.footer .social-icons a:hover {
    color: #ff4c60;
    transform: scale(1.2);
}

.footer .app-buttons img {
    width: 140px;
    margin-top: 10px;
}

.footer .newsletter input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 10px;
}

.footer .newsletter button {
    background: #ff4c60;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.footer .newsletter button:hover {
    background: #e04354;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 15px;
    border-top: 1px solid #ddd;
    color: #666;
}


.footer img {
    height: 80px;
}


.footer-bootm {
    background-color: #1a1a1a;
    height: 50px;
    display: flex;

    align-items: center;
    justify-content: space-evenly;
}

@media screen and (max-width:576px) {
    .hero {
        padding: 140px 0 50px 0;
    }

    .service-card {
        padding: 0.5rem !important;
    }

    .service-card img {
        width: 70px !important;
        height: auto !important;
    }

    .service-card h6 {
        font-size: 14px;
    }

    .section-padding {
        padding: 40px 0 40px;
    }

    .footer-bootm {
        background-color: #1a1a1a;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-direction: column;
        padding: 20px;
        gap: 18px;
        border-radius: 9px;
        margin-bottom: 14px;
        height: auto;
    }

    .footer .innerSec {
        padding-bottom: 10px;
    }

    .contact h2 {
        text-align: left;
    }
}


.footer-bootm a {
    color: #ccc;
}


.app-scs {
    height: 450px;
    margin: 0 auto;
}

.gradientBtn {
    width: 100%;
    border: 2px solid;
    background: linear-gradient(45deg, #ff4d4d, #1c2648);
}

.serviceCardsSection {
    margin-bottom: 50px;
    border: 2px solid rgb(228, 228, 228);
    padding: 15px;
    border-radius: 10px
}

.serviceCardsSection h2 {
    font-weight: bold;
    text-transform: capitalize;
    margin-top: 10px;
    margin-bottom: 24px !important;
}

.contact-info h5 {
    color: var(--white);
}

.service-card img {
    width: 111px !important;
    background: #e3f3f7;
    padding: 9px;
    height: 111px;
    border-radius: 5px;
}