* {
    margin: 0;
    padding: 0;
}

.headers {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.swiper {
    width: auto;
    height: auto;

}


.swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.swiper-button-prev,
.swiper-button-next {
    color: #fff;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
}





.cardSwiper {
    width: 100%;
    margin: 0rem 0px;
    height: 38rem;

}

.card {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    height: 30rem;
    width: 350px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    /* padding: 1rem; */
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    /* margin: 0rem 20px; */
    margin-top: 40px;

}

/* Background Image */
.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.9;
}

/* Logo */
.card-logo {
    height: 100% !important;
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 2;
    border-radius: 50%;
    background: white;
    /* padding: 5px; */
}

/* Title */
.card-title {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 700;
    z-index: 2;
    font-family: "Roboto", sans-serif;
}

.product-heading {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #fab97f; */
    font-size: 30px;
    height: 10vh
}

.card-title {
    width: 94%;
    height: 50px;
    position: absolute;
    bottom: 0px;
    left: 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* background-color: #fab97f; */
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.card-title img {
    height: 30px;
    width: 30px;
    cursor: pointer;
}

.card-text-heading {
    width: 100%;
    height: 50px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 30px;
    z-index: 3;
    font-size: 1.3rem;
    font-family: "Roboto", sans-serif;
    font-weight: 1000;
    cursor: pointer;

}

.second-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
}


.about-section {
    padding: 4rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

/* IMAGE */
.about-image {
    flex: 1 1 45%;
}

.about-image img {
    width: 100%;
    height: 25rem;
    border-radius: 1rem;
    object-fit: contain;
}

/* TEXT */
.about-content {
    flex: 1 1 45%;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: justify;
}

.about-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    text-align: justify;
}

.about-btn {
    margin-top: 1rem;
    padding: 0.8rem 1.8rem;
    background: #333;
    color: #fff;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image,
    .about-content {
        flex: 1 1 100%;
    }

    .about-content h2 {
        font-size: 2rem;
    }
}


.banner {
    width: 100%;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    /* maintains full responsiveness */
    display: block;
    /* removes small gaps */
    object-fit: cover;
    /* ensures good cropping on all screens */
}



.custom-cards-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.custom-cards-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Single Card Styling */
.custom-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.custom-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.custom-card p {
    font-size: 1rem;
    color: #555;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .custom-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .custom-cards-container {
        grid-template-columns: 1fr;
    }
}

.custom-footer {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    box-sizing: border-box;
    font-family: sans-serif;
}

/* LEFT: Social Icons */
.footer-left .social-icon {
    margin-right: 1rem;
    text-decoration: none;
    color: #000000;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-left .social-icon:hover {
    color: #0077b5;
    /* LinkedIn blue for hover (example) */
}

/* CENTER: Logo */
.footer-center .footer-logo {
    height: 60px;
    width: auto;
}

/* RIGHT: Contact Info */
.footer-right p {
    margin: 0.2rem 0;
    text-align: right;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .custom-footer {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
    }

    .footer-right p {
        text-align: center;
    }

    .cardSwiper, .second-cards, .cardSwiper {
        display: none !important;
    }

    .product-heading {
        font-size: 25px;
        font-weight: bolder;
    }

    .about-content h2 {
        font-size: 25px;

    }
}

/* .swiper-wrapper {
    display: flex;
    align-items:flex-start;
    justify-content:space-evenly;
}


.swiper-slide{
    width:360px !important;
} */







@media (min-width: 600px) {
    .mobile-grid-container {
        display: none !important;
    }
}

.mobile-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 15px;
}

.mobile-card {
    height: 230px;
    border-radius: 14px;
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    position: relative;
}

.card-logo-img {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    margin-top: 10px;
    object-fit: contain;

}

.card-text-heading-mobile {
    position: absolute;
    width: 100%;
    top: 15px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
}

.mobile-buy {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    align-items: center;
    justify-content: end;
    transition: height 0.1s ease;
    overflow-y: hidden;
    padding: 5px;
}

.mobile-buy p {
    font-size: 13px;
    font-weight: bolder;
    cursor: pointer;
    width: 100px;
    border-radius: 5px;
    padding: 5px;
    outline: 1px solid #000;
}

.mobile-icons {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85); /* start small */
    opacity: 0; /* hidden */
    transition: opacity 0.25s ease, transform 0.25s ease;

    background-color: rgb(255, 255, 255);
    padding: 10px;
    z-index: 100;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    gap: 10px 10px;
}

/* When visible */
.mobile-icons.show {
    display: grid !important;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); /* pop in */
}


/* When only ONE icon exists → center it */
.mobile-icons:has(:only-child) {
    grid-template-columns: 1fr !important;
    justify-items: center;
}



.mobile-icons img {
    display: inline;
    width: 50px;
    margin: 0 0px;
    cursor: pointer;
    margin-bottom: 0px;
    object-fit: contain;
}

/* .mobile-buy:hover {
    height: 60px !important;
} */
/* .mobile-buy:hover .mobile-icons img {
    display: inline;
} */

/* .mobile-buy:hover .mobile-icons {
    display: grid;
} */