:root {
    /* === Primary Theme Colors === */
    --primary-color: #CC5803;
    --primary-color-dark: #b24a03;
    --primary-color-light: #E2711D;
    --accent-color: #FF8C42;
    --highlight-color: #FFD166;
    --text-on-primary: #ffffff;

    /* === Secondary / Gold Accents === */
    --gold-color: #ffd700;
    --gold-light: #ff9840;

    /* === Supporting Shades === */
    --footer-dark: #b24a03;
    --footer-light: #d36410;
    --marquee-start: #ff9840;
    --marquee-end: #ff6b6b;

    /* === Neutral / Backgrounds === */
    --black-overlay: rgba(0, 0, 0, 0.2);
    --white-overlay: rgba(255, 255, 255, 0.1);
    --white-overlay-strong: rgba(255, 255, 255, 0.3);
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
}

.font-jost {
    font-family: "Jost", sans-serif;
}

.section-head {
    margin-bottom: 3rem
}

.section-head h3 {
    color: #264a8a;
    font-size: 2.5rem;
}

.section-head p {
    font-size: 18px;
}

.scroll-wrapper {
    position: relative;
    width: 100%;
}

.flex-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    margin: 10px auto;
    /* padding-bottom: 6px;  */
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

.flex-container::-webkit-scrollbar {
    height: 6px;
}

.flex-container::-webkit-scrollbar-track {
    background: transparent;
}

.flex-container::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.flex-container:hover::-webkit-scrollbar-thumb {
    background-color: #6a86b7;
}

.flex-container:hover {
    scrollbar-color: #6a86b7 transparent;
}

.scroll-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 6px;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

.flex-container.dragging {
    cursor: grabbing;
    user-select: none;
}

.flex-container {
    cursor: grab;
}

/*

/* Header Top Section */
/* ==========================================================
   GLOBAL THEME VARIABLES
   ========================================================== */

/* ==========================================================
   HEADER TOP SECTION
   ========================================================== */
.header-top {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.header-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 235, 205, 0.2),
            var(--white-overlay),
            transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.header-contact i {
    font-size: 14px;
    color: var(--gold-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.header-contact a {
    color: var(--text-on-primary) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-contact a:hover {
    color: var(--gold-color) !important;
    transform: translateY(-1px);
}

/* ==========================================================
   MAIN HEADER
   ========================================================== */
.header {
    background: linear-gradient(313deg, var(--primary-color-dark) 0%, var(--footer-light) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.header-content {
    padding: 15px 0;
    position: relative;
    z-index: 2;
}

/* Logo Section */
.logo a {
    font-weight: 700;
    color: var(--text-on-primary);
    text-decoration: none;
    font-size: 1.5rem;
}

.logo img {
    max-height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Navigation */
.navbar {
    flex-grow: 1;
}

.navbar-nav {
    margin-left: auto;
}

.nav-link {
    color: var(--text-on-primary) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    margin: 0 5px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--white-overlay-strong), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: var(--white-overlay);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
    background: linear-gradient(90deg, var(--highlight-color), var(--accent-color));
    color: var(--footer-light) !important;
    font-weight: 600;
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
    background: var(--white-overlay);
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================
   SCROLLING TEXT SECTION
   ========================================================== */
.scrolling-text {
    background: linear-gradient(135deg, var(--marquee-start) 0%, var(--marquee-end) 100%);
    overflow: hidden;
    position: relative;
}

.scrolling-text::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, var(--white-overlay) 10px, var(--white-overlay) 20px);
    animation: stripes 20s linear infinite;
}

@keyframes stripes {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(40px);
    }
}

.marquee-text {
    color: var(--text-on-primary) !important;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: marqueeScroll 15s linear infinite;
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.scrolling-text a {
    text-decoration: none;
    display: block;
    position: relative;
    z-index: 2;
}

/* ==========================================================
   GLASS EFFECT & TRANSITIONS
   ========================================================== */
.glass-effect {
    background: var(--white-overlay);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================
   FOOTER SECTION
   ========================================================== */
.footer {
    background: linear-gradient(313deg, var(--footer-dark) 0%, var(--footer-light) 100%);
    color: var(--text-on-primary);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.footer-top {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Footer Logo */
.footer-about .logo {
    font-size: 2rem;
    color: var(--text-on-primary);
    text-decoration: none;
    font-weight: 700;
}

.footer-about .logo img {
    max-height: 60px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.footer-about .logo:hover img {
    transform: scale(1.05);
}

/* Contact Info */
.footer-contact p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.footer-contact strong {
    color: var(--gold-color);
    font-weight: 600;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-contact a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(45deg, var(--gold-color), var(--gold-light));
    transition: width 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold-color);
    transform: translateX(5px);
}

.footer-contact a:hover::after {
    width: 100%;
}

/* Footer Links */
.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, var(--marquee-end), var(--gold-color));
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.footer-links ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-light);
    width: 5px;
    height: 5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--gold-light);
    transition: all 0.3s ease;
}

.footer-links ul li:hover::before {
    transform: translate(50%, -50%);
    color: var(--gold-color);
}

.footer-links ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--gold-color);
    transform: translateX(5px);
}

/* Newsletter */
.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-newsletter h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, var(--marquee-end), var(--gold-color));
    border-radius: 2px;
}

.footer-newsletter p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--white-overlay);
    background: var(--white-overlay);
    color: var(--text-on-primary);
    border-radius: 25px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--gold-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.newsletter-form input[type="submit"] {
    padding: 12px 24px;
    background: linear-gradient(45deg, var(--marquee-end), var(--gold-color));
    color: var(--footer-light);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-form input[type="submit"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--white-overlay-strong), transparent);
    transition: left 0.5s ease;
}

.newsletter-form input[type="submit"]:hover::before {
    left: 100%;
}

.newsletter-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--white-overlay);
    color: var(--text-on-primary);
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: linear-gradient(45deg, var(--marquee-end), var(--gold-color));
    color: var(--footer-light);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    background: var(--black-overlay);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.copyright strong {
    color: var(--gold-color);
}

.credits {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 8px;
}

.credits a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.credits a:hover {
    color: var(--gold-color);
}

/* Loading and Message States */
.loading,
.error-message,
.sent-message {
    display: none;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
}

.loading {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.error-message {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.sent-message {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

/* Demo content styling */
.demo-content {
    min-height: 80vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-banner-img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}

/* Modern Card Design */
.modern-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 8px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.modern-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(102, 126, 234, 0.03) 0%,
            rgba(118, 75, 162, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.modern-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 215, 0, 0.3);
}

.modern-card:hover::before {
    opacity: 1;
}


/* Card Image */
.card-image-container {
    /* position: relative;
    overflow: hidden;
    height: 240px; */
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
}

/* .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
} */

.modern-card:hover .card-image {
    transform: scale(1.1);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(30, 60, 114, 0.1) 0%,
            rgba(42, 82, 152, 0.1) 50%,
            rgba(255, 152, 64, 0.1) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.modern-card:hover .image-overlay {
    opacity: 1;
}

/* Card Content */
.card-content {
    padding: 30px 25px;
    position: relative;
    z-index: 3;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    transition: all 0.3s ease;
}

.card-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.modern-card:hover .card-title::after {
    width: 60px;
}

.card-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.modern-card:hover .card-description {
    color: #555;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg,
            rgba(255, 107, 107, 0.1),
            rgba(255, 217, 61, 0.1));
    border-radius: 50%;
    top: 20px;
    right: 20px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
    z-index: 2;
}

.modern-card:hover .floating-element {
    opacity: 1;
    transform: scale(1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* Demo Container */
.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.demo-title {
    text-align: center;
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

/* Grid Enhancement */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-list .product-card .product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: 0.3s ease all;
}

.product-list .product-card {
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 10px auto;
    border-radius: 10px;
    transition: 0.3s ease all;
    height: 100%;
}

.product-list .product-card .peoduct-image-container {
    aspect-ratio: 1;
    overflow: hidden;
}

.product-list .product-card .product-details {
    padding: 1rem 1.5rem 0;
}

.product-list .product-card:hover {
    transform: translate(0, -5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.product-list .product-card:hover .product-image {
    transform: scale(1.05);
}

/* slick slider css hero section? */

.hero .slick-dots {
    position: absolute;
    bottom: 5%;
    padding-right: 30px;
    text-align: center;
}

.hero .slick-dots li {
    margin: auto 7px;
}

.hero .slick-dots li button::before {
    background: transparent;
    color: transparent;
    border: 3px solid #fff;
    border-radius: 50%;
    content: "";
    width: 15px;
    height: 15px;
    opacity: 0.85;
    display: inline-block;
}

.hero .slick-dots li.slick-active button::before {
    background: #fff;
    border: 5px solid #fff;
    opacity: 0.85;
}

.catalogue-container {
    margin: 100px auto;
}

.catalogue-card {
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    height: 200px;
}

.catalogue-card:hover {
    transform: translateY(-8px);
    /* background: rgba(255, 255, 255, 0.15); */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.catalogue-card .card-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.catalogue-card .card-image {
    width: 100%;
    aspect-ratio: 3/2;
    height: unset;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalogue-card .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.catalogue-card:hover .image-overlay {
    opacity: 1;
}

.catalogue-card:hover .card-image {
    transform: scale(1.08);
}

.catalogue-card .floating-element {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    text-align: center;
    margin-bottom: 10px;
}

.catalogue-card .card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.catalogue-card .card-description {
    opacity: 0.8;
    line-height: 1.5;
    color: white;
    text-align: center;
    font-size: 0.9rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
    }

    to {
        text-shadow: 0 0 20px rgba(0, 255, 136, 1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 991.98px) {

    .section-head h3 {
        font-size: 1.7rem;
    }

    .section-head p {
        font-size: 16px;
    }

    .header-top {
        padding: 5px 0;
    }

    .header-contact {
        font-size: 12px;
        gap: 5px;
    }

    .header-contact a {
        font-size: 12px;
    }

    .navbar-collapse {
        background: rgba(30, 60, 114, 0.95);
        backdrop-filter: blur(10px);
        margin-top: 15px;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 60px;
        width: 100%;
        max-width: 340px;
        right: 0;
    }

    .nav-link {
        margin: 5px 0;
        text-align: center;
    }

    .marquee-text {
        font-size: 1rem;
    }

    .footer-top {
        padding: 40px 0 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="submit"] {
        align-self: flex-start;
    }

    .header-social {
        display: none;
    }

    .header-top .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .header-contact {
        justify-content: start;
    }

    .header-content {
        padding: 10px 0;
    }

    .logo img {
        max-height: 40px;
    }

    .marquee-text {
        font-size: 0.9rem;
    }

    .card-grid {
        /* grid-template-columns: 1fr; */
        gap: 20px;
    }

    .demo-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* .card-image-container {
        height: 200px;
    } */

    .card-content {
        padding: 20px 18px;
    }

    .card-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .card-description {
        font-size: 0.9rem;
    }

    .modern-card:hover {
        transform: translateY(-5px) scale(1.01);
    }

    /* .card-image-container {
        height: 220px;
    } */

    .card-content {
        padding: 25px 20px;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .card-description {
        font-size: 0.95rem;
    }

    .product-list .row>div {
        padding: 0px 5px;
        margin: 5px auto;
    }

    .product-list {
        margin: 20px auto;
    }

    .product-list .product-card {
        margin: 5px auto !important;
        border-radius: 0 !important;
        height: 100%;
    }

    .product-list .product-card .peoduct-image-container {}

    .product-list .product-card .product-details {
        padding: 7px !important;
    }

    .product-list .product-card .product-details h5 {
        font-size: 14px;
    }

    .product-list .product-card .product-details span {
        font-size: 12px;
    }

    .product-list .product-card:hover {
        transform: unset !important;
        box-shadow: unset !important;
    }

    .product-list .product-card:hover .product-image {
        transform: unset !important;
    }
}

@media (max-width: 767.98px) {

    .section-head h3 {
        font-size: 1.5rem;
    }

    .section-head p {
        font-size: 14px;
    }

    .footer-top {
        padding: 30px 0 20px;
    }

    .footer-about,
    .footer-links,
    .footer-newsletter {
        margin-bottom: 30px;
    }

    .social-links {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }

    .catalogue-container {
        background: unset;
        height: 100%;
    }

    /* .card-image-container img {
        aspect-ratio: 4/5 !important;
    } */

    .card-image-container .card-title {
        font-size: 16px;
        margin: 0;
    }

    .catalogue-container .catalogue-card {
        position: relative;
        min-width: 170px;
        /* background : #f5f5f5; */
    }

    .catalogue-container .catalogue-card:hover {
        position: relative;
        background: #f5f5f5;
    }


    .catalogue-container .image-overlay {
        padding: 10px;
        font-size: 16px;
        position: relative;
        background: transparent;
        opacity: 1;
        transition: unset;
        display: none !important;
    }

    .catalogue-container .image-overlay .card-title {
        position: relative;
    }

    .hero .slick-dots {
        text-align: end;
    }

    .hero .slick-dots li {
        width: 16px;
        height: 16px;
        margin: 0 4px;
    }

    .hero .slick-dots li button:before {
        width: 10px !important;
        height: 10px !important
    }

    .catalogue-container .section-title p {
        font-size: 12px;
    }

    .catalogue-container {
        margin: 30px auto 50px
    }


}

@media (max-width: 575.98px) {
    .navbar-collapse {
        right: unset;
        left: 50%;
        transform: translateX(-57%);
    }

    .header-contact a span {
        display: none;
    }

    .modern-card .card-description {
        display: none !important;
    }

    .header-contact a::after {
        content: attr(href);
        font-size: 12px;
    }

    .header-contact a[href^="mailto:"]::after {
        content: "xyz@gmail.com";
    }

    .header-contact a[href^="tel:"]::after {
        content: "+91 90045 73662";
    }

    .footer-contact p {
        font-size: 14px;
    }

    .footer-links ul li a {
        font-size: 14px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* .card-image-container {
        height: 180px;
    } */

    .card-content {
        padding: 18px 15px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-description {
        font-size: 0.85rem;
    }

    .demo-container {
        padding: 0 7px;
        margin: 20px auto;
    }

    .demo-container .demo-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .catalogue-card .card-description {
        display: none;
    }


    .demo-container .card-grid {
        margin-top: 0;
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 10px
    }

    .demo-container .card-grid .modern-card {
        border-radius: 5px;
        min-width: 170px;
    }

    .demo-container .card-grid .card-image-container {
        width: 100%;
        aspect-ratio: 1;
        height: unset;
        overflow: hidden;
    }

    .demo-container .card-grid .card-image-container img {
        width: 100%;
        object-fit: cover
    }

    .demo-container .card-grid .card-content {
        padding: 8px 10px;
    }

    .demo-container .card-grid .card-content p {
        margin: 0;
    }

    .demo-container .card-title {
        font-size: 14px;
        /* gap: 20px; */
    }

    .demo-container .card-description {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* Limit to 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .slick-next {
        right: 5px !important;
        z-index: 1;
    }

    .slick-prev {
        left: 5px !important;
        z-index: 1;
    }

}


/* custom card style starts here ? */

.flex-container .binary-card-layout {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flex-container .binary-card-layout .cust-card,
.flex-container .cust-card {
    position: relative;
    min-width: 200px;
}

.flex-container .binary-card-layout .cust-card .card-image-container,
.flex-container .cust-card .card-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.flex-container .binary-card-layout .cust-card .card-image-container img,
.flex-container .cust-card .card-image-container img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: 0.3s ease-in-out all;
}

.flex-container .binary-card-layout .cust-card:hover .card-image-container img,
.flex-container .cust-card:hover .card-image-container img {
    transform: scale(1.1);
}

.flex-container .binary-card-layout .cust-card .cust-card-content,
.flex-container .cust-card .cust-card-content {
    padding: 10px 15px;
    background: #2a5197;
    text-align: center;
}

.flex-container .binary-card-layout .cust-card .cust-card-content .card-title,
.flex-container .cust-card .cust-card-content .card-title {
    font-size: 1.2rem;
    color: white;
}


.flex-container .cust-card.horizontal-card {
    position: relative;
    min-width: 400px;
}

.flex-container .cust-card.horizontal-card .card-image-container {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.flex-container .cust-card.horizontal-card .card-image-container img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: 50% 50%;
    transition: 0.3s ease-in-out all;
}

.flex-container .cust-card.horizontal-card .cust-card-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #2a51975e;
    text-align: center;
    align-content: center;
    opacity: 0;
    transition: 0.3s ease-in-out all;
}

.flex-container .cust-card.horizontal-card .cust-card-content .card-title {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.flex-container .cust-card.horizontal-card:hover .card-image-container img {
    transform: scale(1.1);
}

.flex-container .cust-card.horizontal-card:hover .cust-card-content {
    opacity: 1;
}

.product-list .row>div {
    margin: 10px 0
}

@media (max-width: 600px) {

    .trm-sections-container {
        gap: 15px !important;
    }

    .flex-container {
        gap: 5px;
    }

    .flex-container .cust-card.horizontal-card {
        min-width: 180px;
    }

    .flex-container .binary-card-layout .cust-card,
    .flex-container .cust-card {
        min-width: 100px;
        max-width: 150px;
    }

    .flex-container .binary-card-layout .cust-card .cust-card-content .card-title,
    .flex-container .cust-card .cust-card-content .card-title {
        font-size: 10px;
    }

    .flex-container .binary-card-layout .cust-card .cust-card-content,
    .flex-container .cust-card .cust-card-content {
        padding: 5px 7px;
    }


    .flex-container .cust-card.horizontal-card .cust-card-content {
        position: relative;
        background-color: #2a5197;
        opacity: 1;
        height: fit-content;
        transition: 0.3s ease-in-out all;
    }

    .flex-container .cust-card.horizontal-card .cust-card-content .card-title {
        font-size: 14px;
    }

    .flex-container .cust-card.horizontal-card:hover .card-image-container img {
        transform: scale(1.1);
    }

}



/* about us page style starts here? */

.about-us {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.about-us>div {
    width: calc(50% - 10px)
}

.about-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-box,
.mission-box,
.vision-box,
.heritage-box {
    border-radius: 10px;
    padding: 24px;
    /* margin-bottom: 20px; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.story-box {
    background: linear-gradient(to right, #cffafe, #fde2e4);
    border-left: 5px solid #3b82f6;
}

.vision-box {
    background: linear-gradient(to right, #fff0f6, #fce4ec);
    border-left: 5px solid #d63384;
}

.heritage-box {
    background: linear-gradient(to right, #f0f9ff, #e0f7fa);
    border-left: 5px solid #0284c7;
}

.mission-box {
    background: linear-gradient(to right, #fff7cd, #ffe0b2);
    border-left: 5px solid #f59e0b;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    justify-content: center;
}

@media (min-width: 600px) {
    .section-header {
        justify-content: flex-start;
    }
}

.title-line {
    width: 4px;
    height: 100%;
    background-color: #3b82f6;
}

.title-line-mission {
    background-color: #f59e0b;
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    color: #1f2937;
    position: relative;
    padding: 0 0 0 20px;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 100%;
    left: 0px;
    top: 0;
    border-radius: 5px;
}

.section-title.fwa-line-story-box::before {
    background-color: #3b82f6;
}

.section-title.fwa-line-mission-box::before {
    background-color: #f59e0b;
}

.section-title.fwa-line-heritage-box::before {
    background-color: #0284c7;
}

.section-title.fwa-line-vision-box::before {
    background-color: #d63384;
}


.section-text {
    font-size: 12px;
    color: #374151;
    /* gray-700 */
    line-height: 1.6;
    text-align: center;
}

@media (min-width: 600px) {
    .section-text {
        text-align: left;
        font-size: 16px;
    }
}


.offer-section {
    margin: 75px auto;
}

.offer-header {
    font-size: 22px;
    text-align: center;
    font-weight: bold;
    color: #1f2937;
    /* border-left: 4px solid #0ea5e9; */
    padding-left: 10px;
    margin-bottom: 12px;
}

.offer-description {
    font-size: 14px;
    color: #374151;
    width: 75%;
    margin: 0 auto 30px;
    text-align: center;
}

.offer-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.offer-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.offer-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0ea5e9;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.offer-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    color: #1e293b;
}

.offer-text {
    font-size: 13px;
    color: #4b5563;
}

@media (min-width: 768px) {
    .offer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.visit-section {
    display: flex;
    flex-direction: column;
    min-height: 400px;
    padding: 40px 40px !important;
    gap: 30px;
    /* max-width: 1200px; */
    margin: 75px auto;
    background-color: #1e293b;
    /* dark slate gray */
    border-radius: 12px;
}

.visit-left {
    flex: 1;
}

.visit-title {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    border-left: 4px solid #38bdf8;
    /* sky-400 */
    padding-left: 10px;
    margin-bottom: 14px;
}

.visit-description {
    font-size: 15px;
    color: #f1f5f9;
    /* slate-100 */
    line-height: 1.7;
}

.visit-map {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .visit-section {
        flex-direction: row;
        align-items: center;
    }
}

.what-we-do-section {
    text-align: center;
    margin: 75px auto;
}

.what-we-do-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.what-we-do-desc {
    font-size: 16px;
    color: #334155;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.what-we-do-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.what-we-do-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    max-width: calc(33% - 10px);
    width: 100%;
    transition: transform 0.2s ease;
}

.what-we-do-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #0ea5e9;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle img {
    width: 30px;
    height: 30px;
}

.what-we-do-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.what-we-do-card p {
    font-size: 14px;
    color: #334155;
}



.oc-visit-section {
    margin: 75px auto;
    background: white;
    border-radius: 12px;
    padding-left: 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.oc-section-container {
    display: flex;
    align-items: center;
    min-height: 400px;
}

.oc-image-container {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.oc-market-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.oc-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.oc-image-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.oc-store-icon {
    font-size: 48px;
    color: white;
}

.oc-content-container {
    flex: 1;
    padding: 60px 50px;
}

.oc-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.oc-section-emoji {
    font-size: 28px;
    margin-right: 12px;
}

.oc-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.oc-section-description {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.oc-highlight-text {
    color: #667eea;
    font-weight: 600;
}

.oc-visit-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.oc-detail-item {
    margin-bottom: 12px;
    font-size: 14px;
    color: #5a6c7d;
}

.oc-detail-label {
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .oc-section-container {
        flex-direction: column;
    }

    .oc-image-container {
        min-height: 250px;
    }

    .oc-content-container {
        padding: 40px 30px;
    }

    .oc-section-title {
        font-size: 24px;
    }
}





/* product details page style starts here? */


.product-details {
    /* min-height: 50vh; */
    /* margin: 3rem auto; */
}

.product-details .product-details-image-part img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-details .product-details-content-part .product-details-heading {
    margin-bottom: 30px;
}

.product-details .product-details-content-part .product-details-heading h1 {
    color: var(--theme-primary-color);
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 1.7rem;
}

.product-details .product-details-content-part .product-details-heading h2 {
    color: var(--theme-black-color);
    margin-top: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: Lato, sans-serif;
}

.product-details .product-details-content-part .product-details-description {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
}

.product-details .product-details-content-part .product-details-description p {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 7px;
}

.product-details .product-details-content-part .product-details-btns {
    margin-top: 30px;
}

.product-details .product-details-content-part .product-details-btns button {
    background: #295196;
    color: white;
    font-weight: 500;
    border: 0;
    border-radius: 12px;
}

.product-details .product-details-content-part .product-details-btns .product-detail-quentity {
    border: 1px solid var(--theme-gold-color);
    border-radius: 5px;
    padding: 7px;
    display: flex;
    width: fit-content;
}

.product-details .product-details-content-part .product-details-btns .product-detail-quentity span {
    min-width: 40px;
    text-align: center;
}

.product-details .product-details-content-part .product-details-btns .product-detail-quentity img {
    aspect-ratio: 1;
    object-fit: cover;
    width: 24px;
}

.product-details .product-details-content-part .product-details-btns .sec-btns {
    margin-top: 15px;
    gap: 10px;
}

.product-details .product-details-content-part .product-details-btns .sec-btns button,
.product-details .product-details-content-part .product-details-btns .sec-btns a {
    justify-content: center;
    width: 49%;
    background: transparent;
    color: var(--theme-primary-color);
    border: 1px solid var(--theme-primary-color);
    font-weight: 700;
}

.product-details .product-details-content-part .product-details-btns .sec-btns a {
    border: 0;
}

.product-details .product-page h2 {
    color: var(--theme-secondary-color);
    font-weight: 700;
}

.product-details .product-delivery-detail {
    margin-top: 30px;
}

.product-details .product-delivery-detail h2 {
    color: var(--theme-secondary-color);
    font-weight: 700;
}

.product-details .product-delivery-detail .row {
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-details .product-delivery-detail .row .delivery-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(25% - 15px);
}

.product-details .product-delivery-detail .row .delivery-box h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
    text-align: center;
}

.product-details .product-delivery-detail .row .delivery-box p {
    text-align: center;
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.product-details .product-delivery-detail .row .delivery-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.add-to-cart-dialog {
    min-width: 340px;
    width: 50%;
    height: fit-content;
}

.cart-send-btn {
    background-color: var(--theme-most-color) !important;
}

@media (max-width: 991px) {
    .product-details .product-page {
        padding: 0 50px;
    }

    .product-details .product-details-image-part {
        margin: 0 auto 2rem auto;
    }

    .product-details .product-delivery-detail .delivery-box {
        width: calc(50% - 10px) !important;
    }
}

@media (max-width: 600px) {
    .product-details {
        margin-top: 2rem;
    }

    .product-details .product-page {
        padding: 0 0px;
    }

    .product-details .product-details-image-part {
        margin: 0 auto 2rem auto;
    }

    .product-details .product-details-content-part .product-details-heading {
        margin-bottom: 20px;
    }

    .product-details .product-details-content-part .product-details-heading h1 {
        font-size: 1.3rem;
    }

    .product-details .product-details-content-part .product-details-btns {
        margin-top: 20px;
    }

    .product-details .offer-cards .offer-card {
        width: 100% !important;
        align-items: center !important;
    }

    .product-details .product-delivery-detail {
        margin: 15px auto;
    }

    .product-details .product-delivery-detail .delivery-box h5 {
        font-size: 16px !important;
    }

    .product-details .product-delivery-detail .delivery-box p {
        font-size: 12px !important;
    }
}

.img-skeleton {
    aspect-ratio: 1;
    height: unset !important;
}

.close-pan-button {
    background: var(--theme-white-color);
    color: var(--theme-black-color);
    border-radius: 50%;
    width: 45px;
    aspect-ratio: 1;
    border: 0;
    position: absolute;
    top: 10vh;
    right: 10vw;
    z-index: 9999999999999999;
    padding: 0;
    justify-content: center;
    align-content: center;
}

.pan-zoom-control-btn {
    position: absolute;
    bottom: 20vh;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999999999999999;
}

.pan-zoom-control-btn button {
    width: 40px;
    aspect-ratio: 1;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    background: var(--theme-white-color);
    color: var(--theme-black-color);
    border: none;
}

.video-class {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
}

/* .highlight-fwa (Commented out section not included) */

.highlight-button {
    position: relative;
    overflow: hidden;
    border: none !important;
    border-radius: 6px;
    color: #414141 !important;
    z-index: 0;
    padding: 0.5rem 1.5rem !important;
    background: none !important;
}

.highlight-button::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(270deg,
            #bfa970 0%,
            #e6d6a5 25%,
            #fff4d1 50%,
            #e6d6a5 75%,
            #bfa970 100%);
    background-size: 400% 100%;
    animation: highlightMove 5s linear infinite;
}

@keyframes highlightMove {
    0% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.rs-menu ul ul {
    background-color: white;
}

/* our item css ?? */

.our-items {
    padding: 60px 0;
}

.col {
    width: 100%;
    max-width: 350px;
}

.product-number {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid #e8ecef;
}

.product-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.product-number:hover::before {
    left: 100%;
}

.product-number:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.icon-container svg {
    width: 40px;
    height: 40px;
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

.product-number:hover .icon-container svg {
    fill: white;
    transform: scale(1.1);
}

.products-card:hover .icon-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-card:hover .icon-container {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.collection-card:hover .icon-container {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.product-number h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: #34495e;
    margin-bottom: 10px;
    line-height: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-card .counter {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.collection-card .counter {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .our-items .row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .product-number {
        padding: 30px 20px;
    }

    .counter {
        font-size: 2.5rem;
    }

    .product-number h2 {
        font-size: 1.3rem;
    }
}

.animate-in {
    animation: slideInUp 0.8s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* side-card div card section css ? */

.side-card-div {
    padding: 40px 0;
    background: #f8f9fa;
}

.side-card-div .flex-container {
    padding: 10px 0;
}


/* Modified card classes - Clean slider design */
.side-card-div .cust-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 180px;
    text-align: center;
    border: 2px solid transparent;
}

.side-card-div .cust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.side-card-div .card-image-container {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.side-card-div .side-card-image {
    width: 100px;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f1f3f4;
    transition: all 0.3s ease;
}

.side-card-div .cust-card:hover .card-image {
    border-color: #667eea;
    transform: scale(1.05);
}

.side-card-div .cust-card-content {
    text-align: center;
}

.side-card-div .card-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.side-card-div .cust-card:hover .card-title {
    color: #667eea;
}

/* Left side title styling */
.side-card-div h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Scrollbar styling */
.scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.scroll-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {

    .side-card-div .cust-card {
        min-width: 150px;
        padding: 10px;
    }

    .side-card-div .card-image {
        width: 80px;
        height: 80px;
    }

    .side-card-div .card-title {
        font-size: 14px;
    }
}


/* category section style starts here??? */


.show-cat {
    padding: 60px 0;
    background-color: #7f6999;
}

/* .show-cat .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
} */

.show-cat .section-head {
    margin-bottom: 50px;
}

.show-cat .section-head h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.show-cat .section-head p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.show-cat .slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
}

.show-cat .category-list-container {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 25px;
}

.show-cat .category-card {
    min-width: 200px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-cat .category-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.show-cat .category-image-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #ff6b6b, #feca57);
}

.show-cat .category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.show-cat .category-card:hover .category-image {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.show-cat .category-content {
    text-align: center;
    position: relative;
}

.show-cat .category-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.show-cat .category-card:hover .category-title {
    opacity: 1;
    transform: translateY(0);
}

.show-cat .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.show-cat .nav-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.show-cat .nav-button:active {
    transform: translateY(-50%) scale(0.95);
}

.show-cat .prev-btn {
    left: -5px;
}

.show-cat .next-btn {
    right: -5px;
}

.show-cat .nav-button.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(0.8);
}

@media (max-width: 768px) {
    .show-cat .category-card {
        min-width: 150px;
    }

    .show-cat .category-image-container {
        width: 150px;
        height: 150px;
    }

    .show-cat .section-head h3 {
        font-size: 2rem;
    }

    .show-cat .nav-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .show-cat .prev-btn {
        left: -20px;
    }

    .show-cat .next-btn {
        right: -20px;
    }

    .show-cat .category-title {
        opacity: 1;
        transform: unset;
    }
}

/* term & condition css */

.trm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
    min-height: 100vh;
}

.trm-page-header {
    border-bottom: 3px solid #3498db;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.trm-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.trm-page-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 400;
}

.trm-intro-section {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    border-left: 5px solid #3498db;
}

.trm-intro-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #34495e;
}

.trm-intro-text:last-child {
    margin-bottom: 0;
}

.trm-company-name {
    font-weight: 700;
    color: #2c3e50;
}

.trm-hosting-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    margin-bottom: 50px;
}

.trm-sections-container {
    display: grid;
    gap: 40px;
}

.trm-section-item {
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.trm-section-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.trm-section-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 30px;
}

.trm-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.trm-section-content {
    padding: 30px;
}

.trm-section-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

.trm-footer-note {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #dee2e6;
    text-align: left;
    color: #6c757d;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .trm-container {
        padding: 20px 15px;
    }

    .trm-page-title {
        font-size: 2rem;
    }

    .trm-intro-section {
        padding: 20px;
    }

    .trm-section-header {
        padding: 15px 20px;
    }

    .trm-section-content {
        padding: 20px;
    }

    .trm-section-title {
        font-size: 1.1rem;
    }
}


/* Main Container */
.sb-main-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

/* Mobile Menu Button */
.sb-mobile-menu-btn {
    display: none;
    background: #2a5298;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 1rem;
    font-size: 1rem;
    width: 100%;
}

/* Sidebar */
.sb-sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.sb-sidebar-title {
    color: #2a5298;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 0.5rem;
}

.sb-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sb-category-item {
    margin-bottom: 0.5rem;
}

.sb-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sb-category-link:hover,
.sb-category-link.active {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #EBA74B 0%, #E2711D 100%);

    color: white;
    transform: translateX(5px);
    text-decoration: none;
}

.sb-category-count {
    background: #e9ecef;
    color: #666;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.sb-category-link:hover .sb-category-count,
.sb-category-link.active .sb-category-count {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Filter Section */
.sb-filter-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.sb-filter-title {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
}

.sb-price-range {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sb-range-input {
    width: 100%;
    margin-bottom: 0.5rem;
}

.sb-price-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

/* Products Content */
.sb-products-content {
    min-width: 0;
    /* Prevents grid overflow */
}

/* Overlay */
.sb-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.sb-overlay.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sb-main-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sb-mobile-menu-btn {
        display: block;
    }

    .sb-sidebar {
        position: fixed;
        top: 115px;
        left: -100%;
        width: 80%;
        height: 100vh;
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
        border-radius: 0;
    }

    .sb-sidebar.open {
        left: 0;
    }
}

@media (max-width: 576px) {
    .sb-sidebar {
        width: 90%;
    }
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: whatsappPulse 2s infinite;
}