﻿body {
    padding-top: 80px;
    background: #FFFFFF;
    overflow-x: hidden;
}

html {
    max-width: 100%;
}


.carousel-img {
    width: 100%;
    height: 400px; /* Desktop height */
    object-fit: cover; /* Slight crop to fill container */
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    text-align: center;
    color: #fff;
}

.premium-banner {
    position: relative; /* ensure stacking context */
    z-index: 0; /* navbar ke neeche leke aaye */
    padding-top: 120px; /* navbar height + spacing */
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(11,48,55,0.85), rgba(19,78,94,0.85));
    color: #FFFFFF;
}

    .premium-banner h1,
    .premium-banner p {
        text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    }

    .premium-banner .btn-ocean {
        background: linear-gradient(90deg, #0B3037 0%, #134E5E 100%);
        color: #FFFFFF; /* Text color white */
        font-weight: 500;
        border: none;
        border-radius: 8px;
        padding: 12px 30px;
        font-size: 1rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }

/* Hover effect *
        .premium-banner .btn-ocean:hover {
            background: linear-gradient(90deg, #134E5E 0%, #0B3037 100%);
            transform: translateY(-2px);
            cursor: pointer;
            color: #FFFFFF; /* Keep text white on hover */
}

/* Active / Focus / Visited states */
.premium-banner .btn-ocean:active,
.premium-banner .btn-ocean:focus,
.premium-banner .btn-ocean:visited {
    color: #FFFFFF; /* Always white text */
    text-decoration: none;
}

/* Optional: fallback for buttons outside premium-banner */
.btn-ocean:hover {
    color: #FFFFFF; /* Ensure hover text is always white */
}

/* Optional: keep placeholder color subtle */
.input-white::placeholder {
    color: #6c757d;
    opacity: 1;
}

/* ================= NAVBAR ================= */
.navbar-custom {
    background: linear-gradient(90deg, #0B3037 0%, #134E5E 100%) !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

    /* ================= LINKS ================= */
    .navbar-custom .navbar-brand,
    .navbar-custom .nav-link {
        color: #fff !important;
        font-weight: 500;
    }

        /* hover */
        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link.active {
            border-bottom: 2px solid #fff;
        }

    /* ================= DROPDOWN ================= */
    .navbar-custom .dropdown-menu {
        background: #134E5E !important;
    }

    .navbar-custom .dropdown-item {
        color: #fff !important;
    }

        .navbar-custom .dropdown-item:hover {
            background: #0B3037 !important;
        }

    /* ================= ICONS ================= */
    .navbar-custom .nav-link i {
        color: #fff !important;
    }

    /* ================= BODY OFFSET ================= */

    .navbar-custom .container,
    .navbar-custom .container-fluid {
        align-items: center;
    }
    /* ================= TOGGLER (IMPORTANT FIX) ================= */
    .navbar-custom .navbar-toggler {
        border: none !important;
        box-shadow: none !important;
    }

/* show only on mobile */
@media (max-width: 991px) {
    .navbar-custom .navbar-toggler {
        display: block;
    }
}

.navbar-custom .navbar-toggler {
    margin-left: auto;
    z-index: 1100;
}
/* ================= HAMBURGER ICON ================= */
.navbar-custom .navbar-toggler-icon {
    width: 25px;
    height: 2px;
    background: white;
    position: relative;
    display: block;
}

@media (max-width: 768px) {
    .carousel-img {
        height: 300px; /* 500 bohat zyada hai mobile ke liye */
    }

    .carousel-caption {
        padding: 10px;
    }
}

.navbar-custom .navbar-toggler-icon::before,
.navbar-custom .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background: white;
    left: 0;
}

.navbar-custom .navbar-toggler-icon::before {
    top: -7px;
}

.navbar-custom .navbar-toggler-icon::after {
    top: 7px;
}

/* Footer background with ocean gradient */
.footer {
    background: linear-gradient(90deg, #0B3037 0%, #134E5E 100%) !important;
    color: #FFFFFF !important;
    padding: 15px 0;
    text-align: center;
}

    .footer a {
        color: #FFFFFF !important;
        text-decoration: underline;
    }

        .footer a:hover {
            color: #A0D6FF !important;
        }

/* Hover effect on cards */
.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

/* WhatsApp floating button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #134E5E;
    color: white;
    border-radius: 50px;
    padding: 12px 18px;
    font-size: 1.2rem;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

    .whatsapp-btn i {
        margin-right: 8px;
    }

/* Lazyload placeholder */
.lazyload {
    opacity: 0;
    transition: opacity 0.5s;
}

.lazyloaded {
    opacity: 1;
}

.carousel-img {
    height: 400px;
    object-fit: cover;
}

/* Caption styling */
.carousel-caption h2 {
    font-size: 1.8rem;
}

.carousel-caption p {
    font-size: 1rem;
}

.carousel-caption a:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

.feedback-section {
    background-color: #FFFFFF;
    color: #ffffff;
}

    .feedback-section .form-control {
        border-radius: 0.5rem;
    }

    .feedback-section .btn-success {
        background-color: #134E5E;
        border-color: #134E5E;
        transition: 0.3s;
    }

        .feedback-section .btn-success:hover {
            background-color: #0B3037;
            border-color: #09272B;
        }

.product-card {
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    transition: 0.3s;
}

.product-card:hover .product-overlay {
    background: rgba(0,0,0,0.5);
}

.product-overlay h5,
.product-overlay p {
    margin: 0;
    line-height: 1.2;
}

/* Admin Dashboard */
body {
    background: #FFFFFF; /* Keep page background white */
    overflow-x: hidden;
}

/* Sidebar */
.sidebar {
    min-height: 100vh;
    background: #0B3037;
    transition: 0.3s;
}

    .sidebar .nav-link {
        color: #A0D6FF;
        padding: 12px 18px;
        border-radius: 8px;
        margin-bottom: 6px;
        transition: 0.3s;
        font-weight: 500;
    }

        .sidebar .nav-link:hover {
            background: #134E5E;
            color: white;
            transform: translateX(4px);
        }

        .sidebar .nav-link.active {
            background: #1C6070;
            color: white;
        }

/* Cards */
.dashboard-card {
    border-radius: 14px;
    border: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .dashboard-card:hover {
        transform: translateY(-5px);
    }

/* Responsive Sidebar */
@media(max-width:768px) {
    .sidebar {
        position: fixed;
        left: -250px;
        width: 250px;
        z-index: 1000;
    }

        .sidebar.active {
            left: 0;
        }
}

/* Ocean-colored icons for "Why Choose Us" section */
.py-5 .fas {
    /* Gradient ocean color */
    background: linear-gradient(135deg, #0B3037, #134E5E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.card:hover {
    transform: scale(1.02);
    transition: all 0.3s ease;
}
/* Smaller button */
.btn-overlay {
    padding: 0.25rem 0.5rem; /* smaller size */
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

    /* Hover effect */
    .btn-overlay:hover {
        background-color: transparent !important;
        color: white !important;
        border: 1px solid white;
    }

.custom-btn {
    font-size: 12px;
    padding: 4px 10px;
    height: 30px;
}

/* ================= Footer Theme (Same as Navbar) ================= */
.footer-custom {
    background: linear-gradient(90deg, #0B3037 0%, #134E5E 100%);
    color: #FFFFFF;
}

    /* links */
    .footer-custom .footer-links a {
        color: #FFFFFF;
        text-decoration: none;
        display: block;
        margin-bottom: 5px;
        transition: 0.3s;
    }

        /* hover effect */
        .footer-custom .footer-links a:hover {
            color: #CCCCCC;
            padding-left: 5px;
        }

/* divider line */
.footer-divider {
    border-color: rgba(255,255,255,0.2);
}

/* Gift Offer Section */
.gift-offer-section {
    background: #f9f9f9;
}

/* Main Banner */
.gift-banner {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.banner-text {
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* Gift Item Cards */
/* CSS */
.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px; /* yahan aap center wali image ki height set karein */
    width: 100%;
}

    .product-img-wrapper img {
        height: 100%;
        width: 100%;
        object-fit: cover; /* image ko crop kiye bina fit karega */
        display: block;
    }

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-align: center;
    padding: 10px;
}


/*3 rows images*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.collection-section {
    padding: 40px 5%;
    text-align: center;
    background: #f8f8f8;
}

.main-heading {
    letter-spacing: 4px;
    margin-bottom: 30px;
    font-weight: 500;
}

.image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.image-card {
    flex: 1 1 calc(33.33% - 20px);
    position: relative;
}

@media (max-width: 768px) {
    .image-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .image-row {
        flex-direction: column;
        gap: 15px;
    }

    .image-card {
        width: 100%;
    }
}

    .image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease; /* normal transition */
    }

    .image-card:hover img {
        animation: slow-zoom 10s linear infinite forwards;
    }

@keyframes slow-zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.3); /* final zoom */
    }
}

.overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

    .overlay h3 {
        font-size: 20px;
        margin-bottom: 8px;
        letter-spacing: 2px;
    }

    .overlay a {
        text-decoration: none;
        color: white;
        border-bottom: 1px solid white;
        font-size: 14px;
    }

/* Responsive */
@media (max-width: 768px) {
    .image-row {
        flex-direction: column;
    }

    .image-card {
        height: 300px;
    }
}
/*
moving effect*/
.moving-text-section {
    background: #f5f5f5;
    padding: 40px 0;
    text-align: center;
    overflow: hidden;
}

.scrolling-wrapper {
    white-space: nowrap;
    overflow: hidden;
}

    .scrolling-wrapper h1 {
        display: inline-block;
        font-size: 60px;
        font-weight: 500;
        letter-spacing: 8px;
        color: #c7a64d;
        animation: scrollText 30s linear infinite;
    }

/* Animation */
@keyframes scrollText {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

.sub-text {
    margin-top: 15px;
    font-size: 14px;
    letter-spacing: 3px;
    color: #555;
}

/*special offer css*/
/* Heading */
.section-title {
    text-align: center;
    padding: 40px 0 20px;
}

    .section-title h1 {
        font-size: 40px;
        font-weight: 600;
        letter-spacing: 2px;
    }

    .section-title span {
        color: #b76e79;
        font-weight: 300;
    }

/* Grid Layout */
.collection-container {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 350px 350px;
    gap: 20px;
}

.box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 8s ease; /* Slow zoom */
    }

    /* Slow Continuous Zoom */
    .box:hover img {
        transform: scale(1.2);
    }

/* Text Overlay */
.overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

    .overlay h2 {
        margin: 0;
        font-weight: 500;
        letter-spacing: 2px;
    }

    .overlay p {
        margin: 5px 0 0;
        font-size: 14px;
        letter-spacing: 1px;
    }

/* First big image */
.big {
    grid-row: 1 / span 2;
}

@media(max-width:900px) {
    .collection-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .big {
        grid-row: auto;
    }
}


.customer-reviews {
    background: #f8f9fa;
}

.review-card {
    background: white;
    border-radius: 10px;
    transition: 0.3s;
}

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

/* Hover dropdown */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}


.reviews-summary i {
    font-size: 1rem;
}

.reviews-list {
    background-color: #f9f9f9;
}

.review-item:hover {
    background-color: #f1f1f1;
}

.review-avatar {
    flex-shrink: 0;
}

.zoom-container {
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
}

    /* + icon on hover */
    .zoom-container::after {
        content: '+';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 48px;
        color: rgba(255,255,255,0.7);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }

    .zoom-container:hover::after {
        opacity: 1;
    }

    /* Zoomed state */
    .zoom-container.zoomed img {
        transform: scale(2); /* zoom factor */
        cursor: move;
        transition: none;
    }

    /* Ensure container hides overflow */
    .zoom-container img {
        transition: transform 0.3s ease;
    }

#mainImageContainer {
    width: 100%; /* full column width */
    max-width: 600px; /* zyada width */
    height: 350px; /* thodi kam height */
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

    #mainImageContainer img {
        width: 100%; /* image fills container width */
        height: 100%; /* image fills container height */
        object-fit: contain; /* maintain aspect ratio */
        transition: transform 0.3s ease;
    }


.padding {
    padding-top: 45px;
}

.custom-container {
    max-width: 1400px; /* website ka maximum width */
    margin-left: auto; /* center horizontally */
    margin-right: auto; /* center horizontally */
    padding-left: 1rem; /* left/right spacing */
    padding-right: 1rem;
}

/* Responsive adjustment (optional) */
@media (max-width: 1200px) {
    .custom-container {
        max-width: 95%; /* mobile / smaller screens thoda adjust */
    }
}


.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* overall caption width */
    max-width: 800px; /* large screen max width */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0.5rem; /* small horizontal padding */
}

    /* Heading responsive */
    .carousel-caption h2 {
        font-size: 2rem;
        max-width: 100%; /* allow full width */
        white-space: normal; /* allow wrapping */
        line-height: 1.2; /* spacing between lines */
    }

    /* Paragraph responsive */
    .carousel-caption p {
        font-size: 1rem;
        max-width: 100%;
        white-space: normal; /* allow wrapping */
        line-height: 1.3;
    }

    /* Button responsive */
    .carousel-caption .btn {
        font-size: 1rem;
        padding: 0.5rem 2rem;
        white-space: nowrap; /* button text single line */
    }

/* Tablet screens */
@media (max-width: 992px) {
    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.95rem;
    }

    .carousel-caption .btn {
        font-size: 0.95rem;
        padding: 0.4rem 1.2rem;
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    .carousel-caption h2 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.85rem;
    }

    .carousel-caption .btn {
        font-size: 0.85rem;
        padding: 0.3rem 1rem;
    }
}
/* Button responsive */
.carousel-caption .btn {
    font-size: 1rem;
    padding: 0.5rem 2rem; /* width increase, height controlled */
    white-space: nowrap; /* button text in one line */
}


.submit-btn {
    font-size: 1rem;
    padding: 0.5rem 2rem; /* width increase, height controlled */
    white-space: nowrap; /* button text in one line */
}

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

    [data-aos].aos-animate {
        opacity: 1;
    }

/* Preloader full screen */

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0B3037 0%, #134E5E 100%);
    /* same as your site */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 2s ease, visibility 2s ease;
}

/* Logo Animation */
.loader-content img {
    width: 600px; /* logo size */
    opacity: 0;
    animation: slideBounceHoldZoom 8s ease-in-out forwards; /* slow & cinematic */
}

@keyframes slideBounceHoldZoom {
    0% {
        transform: translateX(300px) scale(1);
        opacity: 0;
    }

    50% { /* Slide + bounce */
        transform: translateX(-20px) scale(1);
        opacity: 1;
    }

    65% {
        transform: translateX(10px) scale(1);
    }

    75% {
        transform: translateX(0) scale(1);
    }

    85% { /* Hold fully visible */
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    100% { /* Zoom + fade out slowly */
        transform: translateX(0) scale(2.5);
        opacity: 0;
    }
}

/* Announcement Bar */
.announcement-bar {
    width: 100%;
    background: #000;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    position: relative;
    z-index: 999;
    margin-bottom: 15px
}

.announcement-text {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 18s linear infinite;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes scrollText {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}


/* ================= PRODUCT PAGE RESPONSIVE (CLEAN VERSION) ================= */

@media (max-width: 768px) {

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    h1.h2 {
        font-size: 20px;
        text-align: center;
    }

    .price {
        text-align: center;
        font-size: 18px !important;
    }

    .badge {
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }

    #mainImage {
        width: 100% !important;
        height: auto !important;
    }

    .thumb-img {
        width: 60px !important;
        height: 60px !important;
    }

    .d-flex.gap-2.flex-wrap {
        justify-content: center;
    }

    /* buttons stack on mobile */
    .d-flex.gap-2.mb-3 {
        flex-direction: column;
    }

        .d-flex.gap-2.mb-3 a,
        .d-flex.gap-2.mb-3 form button {
            width: 100% !important;
        }

    .d-flex.gap-3 {
        justify-content: center !important;
    }

    .row.border-bottom {
        display: block;
        text-align: center;
    }

    .col-12.col-sm-6.col-md-3 {
        margin-bottom: 15px;
    }
}

/* ================= QUANTITY FIX (FINAL STABLE) ================= */

@media (max-width: 768px) {

    .d-flex.align-items-center.gap-2.mb-3 {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 6px !important;
    }

        .d-flex.align-items-center.gap-2.mb-3 label {
            margin: 0 !important;
            font-size: 14px;
            white-space: nowrap;
        }

        .d-flex.align-items-center.gap-2.mb-3 button {
            width: 34px !important;
            height: 34px !important;
            padding: 0 !important;
            font-size: 18px !important;
            display: flex !important;
            justify-content: center;
            align-items: center;
        }

    #quantity {
        width: 52px !important;
        height: 34px !important;
        font-size: 14px;
        text-align: center;
        padding: 0 !important;
    }
}
html, body {
    overflow-x: hidden !important;
    max-width: 100%;
}


