:root {
    --primary-green: #01b4c0;
    --accent-yellow: #180958;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* ================= HEADER SECTION ================= */
.main-header {
    background-color: rgb(248, 248, 248);
    position: absolute;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-area {
    width: 200px;
}

.logo-box {
    background-color: var(--accent-yellow);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #000;
}

.logo-text {
    font-weight: 700;
    color: var(--white);
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.menu-trigger {
    border: 1px solid var(--accent-yellow);
    padding: 8px 18px;
    border-radius: 4px;
    color: var(--accent-yellow);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.menu-trigger:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

.desktop-menu-bar {
    background-color: var(--primary-green);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link-v2 {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-link-v2:hover {
    color: var(--accent-yellow);
}

/* SEARCH & ICONS */
.search-container {
    background-color: var(--accent-yellow);
    border-radius: 4px;
    padding: 2px;
}

.search-container input {
    border: none;
    font-size: 0.85rem;
    padding-left: 15px;
}

.btn-search {
    background-color: var(--accent-yellow);
    color: var(--white);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 8px 20px;
    border-radius: 4px !important;
}

.icon-group {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-yellow);
    cursor: pointer;
}

.badge-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-yellow);
    color: var(--white);
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cart-price {
    background-color: var(--accent-yellow);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* ================= ACCOUNT SIDEBAR (RIGHT) ================= */
.sidebar-account {
    width: 350px !important;
    border-left: none;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #888;
    letter-spacing: 1.2px;
    padding: 25px 25px 10px;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
}

.sidebar-menu li a:hover {
    background: #f8f9fa;
    color: var(--accent-yellow);
}

.sidebar-menu i {
    width: 20px;
    font-size: 1.1rem;
    color: #555;
}

/* ================= MOBILE BOTTOM NAV ================= */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid #eee;
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
}

.nav-item i {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: #333;
}

.nav-badge {
    position: absolute;
    top: -6px;
    right: 4px;
    background: var(--accent-yellow);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 10px;
}

/* ================= MOBILE VIEW ADJUSTMENTS ================= */
.bg-dark-green {
    background-color: var(--white) !important;
    text-align: start;
}

.logo-box-sm {
    background: var(--accent-yellow);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .sidebar-account {
        width: 85% !important;
    }

    .main-header {
        position: relative;
        background-color: var(--white);
    }
}

.offcanvas.show:not(.hiding), .offcanvas.showing {
    transform: none;
    width: 250px;
}

.offcanvas-body{
    text-align: start !important;
}

/* ================= CAROUSEL SECTION ================= */
/* BASE */
.carousel-item {
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* OVERLAY */
.carousel-caption-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

/* CONTENT */
.content-box {
    max-width: 600px;
    padding-top: 500px; /* ❌ remove 550px issue */
}

/* TEXT */
.badge-new {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.badge-new span {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.main-heading {
    color: #fff;
    font-weight: 800;
    font-size: 42px;
    line-height: 1.2;
    text-transform: uppercase;
}

.sub-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* BUTTON */
.btn-learn {
    background-color: #fff;
    color: #000;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 4px;
    border: none;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-learn:hover {
    background-color: var(--accent-yellow);
    transform: translateY(-3px);
}

/* NAVIGATION */
.carousel-navigation-bottom {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.nav-arrow {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
}

.num {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.progress-line-container {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.6);
}

.progress-line-fill {
    height: 100%;
    width: 0%;
    background: var(--primary-green);
}

.animate-progress {
    animation: fillProgress 5s linear infinite;
}

@keyframes fillProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
    .main-heading {
        font-size: 34px;
    }

    .sub-text {
        font-size: 1rem;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .carousel-item {
        height: 40vh;
    }

    .carousel-caption-overlay {
        align-items: flex-end;
        padding: 20px;
        padding-bottom: 90px;
        background: linear-gradient(to top, rgba(0,0,0,0.95) 20%, rgba(0,0,0,0.5) 60%, transparent 100%);
    }

    .content-box {
        max-width: 100%;
    }

    .main-heading {
        font-size: 22px;
        line-height: 1.3;
    }

    .sub-text {
        font-size: 0.9rem;
    }

    .badge-new {
        font-size: 0.7rem;
    }

    .btn-learn {
        padding: 8px 18px;
        font-size: 0.7rem;
    }

    .carousel-navigation-bottom {
        bottom: 15px;
        width: 100%;
        left: 40%;
        justify-content: center;
    }

    .progress-line-container {
        width: 80px;
    }
}

/* ================ WHITE INFO BAR START ======================== */

.info-bar-section-white {
    background-color: #ffffff;
    /* White Background */
    padding: 25px 0;
    /* Vertical padding increase panniruken */
    border-bottom: 1px solid #eeeeee;
    /* Light border for separation */
    overflow: hidden;
}

.infoSwiper {
    width: 100%;
}

.info-item-bold {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Icon-kum text-kum gap increase */
    color: var(--primary-green);
    /* Dark Green Text (#0f2e26) */
    transition: 0.3s ease;
}

/* Icons Perusaakkurathu */
.info-item-bold i {
    color: var(--accent-yellow);
    /* Yellow Icon (#fdc402) */
    font-size: 1.8rem;
    /* Icon size increased from 1.2 to 1.8 */
}

/* Text Bold and Perusaakkurathu */
.info-item-bold span {
    font-size: 1.05rem;
    /* Text size increased */
    font-weight: 800;
    /* Extra Bold */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

/* Continuous Marquee Effect */
.infoSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.infoSwiper .swiper-slide {
    width: auto !important;
    padding: 0 60px;
    /* Space between slides increase panniruken */
}

/* Hover Effect */
.info-item-bold:hover {
    transform: scale(1.05);
    /* Konjam zoom aagum */
    color: #000;
}

/* ================== CATEGORY START ======================= */


.category-grid-section {
    background-color: #ffffff;
}

.cat-card {
    background-color: #f4f4f4;
    /* Light grey footer area */
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
    border: none;
    height: 100%;
}

.cat-img-box {
    width: 100%;
    height: auto;
    /* Desktop height */
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-card:hover .cat-img-box img {
    transform: scale(1.1);
}

.cat-details {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f4f4;
}

.cat-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.cat-arrow-btn {
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-size: 0.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.cat-arrow-btn:hover {
    background-color: var(--accent-yellow);
    /* #fdc402 */
    color: #000;
    transform: rotate(-45deg);
    /* Small animation effect */
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
    .cat-img-box {
        height: 180px;
        /* Mobile height korachiruken so that 2 per row looks good */
    }

    .cat-details {
        padding: 12px;
        flex-direction: column;
        /* Optional: text mela, arrow keela variable space kaga */
        align-items: flex-start;
        gap: 10px;
    }

    /* Row logic for mobile to have arrow at corner */
    .cat-details {
        flex-direction: row;
        align-items: center;
    }

    .cat-title {
        font-size: 0.75rem;
        /* Text size mobile ku adjust panniyachu */
        line-height: 1.2;
    }

    .cat-arrow-btn {
        width: 32px;
        height: 32px;
        font-size: 0.65rem;
    }
}


/* ============ PRODUCTS SECTION START =========== */

.handpicked-section {
    padding: 30px 0;
    background-color: #fff;
}

/* Header Styles */
.main-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
    margin: 0;
}

.title-line {
    width: 60px;
    height: 1px;
    background-color: #000;
}

.sub-title {
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.view-all-link {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.view-all-link:hover {
    color: var(--accent-yellow);
    border-bottom: 2px solid var(--accent-yellow);
}

/* Product Card V2 Styles */
.product-card-v2 {
    transition: 0.3s;
    height: 100%;
}

.img-bg-box {
    background-color: #f6f6f6;
    /* Image background like shown in image */
    /* height: 380px; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.img-bg-box img {
    max-width: 100%;
    max-height: 85%;
    object-fit: cover;
    transition: 0.5s ease;
}

.product-card-v2:hover .img-bg-box img {
    transform: scale(1.1);
}

/* Hover Icons */
.hover-actions {
    position: absolute;
    top: 15px;
    right: -50px;
    /* Initially hidden */
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.4s ease;
}

.product-card-v2:hover .hover-actions {
    right: 15px;
    /* Slide in on hover */
}

.action-btn {
    background-color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.action-btn:hover {
    background-color: var(--accent-yellow);
    color: white;
}

/* Details Section */
.product-details-v2 {
    padding: 15px 0;
}

.rating-stars {
    color: #ccc;
    /* Default grey stars */
    font-size: 0.75rem;
    margin-bottom: 8px;
}

/* If you want yellow stars on some products */
.rating-stars i.fa-solid {
    color: #ccc;
}

.headeing-name{
    font-weight: bold;
    color: var(--primary-green);
}

.p-name {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    color: #333;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Truncate text to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p-price {
    font-size: 1rem;
    font-weight: 800;
    color: #000;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.2rem;
    }

    .img-bg-box {
        height: 200px;
    }

    .handpicked-section {
        padding: 40px 0;
    }

    /* Mobile-la left space thalli venam full width venum na use this: */
    .container-fluid.ps-lg-5 {
        padding-left: 15px !important;
    }
}

/* <!-- =============== GUIDE SECTION START ============== --> */

.guide-section {
    background-color: #f8f9fa;
}

.guide-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.step-subtitle {
    font-size: 0.7rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 1.5px;
}

.guide-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.3;
}

/* Stepper Logic */
.stepper-wrapper {
    position: relative;
}

.step-item {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #999;
    z-index: 2;
    transition: 0.3s;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #adb5bd;
    /* Inactive color */
    margin-bottom: 5px;
    transition: 0.3s;
}

.step-content p {
    font-size: 0.85rem;
    color: #999;
    display: none;
    /* Initially hide all descriptions */
    max-width: 350px;
}

/* Active Step Styling */
.step-item.active .step-number {
    background-color: var(--accent-yellow);
    /* #fdc402 */
    color: var(--white);
    box-shadow: 0 0 0 5px rgba(253, 196, 2, 0.2);
}

.step-item.active .step-content h5 {
    color: #000;
}

.step-item.active .step-content p {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Vertical Line between numbers */
.step-line {
    position: absolute;
    left: 19px;
    top: 40px;
    width: 2px;
    height: calc(100% - 40px);
    background-color: #e9ecef;
    z-index: 1;
}

.step-item.active .step-line {
    background-color: var(--accent-yellow);
}

/* Image styling */
.guide-img-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .guide-img-container img {
        height: 300px;
    }

    .guide-title {
        font-size: 1.5rem;
    }
}


/* <!-- ================= BRAND LOGO SECTION START ====================== --> */


.brand-section-ten {
    background-color: #ffffff;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
    padding: 40px 0;
}

/* Flexbox Grid for 10 items */
.brand-grid-ten {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Base item styling */
.brand-item-static {
    padding: 15px;
    text-align: center;
}

.brand-item-static img {
    max-width: 100%;
    height: 70px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.brand-item-static:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ================= RESPONSIVE LOGIC ================= */

/* Desktop: 10 items per row (min-width: 1200px) */
@media (min-width: 1200px) {
    .brand-col {
        flex: 0 0 10%;
        /* Exact 10% for 10 items */
        max-width: 10%;
    }
}

/* Laptops/Tablets: 5 items per row (min-width: 768px to 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .brand-col {
        flex: 0 0 20%;
        /* Exact 20% for 5 items */
        max-width: 20%;
    }

    .brand-item-static img {
        max-width: 100px;
    }
}

/* Mobile: 2 items per row (max-width: 767px) */
@media (max-width: 767px) {
    .brand-col {
        flex: 0 0 50%;
        /* Exact 50% for 2 items */
        max-width: 50%;
    }

    .brand-section-ten {
        padding: 20px 0;
    }

    .brand-item-static img {
        max-width: 80px;
        opacity: 0.7;
    }
}

/* <!-- ================= FEATURED SECTION START ====================== --> */

.featured-section {
    overflow: hidden;
    background-color: #fff;
}

/* --- LEFT SIDE DESIGN --- */
.lifestyle-container {
    position: relative;
    padding-right: 100px;
    /* Space for popout */
}

.lifestyle-img {
    position: relative;
    width: 100%;
    height: 800px;
    border-radius: 15px;
    overflow: hidden;
}

.lifestyle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark tint as per image */
}

/* Vertical Text Logic */
.vertical-text-wrapper {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 10;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
}

.small-vertical {
    font-size: 0.7rem;
    letter-spacing: 3px;
    opacity: 0.8;
}

.large-vertical {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 15px;
}

/* Popout Box Logic */
.product-popout-box {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    background: #f6f6f6;
    /* Light grey bg like image */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.product-popout-box img {
    width: 85%;
    transition: 0.5s;
}

.product-popout-box:hover img {
    transform: scale(1.1);
}

/* --- RIGHT SIDE DESIGN --- */
.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
}

.product-price-v3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 20px 0;
}

.product-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.stock-status {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Quantity Picker */
.quantity-picker {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-picker button {
    border: none;
    background: #fff;
    padding: 10px 15px;
    font-weight: bold;
}

.quantity-picker input {
    width: 50px;
    border: none;
    text-align: center;
    font-weight: 700;
}

/* Buttons */
.btn-add-cart {
    background-color: var(--accent-yellow);
    color: var(--white);
    font-weight: 700;
    padding: 12px 30px;
}

.btn-buy-now {
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-wishlist-v3 {
    background: #f0f0f0;
    border: none;
    padding: 12px 15px;
    border-radius: 4px;
}

.sub-actions span {
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    color: #444;
}

.delivery-info span {
    font-size: 0.9rem;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 991px) {
    .lifestyle-container {
        padding-right: 0;
    }

    .product-popout-box {
        position: relative;
        width: 100%;
        height: 300px;
        top: 0;
        transform: none;
        margin-top: -50px;
        /* Overlap effect for mobile */
    }

    .lifestyle-img {
        height: 400px;
    }

    .large-vertical {
        font-size: 1.5rem;
    }
}


/* <!-- ================= FAQ SECTION START ====================== --> */

.faq-section-v3 {
    /* MUTHAMAA BACKGROUND IMAGE SET PANNIYACHU */
    background:
        url('../all-images/bg-images/4.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect mapla */
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.faq-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    letter-spacing: 0.5px;
}

.faq-subtext {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    max-width: 480px;
}

/* Action Buttons (Circles) */
.faq-action-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-action-item {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.circle-icon {
    width: 55px;
    height: 55px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.action-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

.faq-action-item:hover .circle-icon {
    background-color: var(--accent-yellow);
    /* #fdc402 */
    color: var(--white);
    transform: rotate(360deg) scale(1.1);
    /* Super animation mapla */
}

/* --- ACCORDION STYLING --- */
.custom-faq .accordion-item {
    border: none;
    border-radius: 12px !important;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.9);
    /* Semi-transparent white */
    backdrop-filter: blur(5px);
    /* Modern blur effect */
}

.custom-faq .accordion-button {
    font-weight: 700;
    font-size: 0.95rem;
    padding: 25px;
    color: #000;
    box-shadow: none;
    background-color: transparent;
}

.custom-faq .accordion-button:not(.collapsed) {
    background-color: var(--accent-yellow);
    color: var(--white);
}

.custom-faq .accordion-body {
    padding: 20px 25px 30px 25px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333 !important;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .faq-section-v3 {
        background-attachment: scroll;
        /* Mobile-la parallax venam slow aagum */
        padding: 20px 0;
    }

    .faq-main-title {
        font-size: 1.6rem;
    }

    .faq-action-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: start;
    }
}

@media (max-width: 768px) {
    .circle-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .action-text {
        font-size: 0.75rem;
    }

    .custom-faq .accordion-button {
        padding: 18px;
        font-size: 0.85rem;
    }
}


/* <!-- ================= FOOTER SECTION START ====================== --> */

.main-footer {
    background-color: #000;
}

/* --- LEFT SIDE --- */
.footer-left-bg {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 60px;
}

.footer-left-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 46, 38, 0.85);
    /* Dark Green Overlay */
}

.footer-left-content {
    position: relative;
    z-index: 10;
    color: #fff;
}

.logo-box-v2 {
    background-color: var(--accent-yellow);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #000;
    font-size: 1.2rem;
}

.logo-text-v2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 10px;
    color: #fff;
    vertical-align: middle;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 450px;
    margin: 30px 0;
}

.social-links-v2 a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-right: 12px;
    transition: 0.3s;
}

.social-links-v2 a:hover {
    background: var(--accent-yellow);
    transform: translateY(-5px);
}

/* --- RIGHT SIDE --- */
.footer-right-dark {
    background-color: #000;
    padding: 80px 60px;
}

.newsletter-group {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px;
}

.newsletter-group input {
    border: none;
    font-size: 0.8rem;
}

.btn-submit {
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 10px 25px;
    border-radius: 0;
}

.link-heading {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 25px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

/* Default Arrow Icon and Animation */
.footer-list li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-list li a::before {
    content: '\f105';
    /* FontAwesome angle-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

/* HOVER ANIMATION: Arrow & Text moves right */
.footer-list li a:hover {
    color: var(--white);
    padding-left: 10px;
}

.footer-list li a:hover::before {
    margin-right: 15px;
    color: var(--white);
}

/* --- BOTTOM BAR --- */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    background: #000;
}

.copyright-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    line-height: 1.5;
}

.payment-methods {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.payment-methods img {
    height: 25px;
    background: #fff;
    padding: 4px;
    border-radius: 3px;
}

.back-to-top {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--accent-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.back-to-top:hover {
    background: #fff;
    transform: translateY(-5px);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .footer-left-bg {
        min-height: 350px;
        padding: 40px 20px;
    }

    .footer-right-dark {
        padding: 50px 20px;
    }

    .footer-list li a:hover {
        padding-left: 5px;
    }
}