* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    max-width: 100vw;
    overflow-x: hidden;
    font-family: "Lato", sans-serif;
    background-color: #fff;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: black;
}

li {
    list-style: none;
}

.container {
    max-width: 90%;
    margin-inline: auto;
}

.text-center {
    text-align: center;
}

.paddingBlock {
    padding-block: 3rem;
}

/* ======================== */
/* ======== Navbar ======== */
/* ======================== */


.subHeader {
    /* background: linear-gradient(135deg, #0067b3, #00a3e0); */
    background-color: rgba(173, 216, 230, 0.4);
}

.subHeader-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 0.5rem;
}

.subHeader-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.subHeader-item a {
    color: #000;
    font-size: 0.75rem;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbarContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 0.75rem;
}

.navbar-list {
    display: flex;
    gap: 1.5rem;
}

.navbar-logo {
    width: 180px;
    height: auto;
}

.navbar-logo img {
    width: 100%;
    height: auto;
}

.navbar-item a {
    font-weight: 600;
}

.navbar-item a:hover {
    font-weight: 600;
    color: var(--primary-bgcolor);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* ======================== */
/* ===== Hero Section ===== */
/* ======================== */

.bannerSwiper {
    max-height: 75vh;
}

.bannerSwiper img {
    width: 100%;
    height: auto;
}


/* ========================= */
/* ==== Service Section ==== */
/* ========================= */

/* .services-list {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-self: start;
}

.service-item {
    display: flex;
    flex-direction: column;
    width: 18%;
    border-radius: 0.5rem;
    background: #f2f2f2;
    box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem 0.5rem 0 0;
}

.service-item-content {
    padding: 1rem;
}

.service-title {
    font-weight: 500;
}

.price-bookbtn {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.servicePrice {
    font-size: 1.1rem;
}

.servicePrice::before {
    content: "₹";
}

.servicePrice::after {
    content: "/-";
}

.serviceBookBtn {
    background-color: #00796b;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.serviceBookBtn:hover {
    background-color: #00695c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
} */

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header .service-title {
    color: #0067b3;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.services-header .service-title:after {
    content: "";
    position: absolute;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #0067b3, #4db1ff);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.subtitle {
    color: #555;
    font-size: 1.2rem;
    font-weight: 300;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    margin-top: 2rem;
}

.service-card {
    /* background: rgba(173, 216, 230, 0.4); */
    background: #f2f2f2;
    border-radius: 1rem;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 103, 179, 0.2);
}

.service-image {
    padding: 0.5rem;
    height: auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0.75rem 0.75rem 0 0;
}

.service-image::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.service-image::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -70px;
    right: -70px;
}

.service-badge {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: white;
    color: #0067b3;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.service-badge svg {
    width: 14px;
    height: 14px;
}

.service-content {
    padding: 1rem;
    text-align: center;
}

.service-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #0067b3;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 1rem 0;
}

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
}

.book-button {
    /* background: linear-gradient(90deg, #0067b3, #00a3e0); */
    background: #f8f8f8;
    color: #333;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 128, 179, 0.158);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.book-button:hover {
    background: #f9f9f9;
    box-shadow: 0 7px 20px rgba(0, 153, 179, 0.2);
}

/* ======================== */
/* ==== Addon Service ===== */
/* ======================== */

.addonService {
    padding-top: 3rem;
}

.addonserviceContainer {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.addonservice-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    /* border: 0.1px solid #f2f2f2; */
    min-width: 125px;
}

.addonservice-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.addonserviceImg {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(142, 172, 184, 0.253);
}

.addonserviceImg img {
    width: 2.5rem;
    height: auto;
}

.addonservice-box h3 {
    font-size: 1rem;
    font-weight: 500;
}

/* ========================= */
/* === Shop By Category ==== */
/* ========================= */

.shopByCategorySwiper {
    padding-top: 3rem;
}

.category-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    width: 7rem;
}

.category-item img {
    border-radius: 0.75rem;
    height: auto;
    width: 100%;
    background: rgba(173, 216, 230, 0.4);
}

.category-item h3 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
}

/* ========================= */
/*  Latest Featured Product  */
/* ========================= */

.latestFeaturedProductsSwiper,
.recentViewsSwiper {
    padding-top: 3rem;
}

.featuredTabs {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.featuredTab {
    background: linear-gradient(to top, rgb(255 143 8), rgb(248 167 37));
    border-radius: 1rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem 1.5rem;
    transition: all 250ms;
    border: none;
    outline: none;
    font-size: 1rem;
}

.featuredTab:hover {
    transform: scale(1.05) rotate(-1deg);
}

.featuredTab.active {
    background:#116466;
    color:#fff;
}

.product-card {
    min-height:357px;
    max-width: 250px;
    /* background: rgba(173, 216, 230, 0.4); */
    background: #f2f2f2;
    border-radius: 1rem;
    overflow: hidden;
    padding: 0.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);*/
}

.product-image {
    position: relative;
    height: auto;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem 1rem 0 0;
}

.product-image img {
    max-width: 100%;
    height: 10rem;
    border-radius: 1rem 1rem 0 0;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.premium-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #d4af37, #f9f095);
    color: #333;
    padding: 5px 12px;
    border-radius: 1.25rem;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-info {
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    height: 190px;
}

.product-title {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-specs {
    display: flex;
    margin: 0.75rem 0;
    gap: 0.75rem;
}

.product-specs .spec {
    background-color: #f0f7ff;
    border-radius: 8px;
    padding: 5px 8px;
    font-size: 0.75rem;
    color: #0069c0;
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: center;
    /* margin-top: 16px; */
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
    justify-content: space-between;
}

.price-currency {
    font-size: 1rem;
    margin-right: 2px;
    font-weight: 600;
    color: #333;
}

.price-currency::before {
    content: "₹";
    font-size: 1rem;
}

.brand {
    font-size: 14px;
    text-align: center;
    color: #666;
    padding-block: 0.25rem;
    border-block: 0.01px solid rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.btn-view {
    padding: 8px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-color: #0069c0;
    color: white;
    font-size:0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-view:hover {
    background-color: #005cb3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.icon {
    width: 20px;
    height: 20px;
}

/* ============ Slider ============= */

.swiper-slide {
    width: 100%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
}

.swiper-button-prev,
.swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    height: 2.5rem;
    width: 2.5rem;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background-color: rgba(0, 0, 255, 0.4);
    z-index: 2;
}

.swiper-button-prev {
    left: -0.75rem;
}

.swiper-button-next {
    right: -0.75rem;
}

/* ========================= */
/* === Recent View Tabs ==== */
/* ========================= */


.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.tab {
    width: 33%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: #7f8c8d;
    position: relative;
    transition: all 0.3s ease;
}

.tab.active {
    color: #3498db;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3498db;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}



/* ========================= */
/* ==== Our Clients Tabs === */
/* ========================= */

.clientsImgs {
    background-color: rgba(173, 216, 230, 0.4);
    /* background-color: #f2f2f2; */
    padding: 2rem;
    border-radius: 1rem;
}

.clientsImg img{
    width: 100%;
    height: auto;
}


/* ========================= */
/* === Featured Container == */
/* ========================= */

.whyChoose .features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.whyChoose .feature-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 4px solid #0088cc;
}

.whyChoose .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.whyChoose .feature-icon img {
    width: 40px;
    height: 40px;
}

.whyChoose .feature-text {
    color: #333;
    line-height: 1.5;
    font-size: 1.05em;
}

.whyChoose .feature-title {
    font-weight: 600;
    margin-bottom: 2px;
    color: #0088cc;
}



/* ========================= */
/* ====== CTA Section ====== */
/* ========================= */


.cta-section {
    margin-top: 1rem;
    background: linear-gradient(135deg, #0067b3, #00a3e0);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 103, 179, 0.2);
}

.cta-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.contact-button {
    background: white;
    color: #0067b3;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-button:hover {
    background: #f2f2f2;
    transform: translateY(-3px);
}


/* ========================= */
/* ==== Mobile App Tabs ==== */
/* ========================= */

.app-section {
    background: rgba(173, 216, 230, 0.4);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 103, 179, 0.1);
    display: flex;
    flex-direction: row;
}

.app-visual {
    flex: 1;
    background: linear-gradient(135deg, #0067b3, #00a3e0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.app-visual::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    left: -150px;
}

.app-visual::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
}

.person-image {
    position: absolute;
    height: 85%;
    left: 1rem;
    bottom: 0;
    z-index: 1;
}

.phone-container {
    position: relative;
    margin-left: 8rem;
    z-index: 2;
}

.phone-frame {
    height: 540px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 2rem;
}

.app-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-title {
    color: #ff8c00;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.app-subtitle {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #333;
}

.feature-icon {
    color: #ff8c00;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.app-store-btn {
    display: inline-block;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.app-store-btn:hover {
    transform: translateY(-5px);
}

.app-store-img {
    width: 100%;
    height: auto;
}


/* ========================= */
/* ==== Customer Review ==== */
/* ========================= */

.testimonials-grid {
    margin-top: 2rem;
}

.testimonial-card {
    background: #f2f2f2;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 103, 179, 0.12);
}

.testimonial-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0067b3, #ff8c00);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.user-info {
    flex-grow: 1;
}

.user-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.review-date {
    color: #777;
    font-size: 0.9rem;
}

.rating {
    color: #ff8c00;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.stars {
    display: flex;
    margin-right: 0.5rem;
}

.testimonial-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verified-badge {
    background: rgba(0, 103, 179, 0.1);
    color: #0067b3;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(0, 103, 179, 0.1);
    font-size: 2rem;
}

.highlight {
    background: linear-gradient(120deg, rgba(255, 140, 0, 0.2), rgba(255, 140, 0, 0.1));
    border-left: 4px solid #ff8c00;
    padding: 0.3rem 0.8rem;
    margin: 0.5rem 0;
    border-radius: 0 4px 4px 0;
}


/* ========================= */
/* ==== Footer Content ===== */
/* ========================= */

.footerSection {
    background: #116466;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-about h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    margin-top: 15px;
    display: flex;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background-color: #2980b9;
    color: #ffffff;
    margin-right: 10px;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links {
    justify-self: center;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    gap: 0.75rem;
}

.footer-links ul li a,
.footer-contact ul li a {
    color: #eee;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: #fff;
    padding-left: 0.5rem;
}

.footer-contact ul li i {
    margin-right: 8px;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
    text-align: center;
}

.footer-bottom a {
    color: #00C6A9;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.subscribe {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.subscribe input {
    padding: 10px;
    border: none;
    border-radius: 4px;
    outline: none;
}

.subscribe button {
    background-color: #fff;
    border: none;
    color: #116466;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.subscribe button:hover {
    background-color: #00B39A;
    color: #fff;
}


/* ========================= */
/* == Sub Footer Content === */
/* ========================= */

.subFooter .container div {
    margin-block: 1rem;
}

.subFooter h5, .subFooter h5 a{
    font-size: 1rem;
    color: #116466;
}

.subFooter p {
    font-size: 0.8rem;
    color: #444;
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
}