body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
}
.nav-link{
    font-family: "Segoe UI", sans-serif;
}
/* top header start */

/* Header Bar */
.header-bar {
    background: linear-gradient(90deg, #125669, #da8725, #f5c4bd);
    color: #fff;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    animation: slideDown 1s ease-out;
}

.header-left {
    display: flex;
    gap: 20px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeUp 1s ease forwards;
}

.header-contact:nth-child(1) {
    animation-delay: 0.3s;
}

.header-contact:nth-child(2) {
    animation-delay: 0.6s;
}

.header-contact i {
    color: #f5c4bd;
    transition: color 0.3s ease;
}

.header-contact:hover i {
    color: #da8725;
}

/* Social Icons */
.header-right {
    display: flex;
    gap: 12px;
}

.header-social {
    width: 36px;
    height: 36px;
    background: #fff;
    color: #125669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25),
        -2px -2px 6px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0;
    transform: scale(0.5);
    animation: popIn 0.8s ease forwards;
}

.header-social:nth-child(1) {
    animation-delay: 0.8s;
}

.header-social:nth-child(2) {
    animation-delay: 1s;
}

.header-social:nth-child(3) {
    animation-delay: 1.2s;
}

.header-social:hover {
    transform: translateY(-3px) scale(1.2);
    background: linear-gradient(135deg, #da8725, #f5c4bd);
    color: #fff;
    box-shadow: 0 0 15px rgba(250, 180, 150, 0.8);
}

/* Animations */
@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .email {
        display: none;
        /* Hide email on mobile */
    }

    .header-bar {
        font-size: 13px;
        padding: 8px 12px;
    }

    .header-social {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

}

/* top header end  */

/* navbaar start */
/* Gradient Nav Links */
/* Wider Navbar on Desktop */
@media (min-width: 1200px) {
    .navbar .container {
        max-width: 1200px;
        /* Default Bootstrap ~1140px hota hai — isse wide hoga */
    }
}

.nav-gradient {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    text-decoration: none !important;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInNav 0.6s forwards;
}

.nav-gradient:nth-child(1) {
    animation-delay: 0.2s;
}

.nav-gradient:nth-child(2) {
    animation-delay: 0.35s;
}

.nav-gradient:nth-child(3) {
    animation-delay: 0.5s;
}

.nav-gradient:nth-child(4) {
    animation-delay: 0.65s;
}

.nav-gradient:nth-child(5) {
    animation-delay: 0.8s;
}

/* Default underline (mobile & small screens) */
.nav-gradient::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #125669, #da8725, #f5c4bd);
    transition: width 0.4s ease;
}

.nav-gradient:hover::after {
    width: 100%;
}

/* Desktop larger screens */
@media (min-width: 992px) {

    /* Bootstrap lg breakpoint */
    .nav-gradient::after {
        bottom: -8px;
        /* thoda neeche */
        height: 3px;
        /* thodi mota underline */
    }
}


/* Pay Now Button */
.custom-pay-btn {
    padding: 15px 50px;
    background: linear-gradient(135deg, #da8725, #f5c4bd);
    color: #fff !important;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease, background 0.6s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInNav 0.6s forwards;
    animation-delay: 0.95s;
}

.custom-pay-btn:hover {
    transform: translateY(-4px) scale(1.08);
    background: linear-gradient(135deg, #125669, #da8725);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Navbar Shadow & Scroll */
.custom-nav {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    z-index: 1000;
}

.custom-nav.scrolled {
    transform: scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Logo */
.custom-brand img {
    height: 80px;
    width: auto;
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .custom-brand img {
        height: 60px;
    }
}

.custom-brand .brand-gradient {
    font-size: 30px;
    font-weight: 700;
}

.custom-brand .logo-subtext {
    font-size: 25px;
    font-weight: 700;
    /* text-transform: uppercase; */
}

/* Responsive font-size for mobile */
@media (max-width: 768px) {
    .custom-brand .logo-subtext {
        font-size: 16px;
        /* mobile ke liye chhota size */
    }
}

@media (max-width: 480px) {
    .custom-brand .logo-subtext {
        font-size: 14px;
        /* very small screen ke liye aur thoda chhota */
    }
}

/* Brand Text */
.brand-gradient {
    font-size: 36px;
    font-weight: 400;
    background: linear-gradient(120deg, #0e2b3b, #f5c4bd, #d49a6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    cursor: pointer;
    display: inline-block;
}

/* .brand-gradient:hover {
    transform: scale(1.1);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35);
} */

/* .brand-text {
    font-family: "Great Vibes", cursive;
    font-size: 30px;
    font-weight: 500;
    background: linear-gradient(120deg, #0e2b3b, #f5c4bd, #d49a6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    cursor: pointer;
    display: inline-block;
} */


.logo-subtext {
    /* font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #d18e3c;
    letter-spacing: 1.5px;
    display: block;
    margin-top: -4px; */
    /* font-family: "Great Vibes", cursive; */
    font-size: 36px;
    font-weight: 400;
    background: linear-gradient(120deg, #0e2b3b, #f5c4bd, #d49a6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    cursor: pointer;
    display: inline-block;
}


/* Fade In Animation */
@keyframes fadeInNav {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animated Toggler */
.navbar-toggler {
    border: none;
    position: relative;
    width: 40px;
    height: 35px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.navbar-toggler span {
    display: block;
    height: 4px;
    width: 100%;
    margin: 6px 0;
    background: linear-gradient(90deg, #125669, #da8725, #f5c4bd);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.navbar-toggler.collapsed span:nth-child(1) {
    transform: rotate(0) translateY(0);
}

.navbar-toggler.collapsed span:nth-child(2) {
    opacity: 1;
}

.navbar-toggler.collapsed span:nth-child(3) {
    transform: rotate(0) translateY(0);
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Custom dropdown */
.custom-dropdown {
    background-color: #fff;
    /* dropdown ka background */
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 8px 0;
    /* thoda bada spacing top-bottom */
}

/* Dropdown items */
.custom-dropdown .dropdown-item {
    color: #265B63;
    font-weight: 500;
    padding: 10px 18px;
    /* yaha padding increase kiya */
    transition: all 0.2s ease;
}

.custom-dropdown .dropdown-item:hover {
    background-color: #E6A166;
    color: #fff;
    border-radius: 4px;
}

/* Submenu styling */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -5px;
    display: none;
    padding: 8px 0;
    /* submenu ke andar bhi spacing */
}

/* 
.dropdown-submenu:hover>.dropdown-menu {
    display: block;
} */


/* navbaar end */

/* crousel start */
/* Carousel Container */
#customImageCarousel {
    position: relative;
    /* crucial for absolute positioning of buttons */
}

/* Carousel Items */
.custom-carousel-item {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.custom-carousel-item img {
    width: 100%;
    height: 100%;
    transition: transform 1.2s ease;
}


/* Controls */
.custom-carousel-prev,
.custom-carousel-next {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%);
    width: 40px !important;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    border: none;
    z-index: 10;
    transition: all 0.3s ease;
}

.custom-carousel-prev {
    left: 20px;
}

.custom-carousel-next {
    right: 20px;
}

.custom-carousel-prev:hover,
.custom-carousel-next:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.custom-carousel-prev-icon,
.custom-carousel-next-icon {
    width: 20px;
    height: 20px;
    filter: invert(0.2);
}

/* Indicators */
.custom-carousel-indicators [data-bs-target] {
    background-color: #fff;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.custom-carousel-indicators [data-bs-target]:hover {
    opacity: 1;
    background-color: #d49a6a;
}

.custom-carousel-indicators .active {
    background-color: #0e2b3b;
    opacity: 1;
}

/* Responsive */
@media (max-width: 991.98px) {
    .custom-carousel-item {
        height: 65vh;
    }
}

@media (max-width: 767.98px) {
    .custom-carousel-item {
        height: 50vh;
    }
}

@media (max-width: 575.98px) {
    .custom-carousel-item {
        height: 35vh;
    }

    .custom-carousel-prev,
    .custom-carousel-next {
        width: 40px;
        height: 40px;
    }

    .custom-carousel-prev-icon,
    .custom-carousel-next-icon {
        width: 15px;
        height: 15px;
    }
}


/* Tablet */
@media (max-width: 767.98px) {
    .custom-carousel-item {
        height: 40vh;
        /* thoda kam height */
    }

    .custom-carousel-item img {
        object-fit: contain;
        /* image ko crop na kare, chhoti dikhaye */
        padding: 10px;
        /* thoda gap */
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .custom-carousel-item {
        height: 30vh;
    }

}

/* crousel end */

/* heading start */
.luxury-heading {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(22px, 6vw, 40px);
    font-weight: 700;
    text-align: center;
    background: linear-gradient(120deg, #0e2b3b, #E29952);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s ease forwards;
    padding: 20px 10px;
}

/* ✨ Subheading Style */
.luxury-subheading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 3vw, 20px);
    text-align: center;
    color: #444;
    letter-spacing: 1px;
    margin-top: -10px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 1.5s ease forwards;
}

/* Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Soft glowing underline */
.luxury-subheading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E29952, transparent);
    border-radius: 50%;
    opacity: 0;
    animation: glowLine 1.5s ease forwards 1s;
}

@keyframes glowLine {
    to {
        opacity: 1;
        width: 80%;
    }
}

/* heading end */

/* about index start */
.company-btn {
    display: inline-block;
    background: linear-gradient(90deg, #d19a59, #005c63);
    color: #fff;
    font-weight: 600;
    padding: 12px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.company-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    transition: all 0.5s ease;
}

.company-btn:hover::before {
    left: 100%;
}

.company-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.about-section {
    background: linear-gradient(135deg, #f9f6f2, #fff);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.9;
    overflow: hidden;
}

/* Headings */
.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 5vw, 40px);
    font-weight: 700;
    background: linear-gradient(120deg, #0e2b3b, #E29952);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.about-section h2::after {
    content: '';
    display: block;
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E29952, transparent);
    margin: 12px auto 0;
    border-radius: 3px;
}

.about-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 600;
    color: #444;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
    /* delay */
}

/* Paragraphs */
.about-section p {
    font-size: 16px;
    text-align: justify;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.about-section p:nth-of-type(1) {
    animation-delay: 1s;
}

.about-section p:nth-of-type(2) {
    animation-delay: 1.5s;
}

.about-section p:hover {
    color: #0e2b3b;
}

/* Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* about index end */

/* product index start */
.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    background: linear-gradient(120deg, #155768, #dc8b2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #155768, #dc8b2f);
    display: block;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    margin-top: 8px;
    text-align: center;
}

/* Creative product card */
.product-card {
    background: linear-gradient(145deg, #fff, #fefefe);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    height: 100%;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    position: relative;
}

.product-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.15) 0%,
            transparent 70%);
    opacity: 0;
    transition: all 0.7s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
    transform: rotate(30deg);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.6s ease;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 1200px;
    /* Let image adjust height */
    max-height: 250px;
    object-fit: contain;
    /* Show full image */
    transition: transform 0.7s ease, filter 0.7s ease;
    border-bottom: 1px solid #eee;
    background: #fdfdfd;
    /* in case image has transparent background */
}

.product-card:hover img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.1);
}

.product-card h5 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #dc8b2f, #155768);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 3s linear infinite;
    text-align: center;
}

@keyframes textGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.product-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
    text-align: center;
}

.product-card .btn {
    border-radius: 50px;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(135deg, #e49d5b, #155767);
    color: #fff;
    border: none;
    transition: all 0.4s ease, background 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-card .btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #155767, #e49d5b);
}

/* product index end */

/* trending product start */
/* Section Title Hover Animation */
.jewellery-title:hover {
    transform: scale(1.1) rotate(-2deg);
    transition: all 0.3s ease-in-out;
    text-shadow: 4px 4px 12px rgba(29, 89, 101, 0.6);
    color: #da8828;
}

/* Product Card */
.fp-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    height: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.fp-product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.fp-product-card:hover img {
    transform: scale(1.1);
}

.fp-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.fp-product-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    /* background: rgba(170, 190, 194, 0.7); */
    text-align: center;
    background: linear-gradient(90deg, #dc8b2f, #155768);
    -webkit-background-clip: text;

    transition: background 0.3s ease;
    backdrop-filter: blur(3px);
}

/* Attractive Product Title */
.fp-product-overlay h5 {
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(90deg, #dc8b2f, #155768);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    transition: all 0.3s ease-in-out;
}

.fp-product-overlay h5:hover {
    transform: scale(1.1) rotate(-2deg);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.fp-btn-solid {
    border-radius: 50px;
    padding: 6px 13px;
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(135deg, #e49d5b, #155767);
    color: #fff;
    border: none;
    transition: all 0.4s ease, background 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.fp-btn-solid:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #155767, #e49d5b);
}

.fp-btn-outline {
    border-radius: 50px;
    padding: 6px 13px;
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(135deg, #e49d5b, #155767);
    color: #fff;
    border: none;
    transition: all 0.4s ease, background 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.fp-btn-outline:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #155767, #e49d5b);
}

/* Carousel Controls - Updated Class Names */
.hcj-carousel-prev,
.hcj-carousel-next {
    width: 50px;
    height: 50px;
    background: #1d5965;
    opacity: 0.85;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: none;
    z-index: 10;
    transition: all 0.3s ease;
}

.hcj-carousel-prev:hover,
.hcj-carousel-next:hover {
    opacity: 1;
    background: linear-gradient(135deg, #1d5965, #da8828);
}

.hcj-carousel-prev i,
.hcj-carousel-next i {
    font-size: 1.3rem;
    color: #da8828;
}

/* Responsive */
@media (max-width: 575px) {
    .fp-product-card {
        height: 320px;
    }

    .fp-product-overlay h5 {
        font-size: 1.2rem;
    }

    .hcj-carousel-prev,
    .hcj-carousel-next {
        width: 40px;
        height: 40px;
    }

    .hcj-carousel-prev i,
    .hcj-carousel-next i {
        font-size: 1.1rem;
    }

    .jewellery-title {
        font-size: 2.5rem;
    }

    .fp-product-overlay .d-flex {
        flex-direction: row !important;
        /* Keep buttons side by side on mobile */
        gap: 0.5rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .fp-product-card {
        height: 330px;
    }
}

@media (min-width: 1200px) {
    .fp-product-card {
        height: 360px;
        width: 275px;
    }
}

/* trending product end */

/* responsive banner stART */
/* ===== Responsive Image Banner ===== */
.responsive-banner {
    width: 100%;
    height: auto;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.responsive-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 767px) {
    .responsive-banner {
        max-height: 350px;
    }
}

@media (max-width: 575px) {
    .responsive-banner {
        max-height: 250px;
    }
}

/* responsive banner end */

/* why choose us start */
/* ===== Why Choose Us Section ===== */
.why-choose-us {
    background: linear-gradient(135deg, #ffffff, #f3f6f7, #fdfaf7);
    padding: 70px 20px;
    text-align: center;
    overflow: hidden;
}

.why-choose-us h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1d5965;
    font-weight: 600;
    opacity: 0;
    animation: fadeInDown 1s forwards;
}

.why-choose-us p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.3s;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #1d5965, #2b7682);
    border-radius: 18px;
    padding: 35px 25px;
    width: 260px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.7s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.9s;
}

.feature-card:nth-child(4) {
    animation-delay: 1.1s;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-30deg);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.feature-card i {
    font-size: 3rem;
    color: #B87F31;
    margin-bottom: 20px;
    animation: bounceIcon 2s infinite;
}

.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.feature-card p {
    font-size: 1rem;
    color: #f2f2f2;
}

/* Gold Card Variant with Gradient */
.feature-card.gold {
    background: linear-gradient(135deg, #B87F31, #d49d55);
}

.feature-card.gold i {
    color: #fff;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .features {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .why-choose-us h2 {
        font-size: 2.2rem;
    }

    .why-choose-us p {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .feature-card {
        width: 45%;
        padding: 25px 20px;
    }
}

@media (max-width: 575px) {
    .feature-card {
        width: 100%;
    }
}

/* why choose us end */

/* blog index start */
/* ===== Blog Section ===== */
.blog-section {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #faf7f3);
    animation: fadeIn 1.2s ease-in-out;
}

.blog-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #da8828, #1d5965);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    animation: slideDown 1s ease forwards;
}

.blog-section p {
    font-size: 1.1rem;
    margin-bottom: 60px;
    color: #555;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeUp 1.5s ease forwards;
    animation-delay: 0.5s;
}

.blogs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    width: 310px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.blog-card:nth-child(1) {
    animation-delay: 0.6s;
}

.blog-card:nth-child(2) {
    animation-delay: 0.9s;
}

.blog-card:nth-child(3) {
    animation-delay: 1.2s;
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.blog-card img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card .content {
    padding: 22px;
}

.blog-card h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1d5965;
    font-family: 'Playfair Display', serif;
}

.blog-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-card a {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 50px;
    background: linear-gradient(90deg, #da8828, #1d5965);
    color: #fff;
    transition: all 0.3s ease;
}

.blog-card a:hover {
    background: linear-gradient(90deg, #1d5965, #da8828);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transform: translateX(5px);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .blogs {
        flex-direction: column;
        align-items: center;
    }
}

/* blog index end */

/* footer start */
/* Footer Styles */
.plx-footer {
    background: linear-gradient(135deg, #1d5965, #da8828);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 60px 20px;
}

.plx-footer h2,
.plx-footer h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.plx-footer h4 {
    position: relative;
    display: inline-block;
    font-size: 1.1rem;
}

.plx-footer h4 span {
    display: block;
    width: 50px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    margin-top: 5px;
}

.plx-footer a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.plx-footer a:hover {
    color: #fbd46d;
}

.plx-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

.plx-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.plx-social-icons a:hover {
    transform: rotate(360deg) scale(1.3);
    background: linear-gradient(135deg, #fbd46d, #1d5965);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.plx-footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
}

.plx-footer ul li {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .plx-footer h2 {
        font-size: 1.6rem;
    }

    .plx-footer h4 {
        font-size: 1.1rem;
    }

    .plx-social-icons a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Logo Styling */
.footer-logo {
    max-width: 70px;
    height: auto;
    margin-right: 20px;
    border-radius: 10px;
    /* subtle rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* subtle shadow for premium look */
    transition: transform 0.3s;
}

.footer-logo:hover {
    transform: scale(1.1);
    /* slight zoom on hover */
}

/* Text Content Styling */
.footer-about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
}

/* Elegant underline for heading */
.footer-about h2::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #ffffff;
    /* golden underline */
    display: block;
    margin-top: 5px;
    border-radius: 2px;
}

/* Paragraph */
.footer-about p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #f5f5f5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-logo {
        margin-right: 15px;
        max-width: 60px;
    }

    .footer-about h2 {
        font-size: 1.2rem;
    }

    .footer-about p {
        font-size: 13px;
    }
}

/* footer end */

/* contact page start */
.contact-intro h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-intro p {
    font-size: 16px;
    margin: 0;
}

.contact-box,
.map-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-box h4,
.map-container h4 {
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
    position: relative;
}

.contact-box h4 span,
.map-container h4 span {
    display: block;
    width: 50px;
    height: 2px;
    background: #1d5965;
    margin-top: 5px;
    border-radius: 2px;
}

.contact-box input,
.contact-box textarea {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 12px 15px;
    width: 100%;
    margin-bottom: 20px;
    transition: 0.3s;
}

.contact-box input:focus,
.contact-box textarea:focus {
    outline: none;
    border-color: #1d5965;
    box-shadow: 0 0 8px rgba(29, 89, 101, 0.2);
}

.contact-box button {
    background: linear-gradient(135deg, #1d5965, #da8828);
    border: none;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    transition: 0.4s;
    display: block;
    margin: 20px auto 0;
}

.contact-box button:hover {
    transform: scale(1.05);
}

.map-frame {
    border-radius: 12px;
    overflow: hidden;
}

.form-title {
    text-align: center;
    font-family: "Playfair Display", serif;
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
}

.form-title span {
    display: block;
    width: 50px;
    height: 2px;
    background: #1d5965;
    margin: 6px auto 0;
    border-radius: 2px;
}

/* contact page end */

/* breadcrumb start */
/* Breadcrumb Banner */
.breadcrumb-banner {
    background: linear-gradient(135deg,
            rgba(19, 68, 78, 0.25),
            rgba(128, 77, 18, 0.25)),
        url("images/breadcrumb.jpg") center/cover no-repeat;

    color: #fff;
    padding: 48px 0;
}

.breadcrumb-overlay {
    padding: 28px 0;
}

.breadcrumb-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.breadcrumb-title {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    margin: 0;
    letter-spacing: 0.4px;
    color: #ffffff;
    font-weight: 700;
    /* bold */
}

.breadcrumb-title::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #da8828, #1d5965);
    margin: 10px auto 0;
    border-radius: 3px;
}

.breadcrumb {
    background: linear-gradient(135deg,
            rgba(29, 89, 101, 0.2),
            rgba(218, 136, 40, 0.2));
    padding: 8px 14px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    gap: 8px;
    margin: 0;
    list-style: none;
    align-items: center;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #ffffff;
    margin: 0 6px;
    font-size: 14px;
}

.breadcrumb .active {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .breadcrumb-banner {
        padding: 28px 0;
    }

    .breadcrumb-title {
        font-size: 22px;
    }

    .breadcrumb {
        padding: 6px 10px;
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .breadcrumb-title {
        font-size: 26px;
    }
}

/* breadcrumb end */

/* company profile start */

/* Container Animation */
.company-profile {
    padding: 80px 20px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    border-radius: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideIn 1s forwards ease-in-out;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-profile .logo-container {
    flex: 1 1 300px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
}

.company-profile .logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Hover animation for image */
.company-profile .logo-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.company-profile .content {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: textFadeIn 1s forwards ease-in-out 0.5s;
}

@keyframes textFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-profile .content h2 {
    font-size: 2.5rem;
    color: #195867;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
}

.company-profile .content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #dd8e37;
    margin-top: 8px;
    border-radius: 2px;
}

.company-profile .content p {
    font-size: 1.1rem;
    /* increased from 1rem */
    line-height: 2;
    /* slightly more spacing */
    color: #333;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .company-profile {
        padding: 50px 15px;
        gap: 30px;
    }

    .company-profile .content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .company-profile {
        flex-direction: column;
        text-align: center;
    }

    .company-profile .content p {
        text-align: justify;
    }

    .company-profile .logo-container img {
        height: auto;
    }
}

/* company profile end */


/* why choose us start */
/* Section Title */
.choose-section .choose-title {
    font-size: 2.8rem;
    color: #195867;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.choose-section .choose-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #DD8E37;
    margin: 10px auto 0;
    border-radius: 2px;
}

.choose-section .choose-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-top: 15px;
}

/* Feature Cards */
.choose-section .card-feature {
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s forwards ease-in-out;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.choose-section .card-feature:nth-child(1) {
    animation-delay: 0.2s;
}

.choose-section .card-feature:nth-child(2) {
    animation-delay: 0.4s;
}

.choose-section .card-feature:nth-child(3) {
    animation-delay: 0.6s;
}

.choose-section .card-feature:hover {
    transform: translateY(-15px) rotateX(3deg);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #fff6e5, #fdf3e0);
}

.choose-section .card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #195867, #DD8E37);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: bounceIn 1s ease forwards;
}

.choose-section .card-feature:hover .card-icon {
    transform: scale(1.2);
    box-shadow: 0 8px 20px rgba(29, 136, 151, 0.3);
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.choose-section .card-feature h4 {
    font-size: 1.4rem;
    color: #195867;
    margin-bottom: 12px;
    font-weight: 600;
}

.choose-section .card-feature p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .choose-section .card-feature {
        padding: 30px 18px;
    }
}

@media (max-width: 576px) {
    .choose-section .card-feature {
        margin: 0 auto;
    }
}

/* why choose us end */

/* mission vission start */
.mv-section {
    padding: 80px 20px;
}

.mv-section .section-title {
    font-size: 2.5rem;
    color: #195867;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.mv-section .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #dd8e37;
    margin: 10px auto 0;
    border-radius: 2px;
}

.mv-card {
    display: flex;
    align-items: stretch;
    /* equal height for image & content */
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideIn 1s forwards ease-in-out;
    min-height: 350px;
    /* minimum card height */
}

.mv-card:nth-child(1) {
    animation-delay: 0.2s;
}

.mv-card:nth-child(2) {
    animation-delay: 0.4s;
}

.mv-card.reverse {
    flex-direction: row-reverse;
}

.mv-card .mv-image {
    flex: 1 1 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* stretch to card height */
    max-height: 350px;
    /* limit height */
}

.mv-card .mv-image img {
    width: auto;
    /* auto width to keep aspect ratio */
    height: 100%;
    /* fill container height */
    object-fit: contain;
    /* show full image */
    transition: transform 0.5s ease;
}

.mv-card .mv-image img:hover {
    transform: scale(1.05);
}

.mv-card .mv-content {
    flex: 1 1 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mv-card .mv-content h3 {
    font-size: 2rem;
    color: #195867;
    margin-bottom: 20px;
    position: relative;
}

.mv-card .mv-content h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #dd8e37;
    margin-top: 8px;
    border-radius: 2px;
}

.mv-card .mv-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .mv-card {
        flex-direction: column !important;
        text-align: center;
    }

    .mv-card .mv-content h3 {
        font-size: 1.8rem;
    }

    .mv-card .mv-content p {
        text-align: justify;
    }

    .mv-card .mv-image {
        height: 250px;
        max-height: 250px;
    }

    .mv-card .mv-image img {
        height: 100%;
        width: auto;
    }
}

/* mission vision end */

/* blog start */
/* Hero Image */
.blog-hero {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 15px;
    margin: 30px auto;
}

.blog-hero img {
    width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.blog-hero img:hover {
    transform: scale(1.05);
}

/* Blog Content */
.blog-container {
    max-width: 900px;
    margin: 10px auto 60px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.blog-container h2 {
    color: #195867;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-container h2 i {
    color: #dd8e37;
    font-size: 1.5rem;
}

.blog-container p {
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

/* Author Badge */
.author-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 15px;
    border-left: 4px solid #dd8e37;
    background: #f8f8f8;
    border-radius: 10px;
}

.author-badge img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-badge div {
    font-size: 0.95rem;
    color: #333;
}

.author-badge div i {
    color: #dd8e37;
    margin-right: 6px;
}

@media (max-width: 768px) {
    .blog-container {
        /* margin: -60px 15px 60px; */
        padding: 30px;
    }

    .blog-hero {
        max-height: 600px;
    }
}

/* blog end */

/* pay-now start */
/* Wrapper for entire page */
.page-wrapper {
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #155768, #da8727);
    margin: 0;
    padding: 40px 15px;
    overflow-x: hidden;
}

/* Section heading */
.pay-header {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    animation: fadeDown 1s ease;
}

.pay-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pay-header p {
    font-size: 1rem;
    color: #f8f8f8;
    opacity: 0.9;
}

/* Payment section layout */
.pay-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

/* Shared card style */
.pay-card {
    flex: 1 1 320px;
    min-width: 280px;
    padding: 30px 25px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pay-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

/* Bank details */
.pay-bank h3 {
    font-size: 1.5rem;
    color: #ffd57e;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pay-bank p {
    font-size: 1rem;
    margin-bottom: 18px;
    line-height: 1.9;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.pay-bank p:last-child {
    border-bottom: none;
}

.pay-bank strong {
    color: #ffd57e;
}

/* QR box */
.pay-qr {
    text-align: center;
}

.pay-qr h3 {
    font-size: 1.4rem;
    color: #ffd57e;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pay-qr img {
    width: 220px;
    height: 220px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    margin-bottom: 15px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.pay-qr img:hover {
    transform: rotate(3deg) scale(1.05);
    box-shadow: 0 0 35px rgba(255, 213, 126, 0.7);
}

.pay-qr p {
    font-size: 1rem;
    line-height: 1.5;
    color: #fefefe;
}

/* Animations */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .page-wrapper {
        padding: 25px 12px;
    }

    .pay-header h2 {
        font-size: 1.6rem;
    }

    .pay-header p {
        font-size: 0.95rem;
    }

    .pay-card {
        padding: 25px 20px;
    }

    .pay-bank h3,
    .pay-qr h3 {
        font-size: 1.3rem;
    }

    .pay-bank p {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .pay-qr img {
        width: 180px;
        height: 180px;
    }
}

/* pay-now-end */

/* product start */

/* Paragraph Styling */
p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

.product-title {
    color: #195867;
    font-weight: 700;
    font-size: 28px;
}

.price-block {
    font-size: 20px;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    margin-left: 10px;
    color: #777;
}

.discount {
    color: #dd8e37;
    font-weight: 700;
    margin-left: 10px;
}

.benefits-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

/* .benefits-list li::before {
    content: "✔";
    color: #dd8e37;
    position: absolute;
    left: 0;
    font-size: 18px;
} */

.custom-outline-btn,
.custom-fill-btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #dd8e37;
    cursor: pointer;
    transition: 0.3s;
    font-family: "Cinzel", serif;
}

.custom-outline-btn {
    background: #fff;
    color: #195867;
    border: 2px solid #dd8e37;
    transition: 0.3s;
}

.custom-outline-btn:hover {
    background: linear-gradient(135deg, #265b63, #dd8e37);
    color: #fff;
}

.custom-fill-btn {
    background: linear-gradient(135deg, #265b63, #dd8e37);
    color: #fff;
}

.custom-fill-btn:hover {
    background: linear-gradient(135deg, #265b63, #dd8e37);
    color: #fff;
}

/* Thumbnails */
.thumb {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: 0.3s;
}

.thumb.active {
    border-color: #dd8e37;
}

/* Tabs */
.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #265b63, #dd8e37);
    color: #fff !important;
    border-radius: 0.25rem;
    font-size: 16px;
}

.tab-pane {
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

/* Related Products */
/* .related-products-title h3 {
    color: #195867;
}

.related-product-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.related-product-card img {
    max-width: 100%;
    border-radius: 8px;
}

.related-product-card h6 {
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    color: #195867;
}

.related-product-card p {
    font-weight: 700;
    color: #dd8e37;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 22px;
    }

    .price-block {
        font-size: 18px;
    }
}

.notes-list li {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 8px;
}

.notes-list strong {
    color: #195867;
    font-weight: 600;
    font-size: 18px;
} */

/* product end */

/* enquiry index start */
/* Enquiry Section */
.enquiry-section {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    /* White background */
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    color: #215a64;
}

.main-wrapper {
    margin-bottom: 40px;
}

.brand-logo {
    font-family: "Dancing Script", cursive;
    font-size: 32px;
    color: #215a64;
    font-weight: 600;
}

.divider-line {
    margin: 10px auto 0;
    font-size: 20px;
    color: #dd8e37;
}

/* Enquiry Row */
.enquiry-row {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
}

/* Left Image */
.enquiry-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s forwards;
    animation-delay: 0.3s;
}

.enquiry-left img {
    width: 100%;
    max-height: 500px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Right Form */
.enquiry-right {
    flex: 1;
    background: #fdfdfd;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s forwards;
    animation-delay: 0.5s;
    color: #215a64;
}

.enquiry-right h3 {
    color: #215a64;
    margin-bottom: 25px;
    font-size: 28px;
    animation: fadeUp 0.8s forwards;
    animation-delay: 0.7s;
}

/* Form Fields */
.form-row {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 12px 18px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #215a64;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
}

.form-row:nth-child(1) {
    animation-delay: 0.9s;
}

.form-row:nth-child(2) {
    animation-delay: 1.1s;
}

.form-row:nth-child(3) {
    animation-delay: 1.3s;
}

.form-row:nth-child(4) {
    animation-delay: 1.5s;
}

.form-row i {
    margin-right: 12px;
    font-size: 16px;
    color: #dd8e37;
}

.form-row input,
.form-row textarea {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    background: transparent;
    resize: none;
    color: #215a64;
}

.form-row:focus-within {
    border: 1px solid #dd8e37;
    box-shadow: 0 0 8px rgba(221, 142, 55, 0.5);
}

.textarea-row {
    align-items: flex-start;
    border-radius: 20px;
}

/* Button */
.enquiry-btn {
    background: linear-gradient(135deg, #215a64, #dd8e37);
    color: white;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
    animation-delay: 1.7s;
}

.enquiry-btn:hover {
    background: linear-gradient(135deg, #dd8e37, #215a64);
    color: white;
    transform: scale(1.02);
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .enquiry-row {
        flex-direction: column;
        gap: 25px;
    }

    .enquiry-left img,
    .enquiry-right {
        max-height: none;
        transform: none;
        animation: none;
        opacity: 1;
    }

    .enquiry-right {
        padding: 25px 20px;
    }

    .enquiry-right h3 {
        text-align: center;
    }
}

/* enquiry index end */

/* fixed button start */
/* ===== Container ===== */
.fixed-buttons {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 1000;
}

/* ===== Common Button Style ===== */
.fixed-buttons a {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
}

/* ===== Backgrounds with Gradient & Glow ===== */
.call-btn {
    background: linear-gradient(135deg, #ff416c, #ff7e5f);
    box-shadow: 0 0 18px rgba(255, 65, 108, 0.5);
    animation: glowRed 2s infinite alternate;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #0cb974);
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.5);
    animation: glowGreen 2s infinite alternate;
}

/* ===== Hover Effect ===== */
.fixed-buttons a:hover {
    transform: scale(1.18) rotate(-8deg);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

/* ===== Shine Effect ===== */
.fixed-buttons a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.fixed-buttons a:hover::after {
    left: 125%;
}

/* ===== Tooltip ===== */
.tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.fixed-buttons a:hover .tooltip {
    opacity: 1;
    left: 75px;
}

/* ===== Glow Animations ===== */
@keyframes glowRed {
    from {
        box-shadow: 0 0 10px rgba(255, 65, 108, 0.4);
    }

    to {
        box-shadow: 0 0 25px rgba(255, 65, 108, 0.8);
    }
}

@keyframes glowGreen {
    from {
        box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
    }

    to {
        box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
    }
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
    .fixed-buttons {
        bottom: 20px;
        left: 15px;
    }

    .fixed-buttons a {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .tooltip {
        font-size: 12px;
    }
}

/* fixed button end  */