/* ==========================================================================
   COLOR PALETTE & VARIABLES
   ========================================================================== */
:root {
    --brand-blue: #0158a8;         /* Core Sughana Blue */
    --brand-dark-blue: #004687;    /* Slightly darker blue for search/topbar contrast */
    --text-white: #ffffff;
    --text-muted-white: rgba(255, 255, 255, 0.75);
    
    /* Navigation Link Styles */
    --menu-text-color: #ffffff;    /* For links inside the blue navigation bar */
    --menu-hover-color: #ffcc00;   /* Vibrant premium gold tint for visibility */
}

body {
    font-family: "lato", Arial, Helvetica, sans-serif;
    background-color: #fcfcfc;
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar {
    background-color: var(--brand-dark-blue) !important;
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* SYSTEM MASTER HEADER CONTROL */
.sticky-scroll-header {
    /* position: fixed !important; */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 2000 !important; /* High stack layers matrix value */
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    
    /* Default active position clear inline layout state */
    transform: translateY(0);
    /* Ultra smooth buttery slide effect duration variables */
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* STATE 1: Scrolling Down -> Push it completely off-screen safely */
.sticky-scroll-header.scroll-down {
    transform: translateY(-100%) !important;
}

/* STATE 2: Scrolling Up (Bottom to Top) -> Pull it back down immediately */
.sticky-scroll-header.scroll-up {
    transform: translateY(0) !important;
    box-shadow: 0 4px 20px rgba(0, 86, 179, 0.12) !important; /* Premium brand blue glow look */
}
/* ==========================================================================
   2. MAIN CENTER HEADER BLOCK (WHITE BACKGROUND AREA)
   ========================================================================== */
.main-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #f1f1f1;
}

/* Brand Logo Layout (Now visible on White Background) */
.brand-logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-blue) !important; /* Made blue to contrast with white header */
    letter-spacing: -1px;
    text-transform: lowercase;
}

/* Dynamic design line accent matching professional branding */
.logo-accent::first-letter {
    border-top: 4px solid var(--brand-blue);
    padding-top: 2px;
}

/* Search Bar Architecture */
.search-form {
    max-width: 580px;
    width: 100%;
}

.search-input {
    background-color: var(--brand-blue) !important; /* Keep search bar blue */
    border: 1px solid rgba(1, 88, 168, 0.1) !important;
    color: var(--text-white) !important;
    padding: 10px 24px;
    padding-right: 50px;
    font-size: 14px;
}

.search-input::placeholder {
    color: var(--text-muted-white);
}

.search-input:focus {
    box-shadow: 0 0 0 3px rgba(1, 88, 168, 0.2) !important;
    outline: none;
}

.search-submit-btn {
    color: var(--text-white) !important;
    border: none;
    background: transparent;
    font-size: 16px;
}

/* Action Icons (Person, Heart, Cart) adjustments over White Background */
.header-icon-link {
    color: var(--brand-blue) !important;
    transition: transform 0.2s ease;
    display: inline-block;
}

.header-icon-link:hover {
    transform: scale(1.08);
}

.vertical-divider {
    color: #ccc;
    opacity: 0.6;
    font-weight: 300;
}

.count-badge {
    font-size: 10px !important;
    padding: 2.5px 5px !important;
    font-weight: bold;
    background-color: var(--brand-blue) !important;
    color: white !important;
}

/* ==========================================================================
   3. LOWER NAVIGATION BAR SETUP (BLUE BACKGROUND)
   ========================================================================== */
.sticky-navigation {
    z-index: 1020;
    background-color: var(--brand-blue) !important;
    border-bottom: none !important;
}

/* Menu links visibility enhancements over full blue background */
.menu-item-text {
    color: var(--menu-text-color) !important;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.25s ease;
}

.menu-item-text:hover {
    color: var(--menu-hover-color) !important;
}

/* Offer Zone Highlight Button Inside the Blue Navbar */
.btn-offer-zone {
    background-color: #ffffff !important; /* Pure white button to stand out */
    color: var(--brand-blue) !important;    /* Inner text matches brand blue */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: 1px solid #ffffff !important;
    transition: all 0.25s ease;
}

.btn-offer-zone:hover {
    background-color: var(--menu-hover-color) !important; /* Shifts to Gold on hover */
    color: var(--brand-blue) !important;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.25) !important;
    border-color: var(--menu-hover-color) !important;
}

/* Dropdown arrow colors and list customizations */
.navbar-expand-lg .navbar-nav .dropdown-toggle::after {
    color: var(--text-white) !important;
}

.dropdown-menu {
    border: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}

.dropdown-item:active {
    background-color: var(--brand-blue) !important;
}

/* ==========================================================================
   ONLY MOBILE & TABLET LAYER OVERRIDES (NO DESKTOP CHANGES)
   ========================================================================== */
@media (max-width: 991.98px) {
    /* 1. Core Header Spacing Fixes */
    .main-header {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    /* Logo scaling down to avoid pushing elements layout */
    .main-header img {
        max-height: 42px !important;
        width: auto;
    }

    /* Action Icons (Person, Wishlist, Cart) spacing constraint */
    .main-header .col-6.text-end {
        gap: 15px !important;
    }

    /* 2. Search & Mobile Hamburger Inline Alignment Architecture */
    .main-header .col-12 {
        margin-top: 12px !important;
    }

    /* Wrapper container logic to lock search input and toggle button side-by-side */
    .search-form {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        max-width: 100% !important;
    }

    /* Forces search input control field layout fluid scale */
    .search-input {
        flex-grow: 1 !important;
        padding: 8px 40px 8px 20px !important; /* Fixed inner spaces for text */
        font-size: 13px !important;
    }

    /* Retains magnifying glass glass positioning exactly inside search capsule */
    .search-submit-btn {
        right: 75px !important; /* Dynamic offset to sit right before the hamburger */
    }

    /* 3. Hamburger Toggle Restyling inside the white block row */
    .navbar-toggler {
        display: inline-block !important;
        background-color: var(--brand-blue) !important; /* Premium branding color background */
        border: 1px solid var(--brand-blue) !important;
        padding: 6px 12px !important;
        border-radius: 50px !important; /* Clean rounded circle pill capsule look */
        position: relative !important;
        margin-top: 0 !important;
    }

    /* Converts native dark lines asset to visible sharp white lines */
    .navbar-toggler-icon {
        filter: invert(1) grayscale(1) brightness(2) !important;
        width: 1.15rem !important;
        height: 1.15rem !important;
    }

    /* 4. Collapsed Full-Width Navigation Stack Styles over White Background */
    .sticky-navigation {
        background-color: #ffffff !important;
        border-bottom: 1px solid #eeeeee !important;
    }

    .sticky-navigation .navbar-collapse {
        background-color: #ffffff !important;
    }

    .menu-item-text {
        color: #2b2b2b !important; /* High contrast text for list view selection */
        padding: 12px 16px !important;
        border-bottom: 1px solid #f5f5f5 !important;
        display: block !important;
    }

    .menu-item-text:hover {
        color: var(--brand-blue) !important;
        background-color: #f8f9fa !important;
        padding-left: 22px !important;
    }
}

/* Extra micro-device scale optimization (e.g., screen widths under 360px) */
@media (max-width: 360px) {
    .main-header img {
        max-height: 36px !important;
    }
    .search-submit-btn {
        right: 0px !important;
    }
}

/* ==========================================================================
    4. HERO CAROUSEL 
   ========================================================================== */
#sughanaHeroCarousel {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
    background-color: #ffffff !important;
}

.pure-banner-track {
    width: 100% !important;
}

/* 1. Desktop Viewport Settings (Height boosted for beautiful details visibility) */
.pure-banner-track .carousel-item {
    max-height: 580px !important; /* Raised from 380px to 480px to showcase full layout artwork clearly */
    overflow: hidden !important;
}

.asset-fluid-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Prevents squishing, crops perfectly at high resolutions */
    object-position: center !important;
    display: block !important;
}

/* 2. Sleek Bottom Indicators Layer Over Graphic */
.custom-graphic-dots {
    bottom: 20px !important; /* Shifted up slightly for clear separation from content bounds */
    margin-bottom: 0 !important;
    z-index: 5 !important;
}

.custom-graphic-dots [data-bs-target] {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: rgba(0, 0, 0, 0.25) !important; /* Dark dots since the artwork has a clean white background */
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    margin: 0 6px !important;
    transition: all 0.2s ease !important;
}

.custom-graphic-dots .active {
    background-color: #0056b3 !important; /* Primary Brand Blue accent highlight color for active state */
    transform: scale(1.3) !important;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2) !important;
}

/* 3. Slider Arrow Elements Overlay Adjustment */
.crisp-arrow-control {
    width: 5% !important;
    opacity: 0.4 !important; /* Subtle visibility on white backdrops */
    transition: opacity 0.2s ease-in-out !important;
}

#sughanaHeroCarousel:hover .crisp-arrow-control {
    opacity: 0.9 !important;
}

/* ==========================================================================
   RESPONSIVE COMPRESSION UPGRADES FOR PORTABLE DEVICING
   ========================================================================== */
/* ==========================================================================
   MOBILE VIEW (Below 768px)
   ========================================================================== */
@media (max-width: 767.98px) {

    #sughanaHeroCarousel {
        border-radius: 0 !important;
    }

    .pure-banner-track .carousel-item {
        height: 260px !important;
        max-height: 260px !important;
        overflow: hidden !important;
    }

    .asset-fluid-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    /* Dots */
    .custom-graphic-dots {
        bottom: 12px !important;
        z-index: 5 !important;
    }

    .custom-graphic-dots [data-bs-target] {
        width: 8px !important;
        height: 8px !important;
        margin: 0 4px !important;
    }

    .custom-graphic-dots .active {
        transform: scale(1.2) !important;
    }

    /* Hide arrows in mobile */
    .crisp-arrow-control {
        display: none !important;
    }
}

/* ==========================================================================
   TABLET VIEW (768px - 991px)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 991.98px) {

    .pure-banner-track .carousel-item {
        height: 380px !important;
        max-height: 380px !important;
        overflow: hidden !important;
    }

    .asset-fluid-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    /* Dots */
    .custom-graphic-dots {
        bottom: 16px !important;
    }

    .custom-graphic-dots [data-bs-target] {
        width: 9px !important;
        height: 9px !important;
    }

    /* Arrows */
    .crisp-arrow-control {
        width: 8% !important;
        opacity: 0.7 !important;
    }
}

/* ==========================================================================
   SMALL MOBILE VIEW (Below 480px)
   ========================================================================== */
@media (max-width: 480px) {

       .pure-banner-track .carousel-item {
        height: auto !important;
        max-height: unset !important;
        overflow: hidden !important;
    }

    .asset-fluid-img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: center center !important;
    }


    .custom-graphic-dots {
        bottom: 8px !important;
    }

    .custom-graphic-dots [data-bs-target] {
        width: 7px !important;
        height: 7px !important;
    }
}


/* trusted */
/* Responsive Scrollbar configurations for Trust Bar layout */
.custom-trust-scrollbar {
    scrollbar-width: none; /* Firefox native hidden tracker */
    -webkit-overflow-scrolling: touch;
}
.custom-trust-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge core hidden tracker */
}

/* Clear Box Pop effects */
.trust-proposition-bar .highlight-box {
    border-color: #e2e8f0 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trust-proposition-bar .highlight-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.06) !important;
    border-color: rgba(0, 86, 179, 0.2) !important;
}

/* ==========================================================================
   Trust Section Card Layout & Typography System
   ========================================================================== */
.sughana-trust-section {
    background-color: #ffffff !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

/* Headline Font Metrics */
.trust-main-title {
    font-size: 2.2rem !important;
    color: #2d3748 !important;
    letter-spacing: -0.5px !important;
    line-height: 1.3 !important;
}

/* Exact card container wrapper outline from the layout mockup */
.kurlon-style-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important; /* Soft minimal thin grey outline border */
    border-radius: 18px !important; /* Perfect smooth rounded curves corners */
    padding: 24px 16px !important; /* Breathing padding inside blocks */
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

/* Interactivity Hover Lift Logic */
.kurlon-style-card:hover {
    transform: translateY(-6px) !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04) !important;
}

/* Top Icon Frame Spacings */
.card-icon-container {
    height: 65px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

/* Special custom number graphic rendering simulation lines */
.text-gradient {
    background: linear-gradient(135deg, #475569, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem !important;
    line-height: 1 !important;
}

.legacy-loop-line {
    width: 30px;
    height: 3px;
    background: #ef4444; /* Red accent curve line mimic */
    position: absolute;
    bottom: 5px;
    border-radius: 2px;
}

/* Typography elements block system */
.card-body-content {
    width: 100% !important;
}

/* Bold Title in the middle */
.card-feature-title {
    font-size: 14px !important;
    font-weight: 700 !important; /* Strong dark bold text rendering */
    color: #1e293b !important;
    margin-bottom: 4px !important;
    line-height: 1.3 !important;
}

/* Soft gray description on the bottom */
.card-feature-desc {
    font-size: 13px !important;
    color: #64748b !important; /* Secondary muted slate profile */
    margin-bottom: 0 !important;
    line-height: 1.4 !important;
}

/* ==========================================================================
   MOBILE SMOOTH LAYOUT GRID ARCHITECTURE
   ========================================================================== */
@media (max-width: 991.98px) {
    .kurlon-style-card {
        padding: 20px 12px !important;
    }
    .card-feature-title {
        font-size: 13px !important;
    }
    .card-feature-desc {
        font-size: 12px !important;
    }
}

@media (max-width: 575.98px) {
    .trust-main-title {
        font-size: 1.6rem !important;
    }
    .kurlon-style-card {
        padding: 22px 16px !important; /* Keeps perfect aspect inside stacked layout boxes wide screens grid */
    }
}

/* --- Bestsellers Component Custom Styles --- */
.bestsellers-section {
    background-color: #ffffff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
}

.section-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.tab-menu {
    display: flex;
    gap: 20px;
}

.tab-item {
    font-size: 16px;
    font-weight: 600;
    color: #888;
    text-decoration: none;
    padding-bottom: 12px;
    position: relative;
    bottom: -12px;
    transition: all 0.3s ease;
}

.tab-item.active {
    color: #1a73e8;
    border-bottom: 3px solid #1a73e8;
}

.slider-container {
    position: relative;
}

/* Card Design */
.product-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.product-image-wrap {
    position: relative;
    width: 100%;
    padding-top: 70%; 
}

.product-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #d32f2f;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
    z-index: 10;
}

.product-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.review-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 8px;
}

.stars {
    color: #f59e0b;
    letter-spacing: -1px;
}

.review-count {
    color: #6b7280;
}

.rating-badge {
    background-color: #f3f4f6;
    color: #1f2937;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
}

.product-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.4;
}

.price-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.new-price {
    font-size: 18px;
    font-weight: bold;
    color: #111827;
}

.old-price {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
}

.offer-text {
    font-size: 12px;
    color: #dc2626;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
    font-size: 12px;
    color: #4b5563;
}

.features-list li {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Size Pill Selector */
.size-selector {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.size-btn {
    font-size: 11px;
    padding: 3px 8px;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 12px;
    color: #4b5563;
    cursor: pointer;
}

.size-btn.active, .size-btn:hover {
    border-color: #1a73e8;
    color: #1a73e8;
    background-color: #f0f7ff;
}

.action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.emi-text {
    font-size: 12px;
    margin: 0;
    color: #4b5563;
}

.emi-price {
    font-weight: bold;
}

.buy-emi-btn {
    background-color: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
}

.buy-emi-btn:hover {
    background-color: #b91c1c;
    color: #fff;
}

.sales-badge {
    font-size: 11px;
    font-weight: 600;
    color: #c2410c;
    background-color: #fff7ed;
    padding: 4px 8px;
    border-radius: 4px;
    width: max-content;
}

/* Slider Layout Optimization */
.slider-window {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.product-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
    width: 200%; 
}

.product-card-col {
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

.slider-arrow {
    position: absolute;
    top: 40%;
    right: -20px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    cursor: pointer;
    z-index: 10;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #cbd5e1;
    border-radius: 50%;
}

.dot.active {
    background-color: #1a73e8;
    width: 16px;
    border-radius: 4px;
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.slider-arrow.prev-arrow {
    left: -20px;
    right: auto;
}

@media (max-width: 768px) {
    .section-header {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .slider-window {
        overflow: hidden !important;
        width: 100% !important;
    }

    .product-track {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: 800% !important; 
        transition: transform 0.5s ease-in-out !important;
    }

    .product-card-col {
        flex: 0 0 12.5% !important; 
        max-width: 12.5% !important;
        width: 12.5% !important;
        padding: 0 15px !important; 
    }

    .slider-arrow {
        display: flex !important;
        top: 40% !important;
        width: 40px !important;
        height: 40px !important;
        background: #fff !important;
        border: 1px solid #cbd5e1 !important;
        border-radius: 50% !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
    }
    
    .slider-arrow.prev-arrow {
        left: -25px !important;
        right: auto !important;
    }
    
    .slider-arrow.next-arrow {
        right: -12px !important;
        left: auto !important;
    }
}

/* mattress size */
/* Custom 5 Column layout ruleset tracking logic for Bootstrap 5 Row grids */
@media (min-width: 1200px) {
    .col-lg-2-4 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

/* Size grid visual interactive feedback card state animations */
.size-premium-card {
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease-in-out !important;
}
.size-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 86, 179, 0.15) !important;
}

/* Mobile horizontal scroll tracking for ultra-smooth layout rendering flow */
.custom-size-scrollbar {
    scrollbar-width: none; /* Firefox native hidden tracker */
}
.custom-size-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge core hidden tracker */
}

/* Custom Vector Images Max Width Frame Logic */
.custom-bed-vector {
    max-height: 100px;
    object-fit: contain;
}

/* shop by material */
/* Bento Grid Layout Box System Core Logic */
.bento-material-card {
    text-decoration: none !important;
    outline: none !important;
}

/* Image Background Frame Mask Layer */
.bento-material-card .material-img-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Zoom Hover Animation on Content Element Click Frame */
.bento-material-card:hover .material-img-bg {
    transform: scale(1.06);
}

/* Linear Gradient Overlay for High Text Readability */
.bento-material-card .material-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%) !important;
    z-index: 2;
}

/* Arrow Circle Transform Effect */
.bento-material-card .bento-arrow-circle {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s !important;
}
.bento-material-card:hover .bento-arrow-circle {
    transform: scale(1.1) rotate(-45deg);
    background-color: #0056b3 !important;
}
.bento-material-card:hover .bento-arrow-circle i {
    color: #ffffff !important;
}

/* Coming Soon Element Card Adjustments */
.coming-soon-wrapper .material-card-overlay {
    background: linear-gradient(to top, rgba(0, 32, 70, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%) !important;
}

/* Align heights on desktop layouts smoothly */
@media (min-width: 992px) {
    .spec-masonry-height {
        min-height: 450px;
    }
}
/* About Sughana */

/* Editorial SEO Content Block Styles */
.brand-story-seo-section h2,
.brand-story-seo-section h3,
.brand-story-seo-section h4 {
    letter-spacing: -0.3px !important;
    color: #1a202c !important;
}

.brand-story-seo-section p {
    color: #5a6578 !important; /* Premium neutral dark grey for optimal readability */
    text-align: justify;
}

/* Specific styling layout fixes for bolded inline SEO target tags */
.brand-story-seo-section strong {
    color: #000000 !important;
    font-weight: 600 !important;
}

@media (max-width: 767px) {
    .brand-story-seo-section p {
        text-align: left; /* Fallback fluid formatting for minor screen breakpoints */
        font-size: 0.9rem !important;
    }
}

/* FAQ */
/* Custom FAQ Accordion Arrow Override Framework */
.custom-expert-accordion .accordion-item {
    border-color: #f1f3f5 !important;
}

.custom-expert-accordion .accordion-button {
    font-size: 1rem !important;
    color: #212529 !important;
    transition: color 0.2s ease;
}

/* Custom Circular Arrow Integration matching Kurlon reference UI layout */
.custom-expert-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3E%3Cpath fill-rule='evenodd' d='M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 ...'/%3E%3C/svg%3E") !important;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background-size: 14px;
    background-position: center;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s !important;
}

/* Active State Arrow rotation settings */
.custom-expert-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg) !important;
    background-color: #0056b3 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 ...'/%3E%3C/svg%3E") !important;
    border-color: #0056b3 !important;
}

/* Remove default Bootstrap focus shadow ring blue color overlay completely */
.custom-expert-accordion .accordion-button:focus {
    box-shadow: none !important;
    color: #0056b3 !important;
}

/* Footer */
/* Footer Specific Interactivity Nodes Style Override */
.main-corporate-footer .hover-link {
    transition: color 0.2s ease, padding-left 0.2s ease !important;
}
.main-corporate-footer .hover-link:hover {
    color: #0056b3 !important;
    padding-left: 2px;
}

/* Contact Box Transformation Logic */
.main-corporate-footer .hover-widget {
    border-color: #e2e8f0 !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}
.main-corporate-footer .hover-widget:hover {
    border-color: rgba(0, 86, 179, 0.3) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04) !important;
    color: #0056b3 !important;
}

/* Active Highlight Setup for Navigation Blocks */
.main-corporate-footer h5 {
    letter-spacing: -0.1px;
}

/* Floating Buttons General Blueprint */
    .floating-btn {
        position: fixed;
        bottom: 30px; /* Tharaiyil irundhu unique gap spacing */
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff !important;
        font-size: 28px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease-in-out;
        z-index: 9999; /* Overlapping structure fix */
        text-decoration: none;
    }

    /* Phone Button Positioning - LEFT Side */
    .phone-btn {
        left: 30px;
        background-color: #0056b3; /* Sleek Industrial Royal Blue */
    }

    /* WhatsApp Button Positioning - RIGHT Side */
    .whatsapp-btn {
        right: 30px;
        background-color: #25D366; /* Standard WhatsApp Brand Green */
    }

    /* Hover State Effects */
    .floating-btn:hover {
        transform: scale(1.1) translateY(-5px);
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    }

    /* Mobile View Optimization Padding Fixes */
    @media (max-width: 576px) {
        .floating-btn {
            width: 50px;
            height: 50px;
            font-size: 24px;
            bottom: 20px;
        }
        .phone-btn { left: 20px; }
        .whatsapp-btn { right: 20px; }
    }