/* --- Premium Light Theme System --- */
:root {
    --primary: #002060;
    /* Deep Peacock Blue */
    --primary-glow: rgba(0, 32, 96, 0.2);
    --secondary: #00A693;
    /* Vibrant Peacock Green */
    --secondary-glow: rgba(0, 166, 147, 0.3);
    --accent: #DAA520;
    /* Metallic Gold Accent */
    --bg-main: #ffffff;
    --bg-soft: #fcfcfc;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --surface: rgba(255, 255, 255, 0.85);
    /* Increased opacity for readability */
    --surface-border: rgba(0, 0, 0, 0.08);
    --font-heading: 'Trade Winds', cursive;
    --font-main: 'Eczar', serif;
}


/* --- Global Styles --- */
body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Floating Particles (Gold Dust) --- */
.floating-circle {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    /* Changed to Gold Accent */
    z-index: -1;
    pointer-events: none;
    filter: blur(25px);
    animation: floatAnimation 25s infinite ease-in-out;
    opacity: 0.6;
}

.fc-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
}
 /* Sticky filters */
    .sticky-filters {
        position: sticky;
        top: 0; /* Adjust based on your navbar height */
        background:var(--primary);
        z-index: 100;
        padding: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        margin-bottom: 15px;
    }
    
    /* Highlight for searched product */
    .product-highlight {
        animation: highlight 2s;
        border-left: 4px solid #28a745;
        padding-left: 10px;
    }
    
    @keyframes highlight {
        0% { background-color: #ffff99; }
        100% { background-color: white; }
    }
    
    /* For mobile */
    @media (max-width: 768px) {
        .sticky-filters {
            top: 0; /* Adjust for mobile navbar */
        }
    }
.fc-2 {
    width: 400px;
    height: 400px;
    bottom: 5%;
    right: -100px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    animation-delay: -5s;
}

.fc-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 5%;
    animation-delay: -10s;
    opacity: 0.4;
}

.fc-4 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 10%;
    animation-delay: -7s;
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, 40px) scale(1.1);
    }
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--secondary));
    border-radius: 10px;
    border: 2px solid var(--bg-soft);
}

/* --- Marquee --- */
.top-marquee {
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    /* Blue to Green Gradient */
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    padding: 12px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.aurora-banner {
    width: 100%;
    padding: 50px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.aurora-bg {
    position: absolute;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(214, 48, 49, 0.05) 0%, rgba(243, 156, 18, 0.05) 50%, transparent 100%);
    animation: auroraMove 15s infinite alternate ease-in-out;
    z-index: 0;
}

.capsule-track {
    display: flex;
    white-space: nowrap;
    animation: luxuryScroll 30s linear infinite;
    gap: 40px;
    z-index: 1;
}

.promo-capsule {
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--surface-border);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-main);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: 0.4s;
    animation: capsuleFloat 4s infinite ease-in-out;
}

.promo-capsule:nth-child(even) {
    animation-delay: -2s;
}

.promo-capsule b {
    color: var(--primary);
    font-weight: 900;
}

.promo-capsule span {
    color: var(--secondary);
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.promo-capsule:hover {
    transform: scale(1.1) translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px var(--primary-glow);
    background: #fff;
}
.lin{
    cursor: pointer;
}

@keyframes luxuryScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes capsuleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes auroraMove {
    0% {
        transform: translate(-20%, -10%) rotate(0deg);
    }

    100% {
        transform: translate(10%, 10%) rotate(5deg);
    }
}

.aurora-banner:hover .capsule-track {
    animation-play-state: paused;
}

/* --- Simple Text Marquee --- */
.simple-marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    width: fit-content;
    animation: simpleMarqueeScroll 40s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 80px;
    padding-right: 80px;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 22px;
    white-space: nowrap;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-item b {
    color: var(--primary);
}

.marquee-item i {
    color: var(--secondary);
    font-size: 18px;
}

@keyframes simpleMarqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Mobile optimizations for marquee */
@media (max-width: 768px) {
    .marquee-item {
        font-size: 24px;
        gap: 10px;
    }

    .marquee-group {
        gap: 40px;
        padding-right: 40px;
    }
}

.simple-marquee:hover .marquee-inner {
    animation-play-state: paused;
}

/* --- Premium Navbar --- */
.nav-outer {
    width: 95%;
    max-width: 1300px;
    margin: 25px auto;
    position: relative;
    z-index: 100;
    padding: 2px;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.nav-inner {
    width: 100%;
    height: 85px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-line {
    width: 100%;
    height: 100%;
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.brand-img {
    height: 65px;
    width: 190px;
    border-radius: 12px;
    padding: 2px;
    
}

/*.brand:hover .brand-img {*/
/*    transform: rotate(360deg);*/
/*    box-shadow: 0 0 20px var(--secondary-glow);*/
/*}*/

.brand-text {
    font-family: var(--font-heading);
    font-size: 28px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 45px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: 0.4s;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: 0.4s;
    border-radius: 10px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}
.line-icon {
    font-size: 24px;
    color: var(--secondary);
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    transition: 0.4s;
}

.line-icon:hover {
    background: var(--secondary);
    color: #fff;
    transform: scale(1.1);
}

/* --- Social Sidebar --- */
.social-sidebar {
    position: fixed;
    left: 25px;
    top: 90%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 18px;
    display: flex;
    margin-top: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: 0.4s;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--surface-border);
}

.social-icon:hover {
    transform: scale(1.1) translateX(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.social-icon.instagram {
    color: #E1306C;
}

.social-icon.whatsapp {
    color: #25D366;
}

.social-icon.facebook {
    color: #1877F2;
}

/* --- 3D Carousel Slider --- */
.slider-wrapper {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 20px;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 777px;
    background: #fdfdfd;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--surface-border);
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.slide .item {
    width: 240px;
    height: 350px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center;
    display: inline-block;
    transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    border: 5px solid #fff;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.slide .item:nth-child(3) {
    left: 60%;
}

.slide .item:nth-child(4) {
    left: calc(60% + 280px);
}

.slide .item:nth-child(5) {
    left: calc(60% + 560px);
}

.slide .item:nth-child(6) {
    left: calc(60% + 840px);
    opacity: 0;
}

.item .content {
    position: absolute;
    top: 50%;
    left: 80px;
    width: 600px;
    text-align: left;
    color: #fff;
    transform: translate(0, -50%);
    display: none;
    z-index: 10;
}

.slide .item:nth-child(2) .content {
    display: block;
}

.content .name {
    font-family: var(--font-heading);
    font-size: 72px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: showcontent 1s ease-out 0.2s 1 forwards;
}

.content .des {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: showcontent 1s ease-out 0.4s 1 forwards;
}

.content button {
    padding: 18px 45px;
    border: none;
    background: var(--bg-main);
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    opacity: 0;
    animation: showcontent 1s ease-out 0.6s 1 forwards;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content button:hover {
    transform: scale(1.05);
    background: var(--primary);
    color: #fff;
}

@keyframes showcontent {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(20px);
    }

    to {
        opacity: 1;
        transform: translate(0, 0);
        filter: blur(0);
    }
}

.slider-buttons {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    z-index: 100;
}

.slider-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff;
    color: var(--text-main);
    margin: 0 15px;
    border: 2px solid var(--surface-border);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 35px var(--primary-glow);
    border-color: var(--primary);
}

/* --- Feature Section --- */
.feature-item {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border-radius: 35px;
    border: 1px solid var(--surface-border);
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(214, 48, 49, 0.1);
    border-color: var(--primary);
}

.feature-icon-box {
    width: 110px;
    height: 110px;
    background: var(--bg-soft);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px auto;
    color: var(--primary);
    font-size: 44px;
    transition: 0.5s;
    transform: translateZ(30px);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
}

.feature-item:hover .feature-icon-box {
    background: var(--primary);
    color: #fff;
    transform: translateZ(60px) rotate(15deg);
    box-shadow: 0 15px 30px var(--primary-glow);
}

.feature-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 26px;
    color: var(--text-main);
    margin-bottom: 20px;
    transform: translateZ(20px);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
    transform: translateZ(10px);
}

.hover-underline {
    width: 60px;
    height: 5px;
    background: var(--secondary);
    margin: 25px auto 0 auto;
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 10px;
    transform: translateZ(10px);
}

.feature-item:hover .hover-underline {
    width: 100%;
    background: var(--primary);
}

/* --- Who We Are Section --- */
.who-we-are {
    background: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    border-top: 1px solid var(--surface-border);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 60px;
    margin-bottom: 35px;
    margin-left: 60px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background: var(--accent);
    margin-top: 15px;
    border-radius: 10px;
    margin-left: px;
}
.section-titles {
    font-family: var(--font-heading);
    font-size: 60px;
    margin-bottom: 35px;
    margin-left: 60px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-titles::after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background: var(--accent);
    margin-top: 15px;
    border-radius: 10px;
    margin-left: 130px;
}
.who-desc {
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 45px;
    text-align: justify;
}

.btn-custom {
    padding: 18px 50px;
    background: linear-gradient(90deg, var(--primary), #e74c3c);
    background-size: 200% auto;
    color: #fff;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px var(--primary-glow);
}

.btn-custom:hover {
    background-position: right center;
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(214, 48, 49, 0.4);
    letter-spacing: 3px;
}

.blob-img {
    width: 100%;
    border-radius: 35px;
    animation: imgFloat 10s ease-in-out infinite;
    object-fit: cover;
    min-height: 500px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

@keyframes imgFloat {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        border-radius: 35px;
    }

    50% {
        transform: scale(1.05) rotate(1deg);
        border-radius: 50px;
    }
}

/* --- Magic Cards Styles --- */
.cards-section {
    width: 100%;
    background: var(--bg-soft);
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
}

.card {
    width: 380px;
   
    background: #fff;
    position: relative;
    display: flex;
    place-content: center;
    place-items: center;
    overflow: hidden;
    border-radius: 35px;
    z-index: 1;
    transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid var(--surface-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* --- Rotating Border Effect --- */
.card::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            var(--primary),
            var(--secondary),
            transparent 40%);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}

.card:hover::before {
    opacity: 1;
}

.card::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #fff;
    border-radius: 32px;
    z-index: 0;
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(214, 48, 49, 0.15);
    border-color: transparent;
}

.card-info {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    z-index: 2;
    background: transparent;
}

.card-img {
    width: 100%;
  
    object-fit: contain;
    border-radius: 25px;
    margin-bottom: 25px;
    transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card:hover .card-img {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.card .title {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    transition: 0.4s;
}

.card:hover .title {
    color: var(--primary);
}

.card .description {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.card-btn {
    width: 100%;
    height: 60px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.card-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.card:hover .card-btn::before {
    /* Pre-load hover state if needed or keep interactive */
}

.card-btn:hover {
    color: #fff;
    box-shadow: 0 10px 25px var(--primary-glow);
    border-color: transparent;
}

.card-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.card-btn:hover::before {
    left: 100%;
}

.card-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.02);
    box-shadow: 0 10px 25px var(--primary-glow);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.card-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.02);
}

/* --- Mobile Responsive --- */
@media (max-width: 991px) {
    .nav-outer {
        margin: 15px auto;
        width: 92%;
    }

    .nav-inner {
        height: 75px;
    }

    .nav-line {
        padding: 0 25px;
    }

    .brand-text {
        font-size: 22px;
    }

    .brand-img {
        width: 85px;
        height: 45px;
    }

    /* FIXED SLIDER FOR MOBILE */
    .slider-container {
        height: 400px;
        border-radius: 20px;
    }

    .slide .item {
        width: 150px;
        height: 200px;
        display: none;
    }

    .slide .item:nth-child(1),
    .slide .item:nth-child(2) {
        display: block;
    }

    .slide .item:nth-child(2) {
        display: none;
    }

    .content {
        left: 20px;
        width: 90%;
        padding-right: 20px;
    }

    .content .name {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .content .des {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 8px 12px;
        width: 100%;
    }

    .content button {
        padding: 12px 25px;
        font-size: 12px;
    }

    /* Hide side items on mobile */
    .slide .item:nth-child(3),
    .slide .item:nth-child(4),
    .slide .item:nth-child(5),
    .slide .item:nth-child(6) {
        display: none;
    }

    .slider-buttons {
        bottom: 20px;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        margin: 0 10px;
    }

    .card {
        width: 100%;
        /*max-width: 450px;*/
        /*height: 500px;*/
    }

    .card-img {
        /*height: 180px;*/
    }

    .card .title {
        font-size: 24px;
    }

    .card .description {
        font-size: 14px;
    }

    .social-sidebar {
        display: none;
    }

    /* Mobile Menu Styling */
    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 110%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        padding: 40px 20px;
        gap: 30px;
        border-radius: 40px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
        z-index: 1000;
        border: 1px solid var(--surface-border);
        align-items: center;
        animation: premiumMenuFade 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        transform-origin: top center;
    }

    .nav-links.active li {
        width: 100%;
        text-align: center;
        opacity: 0;
        animation: menuItemFade 0.4s ease forwards;
    }

    .nav-links.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        animation-delay: 0.4s;
    }

    @keyframes premiumMenuFade {
        from {
            opacity: 0;
            transform: translateY(-20px) scale(0.95);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @keyframes menuItemFade {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: clamp(30px, 8vw, 42px);
        /* Fluid typography */
        text-align: center;
        line-height: 1.3;
        margin-left: 10px;
    }
    .brand-img {
        width: 85px;
        height: 45px;
    }
    .section-title::after {
        margin: 15px auto;
        width: 80px;
        height: 5px;
    }

    .slider-container {
        height: 350px;
    }

    .content .name {
        font-size: 22px;
    }

    .content .des {
        font-size: 12px;
    }

    .content button {
        padding: 10px 20px;
        font-size: 11px;
    }

    .who-we-are {
        padding: 60px 0;
        text-align: center;
    }

    .who-desc {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 30px;
        color: var(--text-muted);
    }

    .blob-img {
        min-height: 300px;
        margin-top: 40px;
    }

    .cards-section {
        padding: 60px 0;
    }

    .promo-capsule {
        padding: 12px 25px;
        font-size: 16px;
    }

    .badge-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .premium-footer {
        padding: 60px 0 0 0;
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto 30px auto;
    }

    .footer-heading::after {
        left: 0;
        transform: none;
    }

    .footer-links,
    .premium-footer .col-6 {
        text-align: left;
    }

    .social-grid,
    .premium-footer .brand {
        justify-content: center;
    }

    .footer-links li a {
        justify-content: flex-start;
    }

    .footer-contact-item {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 20px;
    }

    .copyright-text {
        text-align: center;
    }

    /* Feature Items */
    .feature-item {
        padding: 40px 25px;
    }

    .feature-icon-box {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-desc {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        height: 65px;
    }
    .brand-img {
        width: 105px;
        height: 45px;
    }
    .brand-text {
        font-size: 18px;
    }

    .slider-container {
        height: 300px;
    }

    .content .name {
        font-size: 20px;
    }

    .content .des {
        font-size: 11px;
        padding: 6px 10px;
    }

    .content button {
        padding: 8px 16px;
        font-size: 10px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        margin: 0 8px;
    }

    .promo-capsule {
        font-size: 14px;
        gap: 10px;
        padding: 10px 20px;
    }

    .nav-outer {
        border-radius: 50px;
    }

    .nav-inner {
        border-radius: 50px;
    }

    .floating-circle {
        display: none;
    }

    .feature-item {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .feature-icon-box {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .cards-container {
        gap: 25px;
    }

    .card {
        /*height: 450px;*/
        border-radius: 25px;
    }

    .card-info {
        padding: 25px;
    }

    .card-img {
        /*height: 150px;*/
    }

    .card .title {
        font-size: 20px;
    }

    .card .description {
        font-size: 13px;
    }

    .card-btn {
        height: 50px;
        font-size: 12px;
    }
}

/* --- Fix for Touch Device Hover --- */
@media (hover: none) {
    .card::before {
        opacity: 0.5;
    }

    .feature-item:hover {
        transform: none;
    }

    .card:hover {
        transform: translateY(-10px);
    }
}

/* SIMPLIFIED SLIDER FOR MOBILE */
.slider-container.mobile-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slider-container.mobile-slider .slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-container.mobile-slider .item {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

/* --- Premium Footer --- */
.premium-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 50px 0 0 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer-logo .brand-text {
    font-size: 32px;
    margin-bottom: 25px;
    display: inline-block;
}

.footer-desc {
    color: #a0a0a0;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 35px;
    max-width: 350px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    /* Refined for mobile */
    height: 3px;
    background: var(--secondary);
    border-radius: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: 0.4s;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.footer-links li a i {
    font-size: 12px;
    color: var(--primary);
    transition: 0.4s;
}

.footer-links li a:hover {
    color: var(--secondary);
    transform: translateX(8px);
}

.footer-links li a:hover i {
    transform: scale(1.5);
    color: var(--secondary);
}

.social-grid {
    display: flex;
    gap: 15px;
}

.social-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.5s;
}

.social-box:hover {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transform: translateY(-8px) rotate(8deg);
    border-color: transparent;
    box-shadow: 0 10px 20px var(--primary-glow);
}

.footer-contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text p {
    font-size: 16px;
    color: #fff;
    margin: 0;
}
.ocu a{
    color:#da8920;
    cursor: pointer;
    text-decoration: none;
}
.footer-bottom {
    background: #000;
    padding: 10px 40px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    color: #666;
    margin: 0;
    font-size: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

.footer-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-glow);
    filter: blur(150px);
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
    opacity: 0.5;
    pointer-events: none;
}

/* --- Breadcrumb Wrapper --- */
.breadcrumb-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    /* Space between breadcrumb and title */
}

.breadcrumb-item {
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.breadcrumb-item:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.breadcrumb-item i {
    font-size: 14px;
}

.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 700;
    pointer-events: none;
    background: rgba(214, 48, 49, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.breadcrumb-separator {
    margin: 0 15px;
    color: var(--secondary);
    font-size: 12px;
    opacity: 0.7;
}

/* Dark mode / overlay adjustments if needed */
.about-hero .breadcrumb-wrapper,
.contact-hero .breadcrumb-wrapper {
    position: relative;
    z-index: 5;
}

/* --- Wavy Text Animation --- */
.wavy-text {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: bold;
    color: var(--primary);
    position: relative;
    display: inline-block;
    -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
}

.wavy-text span {
    display: inline-block;
    animation: wavyAnimate 1.5s ease-in-out infinite;
    animation-delay: calc(0.1s * var(--i));
}

@keyframes wavyAnimate {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
        color: var(--secondary);
    }
}

/* Mobile Responsiveness for Wavy Text */
@media (max-width: 768px) {
    .wavy-text {
        font-size: 28px;
        /* Slightly smaller to fit better */
        line-height: 1.4;
        -webkit-box-reflect: unset;
        /* Disable reflection to prevent overlap on wrap */
        white-space: normal;
        /* Allow text to wrap */
        margin-bottom: 10px;
    }

    .wavy-text span {
        animation: wavyAnimate 1.5s ease-in-out infinite;
    }

    @keyframes wavyAnimate {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }

        /* Subtle wave on mobile */
    }
}
.footer2-widget__item-text {
    margin-left: -20px;
    text-align: justify;
    
}

/* ===== Estimate Floating Button ===== */
.price-style {
    position: fixed;
    bottom: 160px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: var(--transition);
}

.pricelist_icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out;
}

.pricelist_icon:hover {
    transform: scale(1.1);
}

.bounce2 {
    animation: bounce2 2s infinite ease-in-out;
}


@keyframes bounce2 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.wapp {
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}