/* section{
        padding: 0px !important;
} */
/* 🔥 Transparent Premium Header */

.premium-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

/* Transparent initially */
.navbar {
    background: transparent;
    backdrop-filter: blur(0);
    transition: all 0.3s ease;
}

/* 🔥 Active class when scrolling */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Navbar Glass Effect */
.navbar {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 15px 0 !important;
}

/* Logo */
.logo {
    font-size: 24px !important;
    font-weight: bold !important;
    color: #ff2c6d !important;
}

/* Nav Links */
.nav-link {
    color: #ccc !important;
    font-weight: 500 !important;
    margin-left: 20px;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

/* Dropdown Menu - FIXED POSITIONING */
.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    background: #111;
    border-radius: 10px;
    border: none;
    padding: 10px 0 !important;
    margin-top: 0.5rem;
    min-width: 200px;
}

@media (min-width: 992px) {

    .navbar-nav .dropdown-menu {
        display: none;
        opacity: 0;
        transition: 0.3s;
    }

    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
    }
}

/* Bootstrap overrides for when dropdown is shown via click */
@media (min-width: 992px) {
    /* Override Bootstrap's inline styles */
    .navbar-nav .dropdown-menu.show {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 100% !important;
        margin-top: 0.5rem;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Fix for Bootstrap's data-bs-display="static" */
    .navbar-nav .dropdown-menu[data-bs-popper] {
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-top: 0.5rem;
    }
}

/* Dropdown Items */
.dropdown-item {
    color: #ccc !important;
    padding: 10px 20px !important; /* Fixed padding */
    text-align: center; /* Optional: centers text in dropdown */
}

.dropdown-item:hover {
    background: #222;
    color: #0c0c0c !important;
}

/* Mobile styles */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        position: static !important;
        margin-top: 0;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        background: rgba(0, 0, 0, 0.8);
        width: 100%;
        text-align: center;
    }

    .dropdown-item {
        text-align: center;
        padding: 10px 0 !important;
    }

    .navbar-nav .nav-link {
        text-align: center;
        margin-left: 0;
        padding: 10px 0;
    }
}

/* Optional: Add a subtle arrow to dropdown */
.dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

/* Rotate arrow when dropdown is shown */
.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}
/* Dropdown container */
.custom-dropdown {
    background: rgba(17, 17, 17, 0.85); /* slightly transparent */
    backdrop-filter: blur(12px); /* frosted glass effect */
    border-radius: 12px;
    padding: 5px 0;
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Each item - slim and modern */
.custom-dropdown .dropdown-item {
    display: block;
    padding: 8px 16px; /* slimmer padding */
    margin: 3px 10px; /* spacing between items */
    border-radius: 8px; /* subtle rounding */
    color: #fff !important;
    font-weight: 500;
    text-align: left; /* align text to left for clean look */
    background: transparent; /* no big black blocks */
    transition: all 0.3s ease;
}

/* Hover effect */
.custom-dropdown .dropdown-item:hover {
    background: linear-gradient(90deg, #facc15, #f59e0b); /* golden hover */
    color: #111 !important;
    transform: translateX(4px); /* subtle slide */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {

    /* Reduce image height */
    .carousel-img {
        height: 60vh;
    }
}
.carousel-img {
    height: 80vh;
    object-fit: cover;
}

/* Dark overlay */
.carousel-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.4)
    );
    top: 0;
    left: 0;
}

.premium-carousel {
    width: 100%;
}

.carousel-item {
    aspect-ratio: 4 / 5 !important; /* Taller on mobile (portrait ratio) */
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tablet: Medium height */
@media (min-width: 768px) {
    .carousel-item {
        aspect-ratio: 3 / 4 !important; /* Still tall but better for tablets */
    }
}

/* Desktop: Widescreen */
@media (min-width: 1024px) {
    .carousel-item {
        aspect-ratio: 21 / 9 !important; /* Taller on desktop as you wanted */
    }
}

/* Large desktop: Even wider */
@media (min-width: 1440px) {
    .carousel-item {
        aspect-ratio: 24 / 10 !important;
    }
}
/* Smooth fade */
.carousel-fade .carousel-item {
    transition: opacity 1s ease-in-out;
}

/* Controls styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 60% 60%;
    filter: invert(1);
}

/* Center the button */
.carousel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}



/* Premium button style */
/* =========================
   Button - Browse Locations
============================ */
.btn-location {
    background: linear-gradient(45deg, #ff0055, #ff3366) !important;
    color: #fff !important;
    padding: 18px 38px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    border: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Glow Effect */
.btn-location:hover {
    box-shadow: 0 10px 25px rgba(255, 0, 102, 0.5) !important;
    transform: translateY(-2px) !important;
    border: none !important;
}

/* =========================
   Dropdown Menu Container
============================ */
.dropdown-menu-location {
    background: rgba(20, 20, 20, 0.95);   /* glassy dark */
    backdrop-filter: blur(12px);          /* frosted glass effect */
    border-radius: 12px;
    padding: 8px 0;
    min-width: 220px;                     /* width of dropdown */
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.25s ease;
    text-align: center;                   /* center dropdown text */
    overflow: hidden;
}

/* Dropdown Items */
.dropdown-menu-location .dropdown-item {
    display: block;
    width: 100%;              /* full width */
    padding: 12px 20px;
    margin: 0;                /* remove side gaps */
    border-radius: 0;         /* full-width hover background */
    color: #fff;
    font-weight: 500;
    background: transparent;
    transition: all 0.25s ease;
    text-align: center;
    cursor: pointer;
}

/* Hover Effect - Full Width Gradient + Glow */
.dropdown-menu-location .dropdown-item:hover {
    background: linear-gradient(90deg, #facc15, #f59e0b);
    color: #111 !important;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.5); /* subtle glow */
    transform: none; /* remove translateX to make full width */
}

.dropdown-menu-location {
    animation: none;
}

/* =========================
   Optional Smooth Fade Animation
============================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   Overlay & Carousel Centering
============================ */
.overlay {
    z-index: 1;
}

.carousel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

/* Scroll indicator container */
.scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Mouse shape */
.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
    opacity: 0.9;

    /* Bounce animation */
    animation: bounce-real 1.6s infinite;
}

/* Dot inside */
.mouse::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #fff;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}

/* 🔥 Realistic bounce */
@keyframes bounce-real {
    0% {
        transform: translateY(0);
        animation-timing-function: ease-in;
    }

    35% {
        transform: translateY(25px);
        animation-timing-function: ease-out;
    }

    55% {
        transform: translateY(-12px);
        animation-timing-function: ease-in;
    }

    70% {
        transform: translateY(10px);
        animation-timing-function: ease-out;
    }

    85% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.welcome-section {
    padding: 80px 0 !important;
    background: #0b0b0f;
    color: #fff;
}

.welcome-title {
    font-size: 36px;
    font-weight: 700 !important;
    margin-bottom: 20px;
}

.welcome-title span {
    color: #ff2c6d;
}

.welcome-text {
    /* max-width: 750px; */
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #bbb;
}

.gradient-text1 {
    background: linear-gradient(
        to right,
        #facc15,
        #f59e0b
    ); /* yellow → amber */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================= */
/* SECTION BACKGROUND */
/* ============================= */
.dark-section {
    background: linear-gradient(to bottom, #0b0b0f, oklch(21% 0.034 264.665));
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* ============================= */
/* HEADING DEFAULT & HOVER GRADIENT */
/* ============================= */
/* DEFAULT */
.gradient-text7 {
    color: #fff;
    display: inline-block; /* important for gradient */
    transition: all 0.4s ease;
}

/* HOVER EFFECT */
.gradient-text7:hover {
    background: linear-gradient(to right, #facc15, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================= */
/* GLASS CONTENT BOX */
/* ============================= */
.content-box-glass {
    background: linear-gradient(
        to bottom right,
        rgba(31, 41, 55, 0.4),
        rgba(17, 24, 39, 0.4)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 114, 128, 0.4);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    padding: 2rem !important;
}

/* Box hover glow + lift */
.content-box-glass:hover {
    border-color: rgba(250, 204, 21, 0.6);
    box-shadow:
        0 20px 50px rgba(250, 204, 21, 0.15),
        inset 0 0 20px rgba(250, 204, 21, 0.05);
    transform: translateY(-6px);
}

/* ============================= */
/* IMAGE BOX / IMAGE STYLING */
/* ============================= */
.col-lg-6.mb-4.mb-lg-0:first-child {
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
}

/* Make image cover container and scale on hover */
.col-lg-6.mb-4.mb-lg-0:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures image covers container */
    transition: all 0.4s ease;
    border-radius: 16px;
    display: block;
}

/* Hover effect for image */
.col-lg-6.mb-4.mb-lg-0:first-child:hover img {
    transform: scale(1.08); /* zoom slightly */
    filter: brightness(1.1); /* brighten */
}

/* Add border/glow around image on hover */
.col-lg-6.mb-4.mb-lg-0:hover {
    border: 2px solid rgba(250, 204, 21, 0.6);
    box-shadow: 0 20px 50px rgba(250, 204, 21, 0.15);
    border-radius: 16px;
}

/* ============================= */
/* TEXT COLORS INSIDE BOX */
/* ============================= */
.text-light-50 {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

/* ============================= */
/* SEPARATOR LINES */
hr {
    border-color: rgba(255, 255, 255, 0.819);
    margin: 2rem 0;
}

/* ============================= */
/* SPACING FOR CONTENT SECTIONS */
.content-section {
    margin-bottom: 1.5rem;
}
.dark-cont {
    background: oklch(21% 0.034 264.665);
}

/* SECTION BACKGROUND */
.location-section {
    background: linear-gradient(to bottom, #000, #111827);
}

/* TEXT */
.text-light-50 {
    color: rgba(255, 255, 255, 0.6);
}

/* GRADIENT TEXT */
.gradient-text {
    background: linear-gradient(to right, #facc15, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CUSTOM 5 COLUMNS */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* CARD */
.location-card {
    position: relative !important;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
    transition: 0.4s;
}

/* IMAGE */
.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* OVERLAY */
.location-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

/* BORDER EFFECT */
.location-card .border-effect {
    position: absolute !important;
    inset: 0;
    border: 2px solid rgba(250, 204, 21, 0.3);
    border-radius: 16px;
    z-index: 2;
    transition: 0.3s;
}

/* TITLE */
.location-card h3 {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600 !important;
    z-index: 3;
    transition: 0.3s;
}

/* HOVER */
.location-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 15px 35px rgba(250, 204, 21, 0.25);
}

/* IMAGE ZOOM */
.location-card:hover img {
    transform: scale(1.1);
}

/* BORDER GLOW */
.location-card:hover .border-effect {
    border-color: rgba(250, 204, 21, 0.9);
}

/* TITLE COLOR */
.location-card:hover h3 {
    color: #facc15;
}

/* SHINE EFFECT */
.location-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.7s;
    z-index: 4;
}

.location-card:hover::after {
    left: 120%;
}

/* Gradient Heading */
.gradient-text {
    background: linear-gradient(to right, #facc15, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card */
.product-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Hover Effect */
.product-card:hover {
    border-color: rgba(236, 72, 153, 0.6);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.2);
}

/* Image Box */
.image-box {
    position: relative;
    aspect-ratio: 3/4;    /* ✅ fixed height */
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;       /* ✅ fill container */
    object-fit: cover;  /* ✅ crop properly */
    object-position: top; /* 👈 best for profile faces */
    transition: transform 0.5s ease;
}
/* Zoom Effect */
.product-card:hover img {
    transform: scale(1.05);
}

/* Dark Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* Content on Image */
.content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px !important;
    color: #fff;
}

.content h5 {
    margin-bottom: 5px;
    font-weight: 600 !important;
}

.content p {
    font-size: 14px;
    color: #ddd;
}

/* Button Hover Glow */
.btn-warning {
    transition: 0.3s;
}

/* Gradient text */
.gradient-text3 {
    background: linear-gradient(to right, #fb7185, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card style */
.service-card {
    background: linear-gradient(
        to bottom right,
        rgba(31, 41, 55, 0.3),
        rgba(17, 24, 39, 0.3)
    );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* Hover effect */
.service-card:hover {
    border-color: rgba(236, 72, 153, 0.6);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.2);
}

/* Icon box */
.icon-box {
    width: 60px;
    height: 60px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(
        to bottom right,
        rgba(244, 63, 94, 0.2),
        rgba(236, 72, 153, 0.2)
    );
    font-size: 26px;
    color: #ec4899;
    transition: 0.3s;
}

/* Icon hover */
.service-card:hover .icon-box {
    transform: scale(1.1);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(to right, #facc15, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Feature items */
.feature-item h3 {
    transition: 0.3s;
}

.feature-item:hover h3 {
    color: #facc15 !important;
}
/* Icon */
/* ================= ICON WRAPPER (VIDEO STYLE EFFECT) ================= */

.icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    color: #facc15;

    position: relative;
    z-index: 1;
    overflow: hidden;

    background: #0f172a; /* dark base */
}

/* 🔥 ROTATING GRADIENT BORDER */
.icon-wrapper::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(#facc15, #f59e0b, transparent, #facc15);
    animation: rotateBorder 3s linear infinite;
    z-index: 0;
}

/* inner mask (creates border effect) */
.icon-wrapper::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #0f172a;
    border-radius: 50%;
    z-index: 1;
}
.icon-wrapper {
    flex-shrink: 0;   /* 🔥 IMPORTANT FIX */
}

/* icon above everything */
.icon-wrapper i {
    position: relative;
    z-index: 2;
    transition: 0.4s;
}

.text-light-50{
    font-size: 18px !important;
}

.text-secondary{
    font-size: 18px !important;
}
/* ================= HOVER EFFECT ================= */

.feature-item:hover .icon-wrapper {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.4);
}

/* glow fill on hover */
.feature-item:hover .icon-wrapper::after {
    background: linear-gradient(135deg, #facc15, #f59e0b);
}

/* icon color change */
.feature-item:hover .icon-wrapper i {
    color: #000;
    transform: scale(1.2);
}

/* ================= ANIMATION ================= */

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Image box */
.image-box {
    border-radius: 20px;
    overflow: hidden;
}

/* Image overlay */
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

/* Corner borders */
.corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border-color: rgba(250, 204, 21, 0.5);
}

.top-left {
    top: -5px;
    left: -5px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.bottom-right {
    bottom: -5px;
    right: -5px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.feature-item:hover h5 {
    color: #facc15 !important;
}

   .faq-section {
        background: linear-gradient(to bottom, #000, #111827);
        padding: 80px 0;
        font-family: 'Segoe UI', system-ui, -apple-system, 'Inter', 'Poppins', sans-serif;
    }

    .faq-section .fw-bold {
        font-size: 2.8rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: -0.5px;
    }

    .faq-section .text-warning {
        color: #f59e0b !important;
        position: relative;
        display: inline-block;
    }

    .faq-section .text-muted-light {
        color: #9ca3af !important;
        font-size: 1.1rem;
        margin-top: 12px;
        font-weight: 400;
    }

    /* Accordion Item Styling - No hover effects */
    .accordion {
        --bs-accordion-bg: transparent;
        --bs-accordion-border-width: 0;
        --bs-accordion-border-radius: 20px;
        --bs-accordion-inner-border-radius: 20px;
        --bs-accordion-btn-focus-box-shadow: none;
        --bs-accordion-active-bg: rgba(245, 158, 11, 0.08);
        --bs-accordion-btn-focus-border-color: none;
    }

    .accordion-item {
        background: rgba(17, 24, 39, 0.7);
        backdrop-filter: blur(2px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px !important;
        margin-bottom: 18px;
        overflow: hidden;
        transition: none;
    }

    .accordion-header {
        border-radius: 20px;
    }

    .accordion-button {
        background: rgba(0, 0, 0, 0.4);
        color: #f3f4f6;
        font-weight: 600;
        font-size: 1.1rem;
        padding: 1.3rem 1.8rem;
        border-radius: 20px !important;
        box-shadow: none;
        transition: none;
        gap: 8px;
    }

    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(0, 0, 0, 0.3));
        color: #fff;
        border-bottom: 1px solid rgba(245, 158, 11, 0.3);
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }

    .accordion-button::after {
        filter: invert(0.7) brightness(1.2);
        background-size: 1.2rem;
        margin-left: auto;
    }

    .accordion-button:not(.collapsed)::after {
        filter: invert(0.6) sepia(1) saturate(10) hue-rotate(350deg);
    }

    .accordion-button i {
        font-size: 1.2rem;
        color: #f59e0b;
        width: 28px;
        transition: none;
    }

    .accordion-body {
        background: #111827;
        color: #fff;
        padding: 1.4rem 1.8rem;
        font-size: 1.1rem;
        line-height: 1.5;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        border-top: none;
    }

    .accordion-body i {
        color: #f59e0b;
        font-size: 0.85rem;
    }

    /* custom icon for body arrow */
    .accordion-body .fa-arrow-right {
        opacity: 0.8;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .faq-section {
            padding: 60px 20px;
        }
        .faq-section .fw-bold {
            font-size: 2rem;
        }
        .accordion-button {
            padding: 1rem 1.2rem;
            font-size: 1rem;
        }
        .accordion-body {
            padding: 1.2rem;
        }
        .accordion-button i {
            margin-right: 8px;
        }
    }

    /* smooth scrolling and modern look */
    .accordion-collapse {
        transition: all 0.3s ease-out;
    }

    .glass-button {
  padding: 1rem 2.5rem;  /* px-10 py-4 equivalent */
  background: rgba(255, 255, 255, 0.1);  /* bg-white/10 */
  backdrop-filter: blur(8px);  /* backdrop-blur-sm */
  color: white;
  font-weight: 600;  /* font-semibold */
  border-radius: 0.5rem;  /* rounded-lg */
  border: 1px solid rgba(255, 255, 255, 0.2);  /* border-white/20 */
  text-transform: uppercase;  /* uppercase */
  letter-spacing: 0.05em;  /* tracking-wider */
  cursor: pointer;
  transition: all 0.3s ease;  /* transition-all duration-300 */
}

.glass-button:hover {
  background: rgba(255, 255, 255, 0.2);  /* hover:bg-white/20 */
  transform: translateY(-2px);  /* optional hover effect */
}

