body {
    font-family: 'Rubik', sans-serif;
    overflow-x: hidden;
}

p {
    font-size: 18px;
}

.navbar {
    padding: 18px 0;
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
}

.navbar-brand {
    font-weight: 700;
    max-width: 150px;
    max-height: 60px;
    padding: 0;
}

.navbar-brand img {
    max-width: 100%;
    height: 100%;
}

.nav-link {
    margin: 0 10px;
    font-weight: 500;
}

.btn-chat {
    background: #ff2b55;
    color: #fff;
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 500;
}

.btn-chat:hover {
    background: #e31640;
    color: #fff;
}

.hero {
    max-height: calc(100vh - 90px);
    background-image: url('./hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    margin-top: 95px;
}

.hero-content {
    padding: 55px 0;
}

.hero h1 {
    color: #ff2b55;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero .dots {
    letter-spacing: 6px;
    color: #fff;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero ul {
    list-style: none;
    padding: 0;
}

.hero ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

.hero ul li::before {
    content: "●";
    color: #ff2b55;
    margin-right: 10px;
}

.btn-quote {
    margin-top: 25px;
    background: #ff2b55;
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-quote:hover {
    background: #e31640;
    color: #fff;
}

@media (max-width: 991px) {
    .hero {
        background: #f2b5c4;
    }
}

/* about section */
.product-category .product-img img {
    width: 500px;
    height: 300px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.productSwiper {
    padding-bottom: 40px;
}

.productSwiper .swiper-slide {
    width: 180px;
    text-align: center;
}

.productSwiper img {
    width: 100%;
    border-radius: 18px;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0 25px;
}

.divider span {
    color: #e63946;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ccc;
}

.contact-text {
    max-width: 720px;
    margin: auto;
    color: #666;
}


/* Association Section */
.association-section {
    padding: 80px 0;
    color: #fff;
    background: linear-gradient(120deg, #1f2a60, #8b2c3c);
}

.association-section h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.association-section p {
    max-width: 850px;
    margin: 0 auto 40px;
    font-size: 14px;
    letter-spacing: .5px;
}


/* associated section Slider */
.logo-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    height: 160px;
    padding: 20px;
}

.logo-card img {
    display: block;
    max-height: 140px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.logo-card::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1.5px dashed #ff2b55;
    border-radius: 12px;
    pointer-events: none;
}

.swiper-pagination-bullet {
    background: #ff2b55 !important;
    opacity: 0.6 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}


/* Social Follow Section */
.social-follow-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.social-follow-section::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(./social-banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-follow-section.active::before {
    opacity: 1;
}

.social-content {
    padding: 40px 60px;
}

.social-content .small-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.social-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.social-content p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
}

.social-icons {
    margin-top: 25px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 8px;
    background: #fff;
    color: #000;
    font-size: 22px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: #000;
    color: #fff;
}

/* why choose us section */
.why-choose-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.why-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}


/* footer section  */
.chat-support-heads {
    padding: 60px 0 30px;
    background: #fff;
}

.chat-support-heads h2 {
    font-size: 32px;
    font-weight: 700;
}

.chat-support-head {
    padding: 60px 0 30px;
    background: #fff;
    margin-top: 95px;
}

.chat-support-head h2 {
    font-size: 32px;
    font-weight: 700;
}

.chat-cta {
    background: #000;
    color: #fff;
    padding: 60px 0;
}

.chat-cta h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.chat-cta p {
    color: #ccc;
    max-width: 650px;
}

.footer-info {
    padding: 70px 0;
    background: #fff;
}

.footer-logo img {
    max-width: 160px;
    margin-bottom: 20px;
}

.footer-info h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-info p {
    font-size: 15px;
    color: #444;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
}

.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #111;
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 6px;
}

.copyright-bar {
    background: #000;
    padding: 14px 0;
    border-top: 1px solid #e5e5e5;
}

.copyright-bar p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

/* Our Product Cards Styles */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-features .badge {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.category-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-box {
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-3px);
}


/* About US Page Style */
.about-section {
    background-image: url(./Contact\ Us.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.about-section img {
    max-width: 100%;
    height: 340px;
}

@media (max-width: 968px) {
    .about-section img {
        height: auto;
    }
}

.contact-info .infos {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}


.contact-info .icon i {
    font-size: 38px;
    color: #ff2b55;
}