﻿:root {
    --bs-purple: #802f80;
    --bs-purple-700: #802f80;
    --bs-gray: #606060;
    --bs-dark: #222326;
    --bs-light: #F7F5FA;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(90, 56, 144, .15);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--bs-dark);
    background: #fff;
    line-height: 1.65;
}

h1, h2, h3 {
    margin: 0 0 .5rem;
}

h1 {
    font: 700 clamp(2.1rem, 3.6vw, 3.2rem)/1.06 Nunito, system-ui;
}

p {
    margin: .25rem 0 .85rem;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1200px, 92vw);
    margin-inline: auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* FIXED: Header container for logo positioning */
header .container.nav {
    width: 100%;
    max-width: none;
    padding: 0 20px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* FIXED: Brand positioning with bottom spacing */
.brand {
    margin-right: auto;
    margin-left: 0;
    padding-left: 0;
    padding-bottom: 8px; /* Added bottom spacing */
    margin-bottom: 8px; /* Added bottom spacing */
}

/* FIXED: Logo positioning with bottom spacing */
.brand img.logo-img {
    margin-left: 0;
    padding-left: 0;
    margin-top: 4px; /* Added bottom spacing */
    padding-top: 4px; /* Added bottom spacing */
}

@media (max-width: 992px) {
    .brand {
        margin-right: 0;
        padding-top: 2px; /* Adjusted for mobile */
        margin-top: 2px; /* Adjusted for mobile */
    }

    .logo-img {
        max-width: 150px;
        height: auto;
        margin-top: 2px; /* Adjusted for mobile */
        padding-top: 2px; /* Adjusted for mobile */
    }
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-right: auto;
}

.wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.wordmark .be-scent {
    font: 800 30px/1 Nunito, system-ui;
    letter-spacing: .3px;
    color: var(--bs-gray);
}

.wordmark .sub {
    font: 700 14px/1.1 Comfortaa, system-ui;
    color: var(--bs-purple);
}

.navlinks {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-left: auto;
}

.navlinks a {
    font-weight: 600;
    color: #3a3246;
    transition: color 0.3s ease;
}

.navlinks a:hover {
    color: var(--bs-purple);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .2s transform, .3s box-shadow;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--bs-purple);
    color: #fff;
}

.btn-ghost {
    border-color: #e7e1f5;
    color: var(--bs-purple);
}

.btn-highlight {
    background: linear-gradient(135deg, #F06292, #FF8A80);
    color: #fff;
    padding: 0.9rem 1.3rem;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    animation: pulse-highlight 2s infinite ease-in-out;
}

@keyframes pulse-highlight {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 98, 146, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(240, 98, 146, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(240, 98, 146, 0);
    }
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0;
    font-weight: 600;
    color: #3a3246;
    transition: color 0.3s ease;
    position: relative;
}

.dropbtn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn {
    color: var(--bs-purple);
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(90, 56, 144, .2);
    border-radius: 12px;
    padding: 0.5rem 0;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    color: #3a3246;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-content a i {
    font-size: 1rem;
    color: var(--bs-purple);
    width: 20px;
    text-align: center;
}

.dropdown-content a:hover {
    background: #f9f5ff;
    color: var(--bs-purple);
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    .dropdown {
        width: 100%;
    }

    .dropbtn {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        width: 100%;
        min-width: auto;
        display: none;
        opacity: 1;
        transform: none;
        padding-left: 1rem;
        background: #f9f9f9;
        border-radius: 0;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
    color: var(--bs-purple);
    transform: scale(1.2);
}

footer .social-icons a {
    color: #d6d0de;
}

footer .social-icons a:hover {
    color: #fff;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: white;
    font-size: 20px;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

.step-icon {
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .benefits-grid, .steps-container, .industries-grid, .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .benefits-grid, .steps-container, .industries-grid, .pricing-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Premium Hero Section */
.hero {
    background: linear-gradient(135deg, #f9f5ff, #f0e9f9);
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero .wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    height: 100vh;
    min-height: 700px;
}

/* Carousel styling */
.hero .carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero .carousel-inner {
    height: 100%;
}

.hero .carousel-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .carousel-item img {
    width: 65%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-left: 0;
    filter: brightness(0.95);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.hero .carousel-item.active img {
    transform: scale(1.02);
    filter: brightness(1);
}

/* Text on left side, 35% width */
.hero .carousel-caption {
    width: 35%;
    position: static;
    text-align: left;
    color: #000;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 100%);
    z-index: 2;
}

.hero .carousel-caption h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(2.1rem, 4.1vw, 2.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2a1a3a;
    background: linear-gradient(90deg, #6a33a8, #802f80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero .carousel-caption p {
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    margin-bottom: 2rem;
    color: #5a4a6a;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero .carousel-caption .btn-primary {
    font-size: clamp(0.8rem, 1.2vw, 1.03rem);
    padding: 1rem 1.8rem;
    align-self: flex-start;
    background: linear-gradient(135deg, #802f80, #6a33a8);
    color: #fff;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(128, 47, 128, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s, box-shadow 0.3s ease;
}

.hero .carousel-caption .btn-primary:hover {
    background: linear-gradient(135deg, #6a33a8, #802f80);
    box-shadow: 0 6px 25px rgba(128, 47, 128, 0.4);
    transform: translateY(-1px) scale(1.02);
}

.hero .carousel-item.active .carousel-caption h2,
.hero .carousel-item.active .carousel-caption p,
.hero .carousel-item.active .carousel-caption .btn-primary {
    opacity: 1;
    transform: translateY(0);
}

/* Indicators */
.hero .carousel-indicators {
    position: static;
    display: flex;
    gap: 10px;
    margin: 2rem 0 0;
    justify-content: flex-start;
    z-index: 15;
}

.hero .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d0c0e0;
    opacity: 0.8;
    border: none;
    margin: 0;
    transition: all 0.3s ease;
}

.hero .carousel-indicators .active {
    opacity: 1;
    background-color: #802f80;
    transform: scale(1.3);
}

/* Navigation arrows */
.hero .carousel-control-prev,
.hero .carousel-control-next {
    display: flex;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
    z-index: 10;
}

.hero .carousel-control-prev {
    left: 20px;
}

.hero .carousel-control-next {
    right: 20px;
}

.hero:hover .carousel-control-prev,
.hero:hover .carousel-control-next {
    opacity: 1;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    background: #fff;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 24px;
    filter: invert(20%) sepia(15%) saturate(2000%) hue-rotate(250deg) brightness(90%) contrast(80%);
}

/* Responsive adjustments for hero section */
@media (max-width: 1200px) {
    .hero .carousel-caption {
        width: 35%;
        padding: 0 30px;
    }

    .hero .carousel-item img {
        width: 65%;
    }
}

@media (max-width: 992px) {
    .hero .carousel-caption {
        width: 40%;
        padding: 0 25px;
    }

    .hero .carousel-item img {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .hero .wrap {
        min-height: 600px;
    }

    .hero .carousel-item {
        flex-direction: column;
    }

    .hero .carousel-item img,
    .hero .carousel-caption {
        width: 100%;
        height: 50%;
    }

    .hero .carousel-caption {
        padding: 30px;
        background: rgba(255, 255, 255, 0.95);
        justify-content: flex-start;
    }

    .hero .carousel-indicators {
        justify-content: center;
        margin: 1.5rem 0 0;
    }

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 50px;
        height: 50px;
        opacity: 1;
        background: rgba(255, 255, 255, 0.7);
    }
}

@media (max-width: 576px) {
    .hero .wrap {
        min-height: auto;
        height: auto;
    }

    .hero .carousel-item {
        flex-direction: column-reverse;
    }

    .hero .carousel-item img,
    .hero .carousel-caption {
        width: 100%;
        height: auto;
    }

    .hero .carousel-item img {
        height: 40vh;
    }

    .hero .carousel-caption {
        padding: 20px;
        height: auto;
    }

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 40px;
        height: 40px;
        opacity: 1;
    }

    .hero .carousel-control-prev {
        left: 10px;
    }

    .hero .carousel-control-next {
        right: 10px;
    }

    .hero .carousel-control-prev-icon,
    .hero .carousel-control-next-icon {
        width: 20px;
        height: 20px;
        background-size: 20px;
    }
}

/* Animation for the hero section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    padding: 48px 0;
}

.grid {
    display: grid;
    gap: 1.25rem;
}

.grid.cols-4 {
    grid-template-columns: repeat(4,1fr);
}

.grid.cols-3 {
    grid-template-columns: repeat(3,1fr);
}

@media (max-width:960px) {
    .grid.cols-4 {
        grid-template-columns: repeat(2,1fr);
    }

    .grid.cols-3 {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:560px) {
    .grid.cols-4, .grid.cols-3 {
        grid-template-columns: 1fr;
    }
}

.products-container {
    overflow-x: hidden;
    display: flex;
    gap: 1.25rem;
    padding: 0 1rem 1rem;
    position: relative;
    scroll-behavior: smooth;
}

.products-container .card.product {
    flex: 0 0 240px;
    transition: transform 0.3s ease;
}

.products-container .card.product:hover {
    transform: scale(1.02);
}

.products-container::before,
.products-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 1;
    pointer-events: none;
}

.products-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.products-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bs-purple);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: 1.2rem;
}

.scroll-arrow:hover {
    background: #692ea3;
    transform: translateY(-50%) scale(1.1);
}

.scroll-arrow.left {
    left: -20px;
}

.scroll-arrow.right {
    right: -20px;
}

.card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 6px 16px rgba(0,0,0,.04);
}

.category-card h2 {
    font-weight: 600;
    color: #000;
    margin: 0;
}

.product {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.product h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bs-dark);
}

.product .img {
    height: 200px;
    border-radius: 14px;
    background: #fbfaff;
    display: grid;
    place-items: center;
    position: relative;
}

.pill {
    display: inline-block;
    padding: .25rem .6rem;
    border-radius: 999px;
    background: #f1ecfb;
    color: var(--bs-purple-700);
    font-size: .75rem;
    font-weight: 700;
}

.price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-purple);
}

.category-card {
    background: #F0E9F9;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.category-card i {
    font-size: 60px;
    color: #802f80;
}

.category-card h2 {
    font-size: 1.50rem;
    font-weight: 600;
    color: var(--bs-dark);
    margin: 0;
}

.shop-btn {
    background: #802f80;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .3s ease;
}

.shop-btn:hover {
    background: #692ea3;
}

#about-brand {
    background: var(--bs-light);
}

#about-brand h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--bs-purple);
    margin-bottom: 1rem;
}

#about-brand p {
    font-size: 1rem;
    line-height: 1.75;
}

#about-brand .highlights {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    margin-top: 1rem;
}

#about-brand .highlights .card {
    border-color: #efe7ff;
    background: #fff;
}

@media (max-width: 900px) {
    #about-brand .highlights {
        grid-template-columns: 1fr;
    }
}

#certifications {
    padding: 48px 0;
}

#certifications h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--bs-purple);
    margin-bottom: 1rem;
    text-align: center;
}

#certifications p {
    font-size: 20px;
    color: var(--bs-gray);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.certifications-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    justify-items: center;
}

.certification-card {
    background: #fff;
    border: 1px solid #efe7ff;
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,.04);
    transition: transform 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
}

.certification-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.certification-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--bs-dark);
    margin-bottom: 0.5rem;
}

.certification-card p {
    font-size: 0.9rem;
    color: var(--bs-gray);
    margin: 0;
}

/* Catalogue Section */
.catalogue-section {
    background: #f7f5fa;
    padding: 60px 0;
}

.catalogue-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.catalogue-text {
    flex: 1;
    min-width: 280px;
}

.catalogue-text .subtitle {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--bs-gray);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.catalogue-text .title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bs-purple);
    margin-bottom: 1rem;
}

.catalogue-text .desc {
    color: var(--bs-gray);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.catalogue-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.catalogue-image img {
    max-width: 500px;
    width: 100%;
    transition: transform 0.3s ease;
}

.catalogue-image img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .catalogue-container {
        flex-direction: column;
        text-align: center;
    }

    .catalogue-text {
        margin-bottom: 2rem;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    animation: fadeInUp 0.3s ease;
}

.modal-content h3 {
    margin-bottom: 0.5rem;
    color: var(--bs-purple);
    font-size: 1.6rem;
}

.modal-content p {
    color: var(--bs-gray);
    margin-bottom: 1rem;
}

.modal-content input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.modal-content input:focus {
    border-color: var(--bs-purple);
    outline: none;
}

.modal-content .btn {
    width: 100%;
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .certifications-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .certifications-container {
        grid-template-columns: 1fr;
    }
}

#our-clients {
    background: #fff;
    padding: 48px 0;
}

#our-clients h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--bs-purple);
    margin-bottom: 1rem;
    text-align: center;
}

#our-clients p {
    font-size: 20px;
    color: var(--bs-gray);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.clients-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    row-gap: 2rem;
    justify-items: center;
    align-items: start;
    margin-top: 2rem;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-align: center;
    min-height: 120px;
    transition: all 0.3s ease;
}

.client-logo i {
    width: 90px;
    height: 90px;
    background: #f7f5fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--bs-purple);
    transition: all 0.3s ease;
    border: 1px solid #efe7ff;
}

.client-logo:hover i {
    background: var(--bs-purple);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.client-logo span {
    font-size: 16px;
    font-weight: 550;
    color: var(--bs-gray);
    line-height: 1.4;
}

/* Featured Products Section */
#shop {
    padding: 60px 0;
}

.subtitle {
    color: var(--bs-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.card.product {
    text-align: center;
    background: #fff;
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card.product:hover {
    transform: translateY(-5px);
}

.card.product .img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 210px;
    border-radius: 12px;
    background: #fbfaff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card.product .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.card.product .img img:hover {
    transform: scale(1.05);
}

.card.product h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.card.product .price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-purple);
    margin-bottom: 1rem;
}

.card.product .btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid #eee;
    border-radius: 8px;
}

.card.product .img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 210px;
    border-radius: 12px;
    background: #fbfaff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card.product .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.card.product .img .hover {
    opacity: 0;
}

.card.product .img:hover .hover {
    opacity: 1;
}

.card.product .img:hover .default {
    opacity: 0;
}

@media (max-width: 960px) {
    .clients-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
}

@media (max-width: 560px) {
    .clients-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

#rental-services {
    background: var(--bs-light);
    padding: 48px 0;
}

#rental-services h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--bs-purple);
    margin-bottom: 1rem;
    text-align: center;
}

#rental-services p {
    font-size: 1rem;
    color: var(--bs-gray);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

#rental-services .rental-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

#rental-services .rental-card {
    background: #fff;
    border: 1px solid #efe7ff;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,.04);
    max-width: 600px;
    margin: 0 auto;
}

#rental-services .rental-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bs-dark);
    margin-bottom: 1rem;
}

#rental-services .rental-card p {
    font-size: 1rem;
    color: var(--bs-gray);
    margin: 0 0 1rem;
}

#rental-services .btn-primary {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
}

@media (max-width: 560px) {
    #rental-services .rental-card {
        padding: 16px;
    }
}

.usps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
}

.usp {
    display: flex;
    gap: .8rem;
    align-items: center;
    padding: 14px 16px;
    border-radius: 14px;
    background: #faf7ff;
    border: 1px solid #efe7ff;
}

@media (max-width:900px) {
    .usps {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:520px) {
    .usps {
        grid-template-columns: 1fr;
    }
}

footer {
    margin-top: 32px;
    background: #141116;
    color: #d6d0de;
    padding: 40px 0;
}

.footgrid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3,1fr);
    gap: 1.5rem;
}

@media (max-width:900px) {
    .footgrid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .footgrid {
        grid-template-columns: 1fr;
    }
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: #d6d0de;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #fff;
}

footer p {
    color: #d6d0de;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

footer p a {
    color: #d6d0de;
    transition: color 0.3s ease;
}

footer p a:hover {
    color: #fff;
}

.copyright {
    margin-top: 18px;
    font-size: .9rem;
    color: #9f95ac;
}

.toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: #1f1a25;
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    transition: .35s ease;
    box-shadow: var(--shadow);
}

.toast.show {
    opacity: 1;
    transform: translateY(-6px);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.whatsapp-float i {
    font-size: 38px;
    line-height: 1;
}

.logo-img {
    width: 180px;
    height: auto;
    display: block;
}

/* Mobile Menu Toggle Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--bs-purple);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .navlinks {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 99;
    }

    .navlinks.active {
        right: 0;
    }

    .navlinks a {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        width: 100%;
        opacity: 1;
        transform: none;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .social-icons {
        margin-top: 20px;
        justify-content: center;
        width: 100%;
    }
}

/* Hero Slider Mobile Adjustments */
@media (max-width: 768px) {
    .hero .carousel-item img {
        height: 40vh;
        object-fit: cover;
    }

    .hero .carousel-caption {
        padding: 20px;
        height: auto;
        background: rgba(255, 255, 255, 0.95);
    }

    .hero .carousel-caption h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero .carousel-caption p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero .carousel-caption .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .hero .carousel-indicators {
        margin-top: 1rem;
    }
}

/* Make sure dropdown arrows are visible on mobile */
.dropbtn::after {
    display: inline-block;
}

/* Active state for menu toggle */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}