/* topbar start */
/* ===== TOP BAR ===== */
.top-bar {
    background-color: #ffcf00;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

/* Layout */
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Contact */
.topbar-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-contact i {
    margin-right: 6px;
}

/* Social icons */
.topbar-social {
    display: flex;
    gap: 8px;
}

.topbar-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    color: #ffcf00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.topbar-social a:hover {
    transform: scale(1.1);
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 575px) {
    /* hide email */
    .topbar-email {
        display: none;
    }

    .topbar-inner {
        flex-direction: row;
    }

    .topbar-contact {
        justify-content: flex-start;
        gap: 0;
    }

    .topbar-phone {
        font-weight: 600;
    }

    .topbar-social {
        justify-content: flex-end;
    }
}

/* topbar end */

/* navbar start */
.creative-pay-btn {
    position: relative;
    background: linear-gradient(135deg, #ffcf00 0%, #f5c400 100%);
    color: white;
    border: none;
    padding: 8px 5px;
    font-size: 16px;
    font-weight: 600;
    /* border-radius: 50px; */
    box-shadow: 0 10px 20px rgba(255, 207, 0, 0.4);
    overflow: hidden;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.creative-pay-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.creative-pay-btn:hover {
    background: linear-gradient(135deg, #ffcf00, #f5c400);
    box-shadow: 0 10px 22px rgba(255, 207, 0, 0.35);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.creative-pay-btn:hover i {
    transform: scale(1.2) rotate(-10deg);
}

/* Shine Animation */
.creative-pay-btn .shine {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: 0.75s;
}

.creative-pay-btn:hover .shine {
    left: 130%;
}

/* Basic nav item style */
.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #000;
}

/* Dropdown menu */
.dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background-color: #fff;
    border: 1px solid #ccc;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Show dropdown on hover */
.nav-item:hover .dropdown-list {
    display: block;
}

/* Dropdown items */
.dropdown-list li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

/* Hover effect with light green */
.dropdown-list li a:hover {
    background-color: #90ee90;
    /* Light Green */
}

.dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background-color: #fff;
    border: 1px solid #ccc;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
}

.nav-item:hover > .dropdown-list {
    display: block;
}

.dropdown-list li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.dropdown-list li a:hover {
    background-color: #fad224;
}

/* Submenu (Nested Dropdown) */
.dropdown-list li.nav-item.dropdown {
    position: relative;
}

.dropdown-list li.nav-item.dropdown:hover > .dropdown-list {
    display: block;
    left: 100%;
    top: 0;
}

.dropdown-list li.nav-item.dropdown > .dropdown-list {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    min-width: 180px;
    z-index: 1001;
}

.navbar-nav .nav-link {
    font-weight: 600;
    /* bold */
    letter-spacing: 0.3px;
    /* premium spacing */
    color: #333;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffd724;
}

@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding: 10px 20px;
        text-align: left;
    }

    .navbar .dropdown-list {
        position: static !important;
        border: none;
        background: transparent;
        margin: 0;
        padding-left: 20px;
    }

    .navbar .dropdown-list li a {
        padding: 6px 0;
    }

    .navbar .dropdown-list .dropdown-list {
        padding-left: 20px;
    }
}

/* for the new section */

.custom-nav-item {
    position: relative;
    list-style: none;
}

.custom-nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333333;
    padding: 10px 15px;
    cursor: pointer;
}

.custom-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 220px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0;
    z-index: 999;
}

.custom-dropdown-list li {
    list-style: none;
}

.custom-dropdown-list li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.custom-dropdown-list li a:hover {
    background-color: #f2f2f2;
}

/* Show dropdown when .show-dropdown class is added */
.custom-nav-item.show-dropdown .custom-dropdown-list {
    display: block;
}

/* Responsive fallback */
@media screen and (max-width: 768px) {
    .custom-dropdown-list {
        position: static;
        box-shadow: none;
    }
}

/* Show dropdown on hover only on desktop */
@media (min-width: 992px) {
    .custom-nav-item.has-dropdown:hover .custom-dropdown-list {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }

    .custom-dropdown-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .custom-nav-item {
        position: relative;
    }

    .custom-dropdown-list li a {
        display: block;
        padding: 10px 15px;
        color: #333;
        text-decoration: none;
    }

    .custom-dropdown-list li a:hover {
        background-color: #f5f5f5;
    }
}

@media (max-width: 767.98px) {
    .mobile-logo-adjust {
        margin-left: 2px !important;
    }
}

.custom-toggler {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 30px;
    width: 30px;
    padding: 0;
    gap: 5px;
}

.custom-toggler span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333 !important;
    /* or your desired color */
    border-radius: 2px;
    transition: 0.3s;
    z-index: 999;
}

.custom-toggler:hover span {
    background-color: #f9d32d;
}

/* navbar end */

/* crousel start */
/* ===== Carousel Styling ===== */
.hero-carousel .carousel-item {
    height: 85vh;
    min-height: 450px;
    position: relative;
}

.hero-carousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Dark overlay */
.hero-carousel .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Caption */
.hero-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 1000px;
    /* width increased */
    width: 90%;
    /* responsive width */
    padding: 0 15px;
}

.hero-caption h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeDown 1s ease;
}

.hero-caption p {
    font-size: 18px;
    margin-bottom: 25px;
    animation: fadeUp 1.2s ease;
}

.hero-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    background: linear-gradient(135deg, #ffcf00, #e6b800);
    color: #fff;
    border: none;
    text-decoration: none;
    transition: 0.4s;
    animation: zoomIn 1.4s ease;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #e6b800, #ffcf00);
    transform: translateY(-2px);
    color: #fff;
}

/* Indicators */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Animations */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */

/* ===== Mobile Height Adjustment ===== */
@media (max-width: 768px) {
    .hero-carousel .carousel-item {
        height: 40vh;
        /* mobile height */
        min-height: 300px;
        /* minimum limit */
    }

    .hero-caption h1 {
        font-size: 28px;
    }

    .hero-caption p {
        font-size: 15px;
    }

    .hero-btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}

/* crousel end */

/* about index start */
/* ===== ABOUT SECTION ===== */
.about-section-v2 {
    background: #ffffff;
}

.about-media {
    border-radius: 12px;
    overflow: hidden;
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #ffcf00;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-title-v2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.about-title-v2 span {
    color: #ffcf00;
}

.about-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-features {
    margin: 20px 0;
}

.about-features div {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
}

.about-features i {
    color: #ffcf00;
    margin-right: 8px;
}

/* ===== CTA BUTTON ===== */
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    background: #ffcf00;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 18px rgba(255, 207, 0, 0.18);
}

.about-cta-btn i {
    transition: transform 0.3s ease;
}

.about-cta-btn:hover {
    background: #ffcf00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 207, 0, 0.35);
}

.about-cta-btn:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .about-title-v2 {
        font-size: 28px;
    }
}

/* about index end */

/* why choose start */
/* ===== WHY CHOOSE US SECTION ===== */
.choose-section-v2 {
    background: #fbf9f3;
}

.choose-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #ffcf00;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.choose-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.choose-title span {
    color: #ffcf00;
}

.choose-subtext {
    font-size: 15px;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Cards */
.choose-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 25px;
    height: 100%;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.choose-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    background: rgba(255, 207, 0, 0.12);
    color: #ffcf00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
}

.choose-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.choose-card p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .choose-title {
        font-size: 28px;
    }
}

/* why choose end */

/* product index start */
/* ===== PRODUCT SECTION ===== */
.product-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff6cc, #ffffff);
    text-align: center;
}

.product-section h2 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 auto 40px;
    position: relative;
    display: inline-block;
    max-width: 720px;
    letter-spacing: 0.5px;
    padding: 0 10px;
    line-height: 1.2;
}

.product-section h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffcf00, #e6b800);
    border-radius: 2px;
}

/* ===== SWIPER ===== */
.swiper {
    width: min(100%, 1320px);
    margin: auto;
    padding-inline: 14px;
    padding-bottom: 60px;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
    box-sizing: border-box;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    min-height: 100%;
    height: 100%;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    min-height: 500px;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    flex-shrink: 0;
}

.product-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
    min-width: 0;
    padding: 1rem 1rem 1rem;
    justify-content: space-between;
}

.product-card__header,
.product-card > .d-flex.justify-content-between.align-items-center.ps-4.pe-4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0.35rem;
    width: 100%;
    min-width: 0;
    padding: 1rem 1rem 0;
    text-align: left;
}

.product-card__header--center {
    align-items: center !important;
    text-align: center;
}

.product-card__meta {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #495057;
    margin: 0;
    width: 100%;
    padding: 0 1rem;
    text-align: left;
    min-height: 44px;
    align-content: flex-start;
}

.product-card__meta span {
    display: inline-flex;
    gap: 0.2rem;
    align-items: center;
    font-weight: 500;
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 0.82rem;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    width: 100%;
    min-width: 0;
    line-height: 1.4;
    overflow-wrap: anywhere;
    text-wrap: balance;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    min-height: calc(1.4em * 2);
}

.product-card > .product-title {
    padding: 1rem 1rem 0;
    text-align: left;
}

.product-card__header .product-card__price,
.product-card
    > .d-flex.justify-content-between.align-items-center.ps-4.pe-4
    .product-card__price {
    align-self: flex-start;
}

.product-card
    > .d-flex.justify-content-between.align-items-center.ps-4.pe-4
    .product-title {
    order: 1;
}

.product-card
    > .d-flex.justify-content-between.align-items-center.ps-4.pe-4
    .product-card__price {
    order: 2;
}

.product-card > .d-flex.justify-content-between.align-items-center.ps-4.pe-4 {
    min-height: 64px;
}

.product-card > .product-title,
.product-card__header {
    min-height: 54px;
}

/* ===== BUTTONS ===== */
.action-box {
    position: static;
    bottom: auto;
    left: auto;
    transform: none;
    display: flex;
    gap: 0.8rem;
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 0 1rem 1rem;
    margin-top: auto;
    min-height: 46px;
}

.btn-action {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    background: #ffcf00;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    overflow-wrap: anywhere;
    white-space: nowrap;
}

.btn-action:hover {
    background: #fff;
    color: #ffcf00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 207, 0, 0.45);
}

/* ===== SWIPER ARROWS ===== */
.swiper-button-next,
.swiper-button-prev {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #ffcf00;
    color: #ffcf00;
    top: 170px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #ffcf00;
    color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .product-card {
        min-height: 470px;
    }

    .product-card img {
        height: 300px;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .product-card {
        min-height: 460px;
    }

    .product-card img {
        height: 285px;
    }

    .product-card__body {
        padding: 0.9rem 0.9rem 0.95rem;
        gap: 0.55rem;
    }

    .product-card__meta {
        min-height: 40px;
    }

    .product-card > .d-flex.justify-content-between.align-items-center.ps-4.pe-4,
    .product-card__header {
        min-height: 52px;
    }

    .action-box {
        flex-wrap: nowrap;
        padding: 0 0.95rem 1rem;
        min-height: 48px;
    }

    .btn-action {
        flex: 1 1 0;
        font-size: 13px;
        padding: 9px 8px;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .product-card {
        border-radius: 18px;
        min-height: 420px;
    }

    .product-card img {
        height: 270px;
    }

    .product-card__body {
        padding: 0.85rem 0.9rem 0.95rem;
    }

    .product-card__meta {
        padding: 0 0.9rem;
        min-height: 40px;
    }

    .action-box {
        padding: 0 0.9rem 0.95rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .swiper {
        width: 100%;
        padding-inline: 12px;
    }

    .product-card {
        min-height: 390px;
    }

    .product-card img {
        height: 250px;
    }

    .product-card__meta {
        flex-direction: row;
        gap: 0.5rem;
        min-height: 36px;
    }

    .action-box {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 0.6rem;
    }

    .btn-action {
        width: auto;
        flex: 1 1 0;
        padding: 10px 8px;
        font-size: 12px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .product-card
        > .d-flex.justify-content-between.align-items-center.ps-4.pe-4 {
        min-height: 64px;
    }
}

/* product index end */

/* ===== PRODUCT BY CATEGORY GRID ===== */
.product-card-grid {
    padding: 4rem 0;
    background: #f9fafc;
}

.product-card-grid .container {
    max-width: 1200px;
}

.product-card-grid__heading {
    text-align: center;
    margin-bottom: 2rem;
}

.product-card-grid__heading h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 3vw, 2.4rem);
    margin-bottom: 0.25rem;
    color: #0f172a;
}

.product-card-grid__heading p {
    color: #6c757d;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.product-quick-card {
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.product-quick-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
}

.product-quick-card__image {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
    background: #f1f5f9;
}

.product-quick-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-quick-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.product-quick-card__dimensions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #495057;
    font-weight: 500;
    font-size: 0.95rem;
}

.product-quick-card__dimensions span {
    flex: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.5rem;
}

.product-quick-card__actions {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-quick-card__actions .corp-btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

@media (max-width: 992px) {
    .product-card-grid {
        padding: 3.25rem 0;
    }

    .product-quick-card__dimensions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .product-quick-card__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .product-quick-card__actions .corp-btn {
        min-width: 0;
    }
}

/* cta index banner start */
/* ===== CTA BANNER ===== */
.cta-section {
    padding: 20px 10px;
    background: linear-gradient(135deg, #ffcf00, #d4af37);
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

/* Decorative circles */
.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.cta-section::before {
    width: 220px;
    height: 220px;
    top: -60px;
    left: -60px;
}

.cta-section::after {
    width: 320px;
    height: 320px;
    bottom: -120px;
    right: -120px;
}

.cta-container {
    max-width: 1000px;
    margin: auto;
    color: #ffffff;
    position: relative;
    z-index: 2;
    animation: ctaFadeUp 1s ease forwards;
}

/* Badge */
.cta-tag {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

/* Heading */
.cta-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Description */
.cta-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Services list */
.cta-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    margin-bottom: 35px;
    font-size: 14px;
}

.cta-services span {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 18px;
    font-weight: 500;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 35px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Call Button */
.cta-btn-call {
    background: #ffffff;
    color: #ffcf00;
}

.cta-btn-call:hover {
    background: #f1f1f1;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Button */
.cta-btn-whatsapp {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cta-btn-whatsapp:hover {
    background: #ffffff;
    color: #ffcf00;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Animation */
@keyframes ctaFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 15px;
    }

    .cta-services {
        font-size: 13px;
    }
}

/* cta index banner end */

/* blog index start */
/* ===== BLOG SECTION ===== */
.insight-zone {
    padding: 20px 10px;
    background: #fffced;
    font-family: "Poppins", sans-serif;
}

.insight-wrapper {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.insight-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.insight-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 207, 0, 0.15);
    color: #ffcf00;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.insight-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #2d384c;
    margin-bottom: 15px;
}

.insight-header p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Grid */
.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.insight-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(63, 125, 0, 0.25);
}

/* Image */
.insight-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.insight-body {
    padding: 22px;
}

.insight-label {
    font-size: 12px;
    font-weight: 600;
    color: #ffcf00;
    margin-bottom: 8px;
    display: inline-block;
}

.insight-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d384c;
    margin-bottom: 10px;
}

.insight-body p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

/* Button */
.insight-btn {
    display: inline-block;
    padding: 9px 22px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(90deg, #ffcf00, #e6b800);
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.insight-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 207, 0, 0.45);
}

/* Responsive */
@media (max-width: 992px) {
    .insight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .insight-grid {
        grid-template-columns: 1fr;
    }

    .insight-header h2 {
        font-size: 28px;
    }
}

/* blog index end */

/* testimonial index start */
/* ===== TESTIMONIAL SECTION ===== */
.review-area {
    padding: 20px 10px;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
}

.review-wrapper {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.review-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.review-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 207, 0, 0.15);
    color: #ffcf00;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.review-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #2d384c;
    margin-bottom: 15px;
}

.review-header p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Grid */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.review-card {
    background: #fff8e1;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(255, 207, 0, 0.25);
}

/* Text */
.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    position: relative;
}

/* User */
.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffcf00, #e6b800);
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.review-user h4 {
    font-size: 15px;
    font-weight: 700;
    color: #2d384c;
}

.review-user span {
    font-size: 13px;
    color: #777;
}

/* Responsive */
@media (max-width: 992px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-header h2 {
        font-size: 28px;
    }
}

/* testimonial index end */

/* footer start */

/* ===== FOOTER ===== */
.site-footer {
    /* background: linear-gradient(180deg, #fff6cc, #ffffff); */
    background-color: #f0c100;
    font-family: "Poppins", sans-serif;
    border-top: 1px solid #ffcf00;
    color: #fffae3;
}

.footer-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px 55px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Headings */
.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
    position: relative;
}

.footer-col h4::after {
    content: "";
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #fffae8);
    position: absolute;
    left: 0;
    bottom: -6px;
    border-radius: 3px;
}

/* Text */
.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #ffffff;
}

/* Lists */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.footer-col ul li i {
    color: #ffffff;
    font-size: 13px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fffcef;
    padding-left: 5px;
}

/* Contact Info (FIXED SPACING) */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.contact-info i {
    color: #ffffff;
    font-size: 14px;
    min-width: 16px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
}

.contact-info a:hover {
    color: #f8f2d8;
}

/* Bottom bar */
.footer-bottom {
    background: #c8a107;
    text-align: center;
    padding: 18px 10px;
    border-top: 1px solid #ffffff;
}

.footer-bottom p {
    font-size: 15px;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li,
    .contact-info span {
        justify-content: center;
    }
}

/* footer end */

/*breadcrumb banner start*/
/* ===== Breadcrumb Banner ===== */
.contact-banner {
    position: relative;
    background: url("images/gift.webp") center/cover no-repeat;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeIn 1s ease forwards;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    animation: fadeIn 1.2s ease forwards;
}

.banner-overlay h1 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    margin: 10px 0;
    letter-spacing: 1px;
}

.breadcrumb {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.breadcrumb a,
.breadcrumb span {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #fff;
}

/* breadcrumb banner end */

/* about start */
/* ===== ABOUT SECTION ===== */
.about-v2 {
    padding: 30px 0;
    background: linear-gradient(180deg, #ffffff, #f5f9f1);
}

.about-v2-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Header */
.about-v2-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.about-v2-tag {
    padding: 6px 18px;
    background: rgba(255, 207, 0, 0.12);
    color: #ffcf00;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.about-v2-head h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0e2a47;
    margin-bottom: 12px;
}

.about-v2-head h2 span {
    color: #ffcf00;
}

.about-v2-head p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}

/* Content */
.about-v2-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.about-v2-text p {
    font-size: 15px;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* Services */
.about-v2-services {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.about-v2-services h4 {
    font-size: 20px;
    font-weight: 800;
    color: #0e2a47;
    margin-bottom: 16px;
}

.about-v2-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 18px;
}

.about-v2-services li {
    font-size: 14px;
    font-weight: 600;
    color: #0e2a47;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-v2-services i {
    color: #ffcf00;
}

/* Founder */
.about-v2-founder {
    margin-top: 45px;
    display: flex;
    gap: 18px;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.about-v2-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffcf00, #e6b800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
}

.about-v2-founder h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0e2a47;
    margin-bottom: 4px;
}

.about-v2-founder span {
    font-size: 14px;
    color: #ffcf00;
    font-weight: 600;
}

.about-v2-founder p {
    font-size: 14px;
    color: #475569;
    margin-top: 8px;
    line-height: 1.8;
}

/* ===== LIGHT STATS (NEW) ===== */
.about-stats {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
}

.stat-icon {
    font-size: 26px;
    color: #ffcf00;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 34px;
    font-weight: 800;
    color: #0e2a47;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-v2-content {
        grid-template-columns: 1fr;
    }

    .about-v2-services ul {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* about end */

/* process start */
/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 30px 0;
    background: #f8fafc;
    font-family: "Poppins", sans-serif;
}

.process-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Header */
.process-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.process-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 207, 0, 0.12);
    color: #ffcf00;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.process-head h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0e2a47;
    margin-bottom: 12px;
}

.process-head p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}

/* Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-8px);
}

.process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(255, 207, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffcf00;
}

.process-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0e2a47;
    margin-bottom: 8px;
}

.process-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* Step number */
.process-step {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 14px;
    font-weight: 700;
    color: #ffcf00;
    background: rgba(94, 165, 0, 0.12);
    padding: 4px 10px;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-head h2 {
        font-size: 28px;
    }
}

/* process end */

/* ===== WHY CHOOSE US ===== */
.why-va {
    padding: 20px 0;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
}

.why-va-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Header */
.why-va-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.why-va-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 207, 0, 0.12);
    color: #ffcf00;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.why-va-head h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0e2a47;
    margin-bottom: 12px;
}

.why-va-head p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}

/* Grid */
.why-va-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-va-card {
    background: #f8fafc;
    padding: 30px 25px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid #eef2f6;
}

.why-va-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.why-va-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(255, 207, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffcf00;
}

.why-va-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0e2a47;
    margin-bottom: 8px;
}

.why-va-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* Highlight strip */
.why-va-strip {
    margin-top: 60px;
    background: linear-gradient(135deg, #ffcf00, #e6b800);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    color: #ffffff;
}

.why-va-strip h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

.why-va-strip p {
    font-size: 15px;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 992px) {
    .why-va-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-va-grid {
        grid-template-columns: 1fr;
    }

    .why-va-head h2 {
        font-size: 28px;
    }
}

.why-va-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #ffcf00;
    background: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.why-va-btn i {
    font-size: 18px;
}

.why-va-btn:hover {
    background: #f1f7eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* blog start */
/* ===== BLOG SECTION ===== */
.blog-page-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8fafc, #eef4ff);
    font-family: "Poppins", sans-serif;
}

.blog-page-heading span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffcf00;
}

.blog-page-heading h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0e2a47;
    margin-top: 8px;
}

.blog-page-heading p {
    max-width: 680px;
    margin: 12px auto 0;
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}

.blog-page-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.45s ease;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.blog-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(255, 207, 0, 0.25);
}

.blog-page-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.blog-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-page-card:hover .blog-page-img img {
    transform: scale(1.1);
}

.blog-page-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #ffcf00, #e6b800);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

.blog-page-content {
    padding: 26px 28px 30px;
}

.blog-page-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-page-meta i {
    color: #ffcf00;
    margin-right: 4px;
}

.blog-page-content h5 {
    font-size: 20px;
    font-weight: 800;
    color: #0e2a47;
    margin-bottom: 10px;
}

.blog-page-content p {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 14px;
}

.blog-view-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #ffcf00;
    text-decoration: none;
}

.blog-page-card:hover .blog-view-more i {
    transform: translateX(6px);
}

/* blog end */

/* blog detail start */
/* ================= BLOG DETAIL ================= */
.blog-detail-section {
    padding: 30px 0;
    background: #f8fafc;
    font-family: "Poppins", sans-serif;
}

.blog-hero {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.blog-detail-img {
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffcf00, #e6b800);
    color: #fff;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.blog-detail-title {
    font-size: 38px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 16px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 30px;
}

.blog-detail-meta i {
    color: #ffcf00;
    margin-right: 6px;
}

.blog-detail-content p {
    font-size: 16px;
    color: #475569;
    line-height: 2;
    margin-bottom: 20px;
}

.blog-detail-content h4 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 42px 0 16px;
    position: relative;
    padding-left: 16px;
}

.blog-detail-content h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 5px;
    height: 75%;
    background: linear-gradient(180deg, #ffcf00, #e6b800);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 26px;
    }

    .blog-detail-img {
        height: 260px;
    }

    .blog-hero {
        padding: 26px;
    }
}

/* blog detail end */

/* testimonial start */
/* ===== TESTIMONIAL SECTION ===== */
.va-testimonial-section {
    padding: 30px 0;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    font-family: "Poppins", sans-serif;
}

.va-testimonial-heading span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffcf00;
}

.va-testimonial-heading h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 8px;
}

.va-testimonial-heading p {
    max-width: 650px;
    margin: 12px auto 0;
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}

.va-testimonial-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.va-testimonial-card::before {
    content: "“";
    position: absolute;
    top: -25px;
    right: 25px;
    font-size: 80px;
    color: rgba(255, 207, 0, 0.15);
    font-family: serif;
}

.va-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(255, 207, 0, 0.25);
}

.va-testimonial-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 25px;
}

.va-testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.va-user-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffcf00, #f5c400);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}

.va-user-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.va-user-info span {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

@media (max-width: 768px) {
    .va-testimonial-heading h2 {
        font-size: 28px;
    }
}

/* testimonial end */

/* contact start */
/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 20px 0;
    background: linear-gradient(180deg, #f8fafc, #eef4ff);
    font-family: "Poppins", sans-serif;
}

.contact-heading span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffcf00;
}

.contact-heading h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0e2a47;
    margin-top: 10px;
}

.contact-heading p {
    max-width: 650px;
    margin: 14px auto 0;
    font-size: 15px;
    color: #475569;
    line-height: 1.9;
}

/* Wrapper */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

/* Map */
.contact-map {
    flex: 1 1 48%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    height: 480px;
    background: #fff;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Form */
.contact-form {
    flex: 1 1 48%;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    padding: 45px 40px;
}

.contact-form h5 {
    font-size: 26px;
    color: #0e2a47;
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 18px;
}

.input-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffcf00;
    font-size: 15px;
}

.input-group textarea + i {
    top: 20px;
    transform: none;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 15px 12px 42px;
    border: 1px solid #dce3ec;
    border-radius: 10px;
    font-size: 15px;
    transition: 0.3s;
    outline: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #ffcf00;
    box-shadow: 0 8px 20px rgba(255, 207, 0, 0.25);
}

.input-group textarea {
    resize: none;
    height: 120px;
}

/* Button */
.send-btn {
    background: linear-gradient(135deg, #ffcf00, #f5c400);
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
    cursor: pointer;
}

.send-btn:hover {
    background: linear-gradient(135deg, #f5c400, #ffcf00);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 207, 0, 0.25);
}

/* Info Cards */
.info-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 70px;
}

.info-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    flex: 1 1 280px;
    text-align: center;
    transition: 0.4s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(255, 207, 0, 0.25);
}

.info-card i {
    font-size: 34px;
    color: #ffcf00;
    margin-bottom: 12px;
}

.info-card h6 {
    color: #0e2a47;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
}

.info-card p {
    color: #475569;
    margin: 0;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-map,
    .contact-form {
        flex: 1 1 100%;
    }

    .contact-form {
        padding: 35px 25px;
    }
}

/* contact end */

/* product start */
/* ===== CORPORATE GIFTING SECTION ===== */
.corp-gifting {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.corp-left span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffcf00;
}

.corp-left h2 {
    font-size: 30px;
    font-weight: 900;
    color: #0f172a;
    margin: 12px 0 18px;
}

.corp-left p {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 20px;
}

.corp-btn-wrap {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Primary Button (already yours) */
.corp-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ffcf00, #e6b800);
    color: #ffffff;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 14px 35px rgba(255, 207, 0, 0.4);
}

.corp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 55px rgba(255, 207, 0, 0.6);
}

/* Secondary Button */
.corp-btn-outline {
    background: transparent;
    color: #ffcf00;
    border: 2px solid #ffcf00;
    box-shadow: none;
}

.corp-btn-outline:hover {
    background: linear-gradient(135deg, #ffcf00, #e6b800);
    color: #fff;
    box-shadow: 0 14px 35px rgba(255, 207, 0, 0.4);
}

/* Cards */
.corp-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 18px;
    /* padding kam */
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
    text-align: center;
}

.corp-card:hover {
    transform: translateY(-6px);
    /* less jump */
    box-shadow: 0 18px 40px rgba(255, 207, 0, 0.25);
}

.corp-card i {
    font-size: 28px;
    /* icon chhota */
    color: #ffcf00;
    margin-bottom: 8px;
}

.corp-card h5 {
    font-size: 16px;
    /* heading chhoti */
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.corp-card p {
    font-size: 13.5px;
    /* text chhota */
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.corp-product-img img {
    width: 100%;
    max-width: 520px;
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(255, 207, 0, 0.25);
    transition: 0.4s ease;
}

.corp-product-img img:hover {
    transform: translateY(-10px) scale(1.03);
}

/* product end */

/* payment start */
/* SECTION */
.payment-section {
    padding: 80px 20px;
    background: radial-gradient(circle at top, #fff6c2, #ffffff);
}

.payment-wrap {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* CARD */
.pay-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 26px;
    padding: 40px;
    box-shadow: 0 35px 80px rgba(255, 207, 0, 0.25);
    transition: 0.4s ease;
}

.pay-card:hover {
    transform: translateY(-8px);
}

/* BRAND */
.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.brand-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffcf00, #e6b800);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 12px 30px rgba(255, 207, 0, 0.6);
}

.brand h2 {
    font-size: 22px;
    font-weight: 800;
    color: #6f5600;
}

.brand p {
    font-size: 13px;
    color: #777;
}

/* BANK */
.bank-name {
    font-size: 20px;
    font-weight: 800;
    color: #ffcf00;
    margin-bottom: 18px;
}

.bank-details {
    list-style: none;
}

.bank-details li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px dashed #eee;
    color: #333;
}

.bank-details span {
    color: #777;
}

/* UPI */
.upi-box {
    margin-top: 28px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffcf00, #e6b800);
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 45px rgba(255, 207, 0, 0.45);
}

.upi-box span {
    display: block;
    font-size: 13px;
    opacity: 0.9;
}

.upi-box strong {
    font-size: 18px;
    letter-spacing: 1px;
}

.upi-box button {
    margin-top: 12px;
    background: #fff;
    color: #6f5600;
    border: none;
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.upi-box button:hover {
    background: #f5f5f5;
}

/* RIGHT CARD */
.right-card {
    text-align: center;
}

.scan-title {
    font-size: 20px;
    font-weight: 800;
    color: #6f5600;
    margin-bottom: 22px;
}

.qr-box {
    padding: 18px;
    border-radius: 24px;
    background: #fff8d6;
    box-shadow: inset 0 0 0 3px #ffcf00;
    display: inline-block;
}

.qr-box img {
    width: 230px;
    max-width: 100%;
}

.pay-note {
    margin-top: 16px;
    font-size: 14px;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .payment-wrap {
        grid-template-columns: 1fr;
    }
}

/* payment end */
