/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    text-align: center;
}

/* Hide scrollbar for all browsers */
html,
body {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

/* HEADER – REDUCED SIZE */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e6e6e6;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 5px 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-area img {
    height: 75px;
    width: auto;
    display: block;
}

.contact-area {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.contact-item a {
    color: #333333;
    font-size: 14px;
}

.contact-icon {
    font-size: 16px;
    color: #f5b733;
    display: inline-flex;
}

.toggle-menu {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    display: none;
}

.header-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding-bottom: 10px;
}

.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    font-size: 18px;
}

.nav-list li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: 0.3s ease;
}

.nav-list li a:hover {
    border-bottom: 2px solid #f5b733;
}

.nav-list li a.active {
    color: #D4AF37;
    border-bottom: 2px solid #D4AF37;
    font-weight: 700;
}

/* Mobile Responsive Header */
@media (max-width: 992px) {
    .header-top {
        padding: 8px 0;
    }

    .contact-area {
        display: none;
    }

    .toggle-menu {
        display: block;
        color: #333;
    }

    .header-bottom {
        display: none;
    }

    .logo-area img {
        height: 50px;
    }

    .cbp-spmenu {
        background: #1B4D3E;
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100%;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
        padding: 70px 25px 25px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

    .cbp-spmenu-open {
        right: 0;
    }

    .cbp-spmenu h3 {
        color: #D4AF37;
        font-size: 1.6rem;
        margin-bottom: 25px;
        text-align: center;
        padding-bottom: 12px;
        border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    }

    .cbp-spmenu a {
        color: #fff;
        display: block;
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .cbp-spmenu a:hover {
        color: #D4AF37;
        padding-left: 8px;
    }
}

/* Slider Section - Adjusted margin for reduced header */
.product-slider-main {
    margin-top: 80px;
    /* Reduced from 120px */
    position: relative;
}

.product-slider-main .owl-carousel {
    position: relative;
}

.product-slider-main .owl-carousel .item {
    height: 640px;
    background-size: cover;
    background-position: center;
}

/* Custom arrow positioning */
.product-slider-main .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    margin: 0;
}

.product-slider-main .owl-nav button {
    position: absolute;
    background: transparent !important;
    width: 55px;
    /* Reduced from 50px */
    height: 55px;
    /* Reduced from 50px */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-slider-main .owl-nav button:hover {
    background: transparent !important;
}

.product-slider-main .owl-nav button.owl-prev {
    left: 15px;
    /* Reduced from 20px */
}

.product-slider-main .owl-nav button.owl-next {
    right: 15px;
    /* Reduced from 20px */
}

.product-slider-main .owl-nav button i {
    color: white;
    font-size: 30px;
    /* Reduced from 24px */
}

.product-slider-main .owl-dots {
    display: none;
}

/* Slider Responsive */
@media (max-width: 768px) {
    .product-slider-main {
        margin-top: 70px;
        /* Reduced from 80px */
    }

    .product-slider-main .owl-carousel .item {
        height: 400px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .product-slider-main .owl-nav button {
        width: 35px;
        /* Reduced from 40px */
        height: 35px;
        /* Reduced from 40px */
    }

    .product-slider-main .owl-nav button.owl-prev {
        left: 10px;
    }

    .product-slider-main .owl-nav button.owl-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .product-slider-main .owl-carousel .item {
        height: 230px;
        background-size: contain;
        background-repeat: no-repeat;
    }
}

/* Welcome Section */
.welcome-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    /* Reduced from 150px */
    background: #f9f9f9;
}

.welcome-main-inner-left,
.welcome-main-inner-center {
    flex: 1;
    text-align: center;
}

.img-inner-welcome img {
    height: 80px;
    /* Reduced from 100px */
    margin-bottom: 15px;
    /* Reduced from 20px */
}

.header-tittle-welcome,
h1.header-tittle-welcome {
    color: #D4AF37;
    font-size: 42px;
    /* Reduced from 52px */
    margin-bottom: 15px;
    /* Reduced from 20px */
    text-align: center;
}

.ciw-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Welcome Responsive */
@media (max-width: 768px) {
    .welcome-main {
        padding: 60px 0;
        /* Reduced from 80px */
    }

    .header-tittle-welcome {
        font-size: 1.8rem;
        /* Reduced from 2rem */
    }

    .ciw-content {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* NEW PRODUCTS SECTION */
#products {
    background-color: #ffffff;
    padding: 60px 0;
    /* Reduced from 100px */
}

.section-title {
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 2.2rem;
    /* Reduced from 2.5rem */
    color: #D4AF37;
    margin-bottom: 40px;
    /* Reduced from 50px */
    position: relative;
    padding-bottom: 12px;
    /* Reduced from 15px */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    /* Reduced from 60px */
    height: 2px;
    /* Reduced from 3px */
    background-color: #D4AF37;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Reduced from 300px */
    gap: 30px;
    /* Reduced from 40px */
    margin-bottom: 50px;
    /* Reduced from 60px */
}

.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    /* Reduced from 10px */
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    /* Reduced from 10px 30px */
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    /* Reduced from 4px */
    background: #D4AF37;
    transform: scaleX(0);
    transition: all 0.3s ease;
    transform-origin: left;
}

.product-card:hover {
    transform: translateY(-8px);
    /* Reduced from -10px */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    /* Reduced from 15px 40px */
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-image {
    height: 280px;
    /* Reduced from 300px */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FAFAF5;
    padding: 25px;
    /* Reduced from 30px */
    transition: all 0.3s ease;
}

.product-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 25px;
    /* Reduced from 30px */
}

.product-info h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.2rem;
    /* Reduced from 1.3rem */
    margin-bottom: 12px;
    /* Reduced from 15px */
    color: #1B4D3E;
    font-weight: 600;
    line-height: 1.4;
}

.price-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    /* Reduced from 20px */
    margin-top: 10px;
}

.price {
    font-size: 1.3rem;
    /* Reduced from 1.4rem */
    font-weight: 700;
    color: #4A3B32;
}

.mrp {
    font-size: 0.95rem;
    /* Reduced from 1rem */
    text-decoration: line-through;
    color: #999;
}

.products-cta {
    text-align: center;
    margin-top: 30px;
    /* Reduced from 40px */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    /* Reduced from 12px 30px */
    border-radius: 25px;
    /* Reduced from 30px */
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
    /* Reduced from 1rem */
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
    color: #ffffff !important;
    /* CHANGED: White text before hover */
    border: 2px solid #D4AF37;
}

.btn-primary:hover {
    background: #ffffff !important;
    color: #D4AF37 !important;
    border: 2px solid #D4AF37 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(212, 175, 55, 0.3);
    /* Reduced from 10px 20px */
}

/* Product Badge for Discount */
.product-badge {
    position: absolute;
    top: 12px;
    /* Reduced from 15px */
    right: 12px;
    /* Reduced from 15px */
    background: #D4AF37;
    color: white;
    padding: 4px 10px;
    /* Reduced from 5px 12px */
    border-radius: 15px;
    /* Reduced from 20px */
    font-weight: 700;
    font-size: 0.85rem;
    /* Reduced from 0.9rem */
    z-index: 2;
}

/* Product Hover Effect - IMPROVED SMOOTH ANIMATION */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 77, 62, 0.95);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    padding: 15px;
    /* Reduced from 20px */
    text-align: center;
    transform: translateY(10px);
}

.product-card:hover .product-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-overlay h4 {
    font-size: 1rem;
    /* Reduced from 1.1rem */
    margin-bottom: 8px;
    /* Reduced from 10px */
    color: #D4AF37;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.product-overlay p {
    font-size: 0.85rem;
    /* Reduced from 0.9rem */
    margin-bottom: 12px;
    /* Reduced from 15px */
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.product-card:hover .product-overlay h4,
.product-card:hover .product-overlay p {
    transform: translateY(0);
    opacity: 1;
}

.overlay-btn {
    background: #D4AF37;
    color: white;
    padding: 6px 15px;
    /* Reduced from 8px 20px */
    border-radius: 15px;
    /* Reduced from 20px */
    font-weight: 600;
    font-size: 0.85rem;
    /* Reduced from 0.9rem */
    border: 2px solid transparent;
    transition: all 0.3s ease 0.3s;
    transform: translateY(10px);
    opacity: 0;
}

.product-card:hover .overlay-btn {
    transform: translateY(0);
    opacity: 1;
}

.overlay-btn:hover {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    transform: translateY(-2px);
}

/* Responsive for products */
@media (max-width: 576px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll to Top Button */
#scrollTopBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 999;
    /* Make sure it does not overlap */
    outline: none;
    background-color: #ffffff;
    /* White background */
    color: #D4AF37;
    /* Brand Gold Icon */
    border: 2px solid #D4AF37;
    /* Brand Gold Border */
    cursor: pointer;
    padding: 10px 16px;
    /* Adjusted padding for border */
    border-radius: 50%;
    /* Rounded */
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    background-color: #D4AF37;
    /* Gold background */
    color: #ffffff;
    /* White icon */
    transform: translateY(-3px);
    /* Subtle lift effect */
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        /* Reduced from 30px */
    }
}

@media (max-width: 768px) {
    #products {
        padding: 50px 0;
        /* Reduced from 60px */
    }

    .section-title {
        font-size: 1.8rem;
        /* Reduced from 2rem */
        padding: 0 15px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        /* Reduced from 30px */
        padding: 0 15px;
    }

    .product-image {
        height: 240px;
        /* Reduced from 250px */
    }

    .product-info h3 {
        font-size: 1.1rem;
        /* Reduced from 1.2rem */
    }
}

/* Testimonial Section */
.woctau-main {
    padding: 60px 0;
    /* Reduced from 80px */
    background: #fff;
}

.woctau-heading {
    margin-bottom: 30px;
    /* Reduced from 40px */
    font-size: 36px;
    /* Reduced from default */
}

.testimonial-content-main {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    /* Reduced from 40px */
    background: #f9f9f9;
    border-radius: 8px;
    /* Reduced from 10px */
}

.testimonial-content-inner {
    font-size: 16px;
    /* Reduced from 18px */
    line-height: 1.8;
    margin-bottom: 25px;
    /* Reduced from 30px */
    font-style: italic;
}

.author-name {
    font-weight: bold;
    color: #D4AF37;
    font-size: 15px;
    /* Reduced from 16px */
}

/* Testimonial Responsive */
@media (max-width: 768px) {
    .woctau-main {
        padding: 40px 0;
        /* Reduced from 60px */
    }

    .woctau-heading {
        font-size: 28px;
    }

    .testimonial-content-main {
        padding: 20px;
        /* Reduced from 25px */
        margin: 0 15px;
    }

    .testimonial-content-inner {
        font-size: 1rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-css {
    animation: fadeIn 0.5s ease-in;
}

/* Close button for mobile menu */
.menu-close {
    position: absolute;
    top: 15px;
    /* Reduced from 20px */
    right: 15px;
    /* Reduced from 20px */
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    /* Reduced from 28px */
    cursor: pointer;
    z-index: 1002;
}

/* Mobile overlay for menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

.menu-overlay.active {
    display: block;
}

/* Fix for home section scroll */
#home {
    scroll-margin-top: 90px;
}

/* Ensure proper spacing for sections */
section[id] {
    scroll-margin-top: 90px;
}

/* NEW FOOTER STYLES */
.velan-footer {
    background-color: #1B4D3E;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    color: #D4AF37;
    font-size: 28px;
    margin-bottom: 15px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #D4AF37;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #D4AF37;
    color: #1B4D3E;
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    color: #D4AF37;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-icon {
    color: #D4AF37;
    margin-right: 15px;
    font-size: 18px;
    min-width: 20px;
    margin-top: 3px;
}

.footer-contact-item p {
    margin: 0;
    line-height: 1.6;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #D4AF37;
}

/* NEW: Google Maps Button */
.maps-button {
    display: inline-flex;
    align-items: center;
    background-color: #D4AF37;
    color: #1B4D3E;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.maps-button:hover {
    background-color: transparent;
    color: #D4AF37;
    border-color: #D4AF37;
    transform: translateY(-2px);
}

.maps-button i {
    margin-right: 8px;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.heart {
    color: #ff6b6b;
}

@media (max-width: 768px) {
    .velan-footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand h2 {
        font-size: 24px;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 18px;
    }
}

/* Certifications Section */
.certifications-section {
    padding: 60px 0;
    background-color: #fcfcfc;
    text-align: center;
}

.certifications-section .section-title {
    margin-bottom: 40px;
    color: #1B4D3E;
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.cert-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 200px;
    height: 240px;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cert-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.cert-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .cert-grid {
        gap: 20px;
    }

    .cert-item {
        width: 160px;
        height: 200px;
        padding: 15px;
    }

    .cert-item img {
        width: 90px;
        height: 90px;
    }

    .certifications-section .section-title {
        font-size: 2rem;
    }
}