/*

Template Name: Creative Jewel
Template URL: creativejewel.in
Author Name: Tejas Darji
Author URL: rudradigital.in

*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter Tight", sans-serif;
    background-color: #fff;
    color: #1a1a1a;
    line-height: 1.7;
    font-size: 17px;
    font-weight: 400;
    overflow-x: hidden;
    /* padding-top: 80px; */
    /* Space for fixed navbar */
}

:root {
    --primary-color: #dbaf36;
    --primary-gradient: linear-gradient(135deg, #c5a059 0%, #f7d781 50%, #c5a059 100%);
    --secondary-color: #1a1a1a;
    --text-muted: #86868b;
    --bg-light: #fbfbfd;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 40px 100px rgba(0, 0, 0, 0.08);
    --gutter-luxury: 5%;
    --radius-lg: 60px;
    --radius-md: 30px;
    --radius-sm: 15px;
    --radius-pill: 100px;
}

.container-fluid {
    padding-left: var(--gutter-luxury) !important;
    padding-right: var(--gutter-luxury) !important;
}

.p-0.container-fluid,
.navbar .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Vision & Mission Card Styles */
.vision-mission-card {
    background: #111;
    border-radius: var(--radius-lg);
    padding: 80px;
    position: relative;
    overflow: hidden;
}

.vision-mission-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(219, 175, 54, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.purpose-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.purpose-pill:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(219, 175, 54, 0.3);
    transform: translateY(-5px);
}

.purpose-pill i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}


.glow-text {
    text-shadow: 0 0 30px rgba(219, 175, 54, 0.3);
}

.fw-900 {
    font-weight: 900;
}

.tracking-widest {
    letter-spacing: 0.3em;
}

@media (max-width: 991px) {
    :root {
        --gutter-luxury: 30px;
        --radius-lg: 40px;
    }

    .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.text-gold-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn-luxury {
    background: var(--primary-gradient);
    border: none !important;
    color: #000 !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    padding: 20px 50px !important;
    border-radius: var(--radius-pill) !important;
    transition: var(--transition) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow: 0 10px 30px rgba(219, 175, 54, 0.2);
    display: inline-block;
}

.btn-luxury::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-luxury:hover {
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(219, 175, 54, 0.3);
}

.btn-luxury:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.reveal-img-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.reveal-img-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transform: translateX(-101%);
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2;
}

.reveal-img-container.aos-animate::after {
    transform: translateX(101%);
}

.floating-text {
    position: absolute;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1b1b1b;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.vision-mission-card h1,
.vision-mission-card h2,
.vision-mission-card h3,
.vision-mission-card h4,
.vision-mission-card h5,
.vision-mission-card h6,
.purpose-pill h5,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
    color: #fff !important;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover,
a:hover * {
    text-decoration: none;
    color: #dbaf36;
    transition: all 0.4s;
}

.btn-link {
    color: #232323;
    text-decoration: none;
    position: relative;
}

.btn-link:hover {
    color: #dbaf36;
}

.btn-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background-color: #dbaf36;
    transition: width 0.4s ease;
}

.btn-link:hover::after {
    width: 100%;
}

.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgb(219, 175, 54) !important;
}

.navbar {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 5px 0;
    z-index: 1000;
}


.navbar.scrolled {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px var(--gutter-luxury);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-top: 10px;
    width: 94%;
    left: 3%;
    border-radius: var(--radius-pill);
}

.navbar-brand {
    transform-origin: left;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

a.navbar-brand:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    filter: blur(36px);
    background: linear-gradient(-90deg, #00000085 0%, #000000c9 100%);
    top: 0;
    bottom: 0;
    z-index: -1;
}

.navbar.scrolled .navbar-brand {
    transform: scale(0.85);
}

.navbar.scrolled .navbar-brand:after {
    background: linear-gradient(-90deg, #ffffff 0%, #ffffff 100%);
}

.navbar-nav .nav-item {
    padding: 0px 18px;
}

.logo-main {
    width: 180px;
    height: auto;
    transition: var(--transition);
}

@media (max-width: 991.98px) {
    .logo-main {
        width: 160px;
    }
}

.navbar-nav .nav-item .nav-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 0px;
    font-size: 11px;
    letter-spacing: 0.15em;
    position: relative;
    border-bottom: none;
    margin: 0 5px;
    transition: var(--transition);
}

/* White text for initial transparent state on hero-page */
.hero-page:not(.scrolled) .navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-page:not(.scrolled) .navbar .nav-link:hover {
    color: #fff !important;
}

.scrolled .navbar .nav-link {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-item .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-item.show .nav-link {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-item .dropdown-menu {
    border-radius: 0;
    box-shadow: var(--shadow-premium);
    padding: 30px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #1b1b1b;
}

.btn-primary {
    background-color: #232323;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.text-primary {
    color: #232323 !important;
}

/* Mega menu styles */
.megamenu {
    background: rgba(255, 255, 255, 0.98) !important;
    border-top: none !important;
    min-width: 90vw;
    left: 5vw !important;
    right: 5vw !important;
    border-radius: var(--radius-lg) !important;
    padding: 40px !important;
}

.megamenu h6 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.megamenu .dropdown-item {
    color: var(--secondary-color);
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
}

.megamenu .dropdown-item:hover {
    color: var(--primary-color);
    background: transparent;
    padding-left: 10px;
    transition: all 0.3s ease;
}

.navbar .dropdown-menu {
    border-radius: 0.25rem;
}

/* Ensure dropdown sits below navbar and above other content */
.navbar .dropdown-menu {
    top: 100%;
    z-index: 1050;
    overflow: visible;
}

/* internal padding so columns don't touch viewport edges */
.megamenu .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ensure columns align and don't overlap */
.hero-content {
    position: relative;
    height: 90vh;
    min-height: 600px;
}

.hero-content img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.carousel-caption {
    bottom: 20%;
    left: 10%;
    right: auto;
    max-width: 600px;
    z-index: 100;
}

.carousel-caption * {
    pointer-events: auto;
}

.carousel-caption h1 {
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-caption p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    font-weight: 300;
}

.first_fold .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
}

@media (max-width: 768px) {
    body {
        padding-top: 65px;
    }

    .hero-content {
        height: 50vh;
        min-height: 300px;
    }

    .carousel-caption {
        bottom: 15% !important;
        left: 0 !important;
        right: 0 !important;
        padding: 20px !important;
        text-align: center !important;
        width: 100% !important;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    }

    .carousel-caption h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }

    .carousel-caption p {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }

    .carousel-caption .btn {
        padding: 8px 25px !important;
        font-size: 0.8rem !important;
    }
}

/* Make mega menu full-width on large screens */
@media (min-width: 992px) {
    .navbar .dropdown-menu {
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
        display: block;
        /* render for transitions on desktop */
    }

    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
    }

    /* LTR layout for mega menu on large screens */
    .megamenu {
        text-align: left;
    }

    .megamenu .row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .megamenu h6,
    .megamenu ul,
    .megamenu .dropdown-item {
        text-align: left;
    }

    .megamenu .container {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* On small screens, keep the dropdown as stacked items */
@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
    }

    .megamenu .row>[class*="col-"] {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

.megamenu img {
    max-height: 120px;
    object-fit: cover;
}

.stretched-link {
    color: #232323;
}

/* Final mega-menu fixes: enforce LTR, column sizing, and prevent overlap/horizontal scroll */
/* Anchor dropdown to navbar and prevent viewport overflow */
/* Removed position: relative to maintain fixed-top */

.navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    overflow: visible;
    z-index: 1050;
}

/* Ensure Bootstrap's show class also displays the mega menu */
.navbar .dropdown.show>.dropdown-menu,
.navbar .dropdown:hover>.dropdown-menu {
    display: block;
}

/* Constrain inner container and add horizontal padding so columns don't touch edges */
.megamenu .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Use flex grid reliably and prevent columns from overlapping */
.megamenu .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: flex-start;
}

.megamenu .col-12.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    box-sizing: border-box;
}

/* Provide sensible fallbacks at narrower widths */
@media (max-width: 1199.98px) {
    .megamenu .col-12.col-lg-3 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

@media (max-width: 991.98px) {
    .megamenu .col-12.col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Make dropdown items full width and spaced to avoid visual collision */
.megamenu .dropdown-item {
    display: block;
    padding: 0.35rem 0;
}

.megamenu ul {
    margin: 0;
    padding: 0;
}

.megamenu .list-unstyled li {
    padding: 0;
}

/* Prevent horizontal scroll triggered by any child elements */
html,
body {
    overflow-x: hidden;
}

/* Webflow-like mega menu styles */
.webflow-mega {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
    padding: 1.1rem 0;
    border-top: 2px solid rgba(0, 90, 171, 0.12);
}

.webflow-mega-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.webflow-grid {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.wf-col {
    flex: 1 1 180px;
    min-width: 160px;
    max-width: 1fr;
}

.wf-card {
    background: transparent;
    padding: 0.6rem 0;
}

.wf-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f1f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.wf-card h5 {
    margin: 0 0 0.25rem 0;
    color: #043a66;
    font-size: 1rem;
}

.muted {
    color: #6c757d;
    font-size: 0.92rem;
    margin: 0;
}

.wf-feature {
    flex: 0 0 280px;
    min-width: 220px;
}

.wf-feature-card {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.wf-feature-card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.wf-feature-body h5 {
    margin: 0;
    font-size: 0.98rem;
    color: #043a66;
}

/* Subtle entrance animation */
.webflow-mega .dropdown-menu,
.webflow-mega-inner {
    animation: fadeInUp .18s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop hover: keep menu visible while interacting */
@media (min-width: 992px) {
    .nav-item.dropdown:hover>.webflow-mega {
        display: block;
    }

    .webflow-mega {
        box-shadow: 0 6px 30px rgba(8, 24, 48, 0.08);
    }
}

/* Offcanvas (mobile) menu sizing and style */
.offcanvas.offcanvas-end {
    width: 320px;
    max-width: 85vw;
}

.offcanvas .offcanvas-body {
    padding-top: 0.5rem;
}

.offcanvas .navbar-nav .nav-link {
    padding: 0.6rem 0;
}

.offcanvas.show .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    /* display: block !important; */
}

/* Make nested items tappable in offcanvas by increasing hit area */
.offcanvas .dropdown-item {
    padding: 0.5rem 0;
}

/* Smooth show/hide transitions for mega dropdowns */
.navbar .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 220ms cubic-bezier(.2, .8, .2, 1), transform 220ms cubic-bezier(.2, .8, .2, 1), visibility 220ms linear;
    pointer-events: none;
}

.navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Mobile behavior: keep dropdowns hidden by default and show only when .show is added */
@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        transform: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: none;
        display: none;
    }

    .navbar .dropdown-menu.show {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* Styles adapted from CodePen/Bulma mega menu */
.nav-item.is-mega {
    position: static;
}

.is-mega-menu-title {
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
    font-weight: 700;
    color: #232323;
}

.navbar-content p {
    margin: 0;
}

.navbar-content small {
    display: block;
}

.dropdown-menu {
    background: #fff;
}

.dropdown-item .navbar-content {
    padding: 0.25rem 0;
}

.dropdown-item:hover {
    background: transparent;
    color: #232323;
}

.navbar-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin: .5rem 0;
}

.dropdown-item {
    position: relative;
}

.dropdown-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    /* thickness */
    width: 0;
    /* start collapsed */
    max-width: 100px;
    background-color: #dbaf36;
    /* border color */
    transition: width 0.8s ease;
}

.dropdown-item:hover::after {
    width: 100%;
}

/* Ensure the mega dropdown spans full width and is visually separate */
@media (min-width: 992px) {
    .nav-item.is-mega>.dropdown-menu {
        left: 0;
        right: 0;
        width: 100%;
    }

    .nav-item.is-mega>.dropdown-menu .container-fluid {
        margin: 0 auto;
    }
}


.carousel-indicators [data-bs-target] {
    background-color: #dbaf36;
}


/* Hover effects */
/* Category / product tiles */

.products_section .card-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #f2f2f2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.products_section .card-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(219, 175, 54, 0.3);
}

.card-img-container {
    padding: 15px;
    background: #fcfcfc;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products_section .card-img-container img {
    border-radius: 12px;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-wrapper:hover .card-img-container img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.card-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 20px;
    transition: var(--transition);
    z-index: 2;
}

.card-wrapper:hover .card-actions {
    bottom: 0;
}

.action-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.card-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.products_section a:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 10px 24px rgba(8,24,48,0.08); */
}

.products_section h3 {
    transition: color 200ms ease, transform 200ms ease;
}

/* .products_section a:hover h3{
    color: #232323;
    transform: translateY(-3px);
} */

/* Mega menu dropdown items subtle hover */
.dropdown-item {
    transition: background-color 180ms ease, transform 180ms ease, color 180ms ease;
}

.dropdown-item:hover {
    background-color: rgba(0, 90, 171, 0.04);
    transform: translateX(4px);
    color: #dbaf36;
}

/* Accessibility: ensure focus matches hover */
.dropdown-item:focus,
.splide__slide a:focus,
.products_section a:focus {
    outline: 2px solid rgba(0, 90, 171, 0.18);
    outline-offset: 3px;
}


/* Carousel styling for mega menu featured images */
.mega-carousel {
    max-width: 100%;
    height: 120px;
    overflow: hidden;
}

.mega-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .mega-carousel {
        height: 160px;
    }
}

.my-slider-progress {
    background: #eaeaea;
}

.my-slider-progress-bar {
    background: rgb(255, 209, 24);
    height: 3px;
    transition: width 400ms ease;
    width: 0;
}

.products_section .fs-6 {
    font-size: 15px !important;
}

/* .products_section a:hover .fs-6{
    color: #232323;
} */
.splide__track {
    margin-left: -0.5rem;
}

.splide__slide {
    transition: 1s all;
    /* margin: 0 .5rem !important; */
}

.splide__slide img {
    transition: all 0.4s;
    width: 100%;
}

.splide__slide a:hover img {
    transform: translateY(-6px) scale(1.05);
}

img {
    width: 100%;
    transition: all 0.4s;
}

a:hover img {
    transform: translateY(-6px) scale(1.05);
}

.title {
    font-size: 36px;
    line-height: 40px;
}

.home_banner_section .banner {
    min-height: 390px;
    justify-content: flex-start;
    padding: 55px 55px 55px 55px;
    align-content: center;
    align-items: center;
}

.blog_img:hover img {
    transform: translateY(-6px) scale(1.05);
}

.blog_content small {
    font-size: 12px;
    ;
}

@media screen and (min-width: 1520px) {
    .container-fluid {
        max-width: 1450px;
    }
}



.footer_top h6 {
    font-size: 18px;
    margin-bottom: 32px;
}

.footer_top p,
.footer_top li a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
}

.footer_top li a {
    line-height: 2;
}

.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.tracking-widest {
    letter-spacing: 0.25em;
}

.letter-spacing-1 {
    letter-spacing: 0.1em;
}

.text-hover-warning:hover {
    color: var(--primary-color) !important;
}

.blog_img {
    height: 250px;
    overflow: hidden;
}

.blog_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition) !important;
}

.blog_img:hover img {
    transform: scale(1.1) !important;
}

@media (max-width: 991.98px) {
    .glass-card {
        padding: 25px !important;
        margin: 15px;
        border-radius: 20px;
    }

    .banner {
        padding: 20px !important;
        min-height: 300px !important;
    }

    .title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 575.98px) {
    .card-details {
        padding: 15px;
    }

    .card-details h3 {
        font-size: 0.85rem !important;
    }

    .card-img-container {
        padding: 10px;
    }

    .card-actions {
        display: none;
    }
}


.comments-area {
    margin-top: 60px;
    padding: 40px;
    background: #fafafa;
    border-radius: 20px;
}

.comment-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.comment-box:hover {
    transform: translateY(-4px);
}

.comment-avatar img {
    border-radius: 50%;
}

.comment-header h6 {
    font-weight: 600;
    color: #111;
}

.comment-text {
    color: #555;
    line-height: 1.6;
}

.reply a {
    font-size: 12px;
    color: #c9a050;
    text-transform: uppercase;
    font-weight: 600;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.comment-form input[type="submit"] {
    background: #c9a050;
    border: none;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
}
.comment-form-cookies-consent input{
	width: auto;
}

.post-navigation {
    margin-top: 60px;
}

.nav-post {
    background: #fafafa;
    border-radius: 15px;
    text-decoration: none;
    color: #000;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.nav-post:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.nav-post span {
    letter-spacing: 1px;
    font-size: 12px;
}

.nav-post h5 {
    font-weight: 700;
    line-height: 1.4;
}