/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 0rem 4rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 999;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo h1 {
    font-size: 22px;
    font-weight: 600;
    color: #250480;
}

.logo img {
    width: 125px;
    height: 90px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #D4AF37;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 0.5rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 200px;
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #f4f4f4;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
}

/* Show classes */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.show-dropdown {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .dropdown-menu li a {
        padding-left: 1.5rem;
    }
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider img.active {
    opacity: 1;
    z-index: 2;
}


/* Curtain Unveiling Animation */
#fabricContainer {
    position: relative;
    overflow: hidden;
}

.curtain-left,
.curtain-right {
    position: absolute;
    top: 0;
    width: 49.5%;
    height: 100%;
    background: #B8860B;
    z-index: 10;
    transition: transform 1.5s ease;
    box-shadow: inset 0 0 5px 2px #D4AF37; /* subtle inner shadow to soften edges */
    border: none; /* ensure no border */
}

.curtain-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    z-index: 20;
    pointer-events: none;
    user-select: none;
}

.vertical-carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 15;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-carousel-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.vertical-carousel-slide {
    min-height: 100px;
    padding: 1rem;
    background: #B8860B;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 10px;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.curtain-left {
    left: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    transform-origin: left;
}

.curtain-right {
    right: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    transform-origin: right;
}

.curtain-open .curtain-left {
    transform: translateX(-110%);
}

.curtain-open .curtain-right {
    transform: translateX(110%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Changed from -1 to 1 to bring hero banner forward */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Remove zoom and animation */
    transform: none;
    animation: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Remove red gradient overlay */
    background: transparent;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="2" fill="rgba(255,255,255,0.3)" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="3s" repeatCount="indefinite"/></circle><circle cx="300" cy="200" r="1.5" fill="rgba(255,255,255,0.2)" opacity="0.7"><animate attributeName="opacity" values="0.7;0.3;0.7" dur="4s" repeatCount="indefinite"/></circle><circle cx="500" cy="150" r="1" fill="rgba(255,255,255,0.4)" opacity="0.6"><animate attributeName="opacity" values="0.6;0.2;0.6" dur="2.5s" repeatCount="indefinite"/></circle><circle cx="700" cy="300" r="2.5" fill="rgba(255,255,255,0.3)" opacity="0.8"><animate attributeName="opacity" values="0.8;0.4;0.8" dur="3.5s" repeatCount="indefinite"/></circle><circle cx="900" cy="180" r="1.2" fill="rgba(255,255,255,0.2)" opacity="0.5"><animate attributeName="opacity" values="0.5;0.9;0.5" dur="2.8s" repeatCount="indefinite"/></circle></svg>');
    z-index: 2;
    animation: particleFloat 10s infinite linear;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heroGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23heroGrid)"/></svg>');
    z-index: 2;
    opacity: 0.3;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 3;
    position: relative;
}

.hero-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    animation: badgeFloat 3s infinite ease-in-out;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.badge-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-line.accent {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s ease-out 0.3s both;
    background-size: 200% 200%;
    animation: slideInRight 1s ease-out 0.3s both, gradientShift 3s infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.title-decoration {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
    border-radius: 2px;
    animation: decorationExpand 1s ease-out 0.6s both;
}

@keyframes decorationExpand {
    0% { width: 0; }
    100% { width: 100px; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.btn-primary {
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover .btn-glow {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    position: relative;
}

.btn-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover .btn-border {
    opacity: 1;
}

.btn-secondary:hover {
    color: #1a1a1a;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.floating-cards {
    position: relative;
    height: 400px;
    width: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-1 {
    top: 50px;
    left: 50px;
    animation: float1 6s infinite ease-in-out;
}

.card-2 {
    top: 150px;
    right: 80px;
    animation: float2 6s infinite ease-in-out 2s;
}

.card-3 {
    bottom: 50px;
    left: 100px;
    animation: float3 6s infinite ease-in-out 4s;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(1deg); }
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-stats-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item-modern {
    text-align: center;
    color: white;
}

.stat-visual {
    position: relative;
    margin-bottom: 1rem;
}

.stat-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: statShine 2s infinite;
}

@keyframes statShine {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.stat-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
    animation: progressFill 2s ease-out 1.5s both;
}

.stat-progress[data-progress="85"]::before { width: 85%; }
.stat-progress[data-progress="72"]::before { width: 72%; }
.stat-progress[data-progress="95"]::before { width: 95%; }

@keyframes progressFill {
    0% { width: 0; }
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.scroll-indicator-modern {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: white;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.scroll-arrow-modern {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(-45deg); }
    40% { transform: translateY(-10px) rotate(-45deg); }
    60% { transform: translateY(-5px) rotate(-45deg); }
}

/* Products Section */
.products-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="productGrid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(220, 38, 38, 0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23productGrid)"/></svg>');
    z-index: 1;
}

.products-section .container {
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(220, 38, 38, 0.2);
    background: white;
    border-radius: 50px;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    color: white;
    border-color: #B8860B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card-modern {
    height: 450px;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.product-card-modern:nth-child(1) { animation-delay: 0.1s; }
.product-card-modern:nth-child(2) { animation-delay: 0.2s; }
.product-card-modern:nth-child(3) { animation-delay: 0.3s; }
.product-card-modern:nth-child(4) { animation-delay: 0.4s; }
.product-card-modern:nth-child(5) { animation-delay: 0.5s; }
.product-card-modern:nth-child(6) { animation-delay: 0.6s; }

.product-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.product-card-modern:hover .product-card-inner {
    transform: rotateY(180deg);
}

.product-front,
.product-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    overflow: hidden;
}

.product-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #1a1a1a 0%, #404040 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(185, 28, 28, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-overlay-modern {
    opacity: 1;
}

.product-icons {
    display: flex;
    gap: 1rem;
}

.product-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: iconFloat 2s infinite ease-in-out;
}

.product-icon:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.product-info-modern {
    padding: 1.5rem;
    text-align: center;
}

.product-category {
    color: #B8860B;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-info-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.product-info-modern p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-features-modern {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.feature-tag-modern {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #1a1a1a;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #B8860B;
}

.featured-product .product-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    z-index: 1;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    animation: pulse 2s infinite;
}

.product-back-content {
    text-align: center;
    width: 100%;
}

.product-back-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.product-specs {
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.spec-label {
    font-weight: 600;
    color: #fbbf24;
}

.spec-value {
    color: rgba(255, 255, 255, 0.8);
}

.product-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-header h2 {
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    /* background: linear-gradient(135deg, #ffffff, #ffffff); */
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    overflow: hidden;
}

.story-section .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
    pointer-events: none;
    border-radius: 15px;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-additional-text,
.about-objective-title {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
    color: white;
    font-size: 1.5rem;
}

.about-additional-text:nth-of-type(1) {
    animation-delay: 0.3s;
}

.about-additional-text:nth-of-type(2) {
    animation-delay: 0.6s;
}

.about-objective-title:nth-of-type(1) {
    animation-delay: 0.9s;
}

.about-additional-text:nth-of-type(3) {
    animation-delay: 1.2s;
}

.about-objective-title:nth-of-type(2) {
    animation-delay: 1.5s;
    margin-top: 2rem;
}

.about-additional-text:nth-of-type(4) {
    animation-delay: 1.8s;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.story-section .container > .section-header,
.story-section .container > .story-content {
    position: relative;
    z-index: 1;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.timeline-container {
    position: relative;
    width: 100%;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #B8860B, #D4AF37, #B8860B);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInTimeline 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1s; }

@keyframes slideInTimeline {
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

.timeline-dot {
    position: absolute;
    left: -50px;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(0.8); opacity: 1; }
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid white;
    border-bottom: 10px solid transparent;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    position: relative;
}

.timeline-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    border-radius: 2px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Story Image */
.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: scale(0.9);
    animation: scaleUp 1s ease-out 0.8s forwards;
}

@keyframes scaleUp {
    to { transform: scale(1); }
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* .story-image:hover img {
    transform: scale(1.05);
} */

/* Responsive Design for Timeline */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
        margin-bottom: 2rem;
    }
    
    .timeline-dot {
        left: -10px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content::before {
        left: -8px;
        top: 20px;
        border-right: 8px solid white;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: white;
}

.slider-inner a img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slider-inner a img:hover {
    transform: scale(1.05);
}

.categories-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    justify-content: center;
}

.category-card {
    flex: 0 0 auto;
    width: 100px;
    text-align: center;
}

.category-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.category-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.category-card {
    flex: 0 0 auto;
    width: 140px;
    text-align: center;
    padding: 10px 5px;
}

.category-image {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.category-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}
#prom-enquiry-forms .fixed-icons {
    position: fixed;
    left: 10px;
    bottom: 10%;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

#prom-enquiry-forms .fixed-icons a {
    margin: 5px 0;
    color: #fff;
    padding: 10px 10px;
    line-height: 0px !important;
    border-radius: 30px;
    text-align: center;
    font-size: 26px;
    transition: background-color 0.3s ease;
    
}  

#prom-enquiry-forms .fixed-icons .phone-icon {
    background-color: #1321a6;
}
#prom-enquiry-forms .fixed-icons .whatsapp-icon {
    background-color: #27d648;
}
#prom-enquiry-forms .fixed-icons .mail-icon {
    background-color: #d90000;
}

#prom-enquiry-forms .fixed-icons a:hover {
    background-color: #000;
}

/* Popup Form Styles */
#prom-enquiry-forms .popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

#prom-enquiry-forms .form-content {
    background-color: #ffffff;
    padding: 20px;
    
    max-width: 500px;
    position: relative;
    margin: 0 10px;
    width: 100%;
}

#prom-enquiry-forms .form-content h2 {
    color: #000000;
    text-align: center;
}

#prom-enquiry-forms .close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
    color: #000000;
}

#prom-enquiry-forms .popup-form form input,
#prom-enquiry-forms .popup-form form textarea {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#prom-enquiry-forms .popup-form form button {
    width: 100%;
    padding: 10px;
    background-color: #61c467;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 18px;
    transition: background-color 0.4s ease;
}

#prom-enquiry-forms .popup-form form button:hover {
    background-color: #48914d;
}




.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    overflow-x: visible;
    overflow-y: visible;
    padding-bottom: 1rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 38, 38, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.product-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Services Carousel Section */
.services-carousel-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.services-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(220, 38, 38, 0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow-y: hidden; /* prevent vertical scroll */
}

.carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    overflow-y: hidden; /* prevent vertical scroll */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.service-card {
    min-width: 300px;
    max-width: 380px;
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
    border: 2px solid transparent;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(220, 38, 38, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 2px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
    display: block;
    width: fit-content;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-highlight {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 -60px;
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #B8860B;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(220, 38, 38, 0.1);
}

.carousel-btn:hover {
    background: #B8860B;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.carousel-btn-prev {
    transform: translateX(-25px);
}

.carousel-btn-next {
    transform: translateX(25px);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #B8860B;
    transform: scale(1.2);
    border-color: rgba(220, 38, 38, 0.3);
}

.indicator:hover {
    background: #B8860B;
    transform: scale(1.1);
}

/* Responsive Design for Carousel */
@media (max-width: 1024px) {
    .service-card {
        flex: 0 0 calc(50% - 20px);
        min-width: 280px;
    }
    
    .carousel-btn-prev {
        transform: translateX(-15px);
    }
    
    .carousel-btn-next {
        transform: translateX(15px);
    }
}

@media (max-width: 768px) {
    .services-carousel-section {
        padding: 4rem 0;
    }
    
    .service-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 250px;
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn-prev {
        transform: translateX(-10px);
    }
    
    .carousel-btn-next {
        transform: translateX(10px);
    }
}

@media (max-width: 480px) {
    .service-card {
        margin: 0 5px;
    }
    
    .carousel-indicators {
        margin-top: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a, #404040);
    color: white;
}

.benefits-section .section-title {
    /* color: white; */
    -webkit-text-fill-color: white;
}

.benefits-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(220, 38, 38, 0.5);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Industries Section */
.industries-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2rem;
}

.industry-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.industry-item:nth-child(1) { animation-delay: 0.1s; }
.industry-item:nth-child(2) { animation-delay: 0.2s; }
.industry-item:nth-child(3) { animation-delay: 0.3s; }
.industry-item:nth-child(4) { animation-delay: 0.4s; }
.industry-item:nth-child(5) { animation-delay: 0.5s; }
.industry-item:nth-child(6) { animation-delay: 0.6s; }
.industry-item:nth-child(7) { animation-delay: 0.7s; }
.industry-item:nth-child(8) { animation-delay: 0.8s; }
.industry-item:nth-child(9) { animation-delay: 0.9s; }

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.industry-item i {
    font-size: 2.5rem;
    color: #B8860B;
    margin-bottom: 1rem;
}

.industry-item span {
    font-weight: 600;
    color: #1a1a1a;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #B8860B;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #B8860B;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #B8860B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #D4AF37;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Horizontal slider styles for Our Trending Flags */
.products-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.products-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding-bottom: 1rem;
  scrollbar-width: none; /* Firefox */
}

.products-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.product-card {
  flex: 0 0 auto;
  width: 250px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 1 !important; /* Ensure visible */
  transform: translateY(0) !important;
  animation: none !important;
}

.slider-btn {
  background: rgba(220, 38, 38, 0.8);
  border: none;
  color: white;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: #B8860B;
}

.slider-btn-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slider-btn-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-card {
    width: 200px;
  }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading.hide {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top: 6px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Product Carousel Styles */
.product-carousel-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.product-carousel-section .section-title {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background-color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    z-index: 10000;
    width: auto;
    display: block;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.product-card {
    flex: 0 0 auto;
    width: 250px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
    text-decoration:none;
    color: black;
}

.product-image {
    width: 100%;
    height: 200px; /* increased height for better image display */
    object-fit: contain; /* changed to contain to avoid cropping */
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 1rem;
    color: #555;
}

.carousel-btn {
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.25rem 0.75rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    user-select: none;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.8);
}

.carousel-btn:disabled {
    background: rgba(0,0,0,0.2);
    cursor: default;
}



    /* Product Page Specific Styles */
    .prod-page {
        /* padding-top: 80px; */
        background: #f9f9f9;
        font-family: 'Inter', sans-serif;
    }
    
    .prod-header {
        background: linear-gradient(135deg, #1a1a1a, #404040);
        color: white;
        padding: 4rem 0;
        text-align: center;
    }
    
    .prod-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }
    
    .prod-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 800px;
        margin: 0 auto 2rem;
    }
    
    .prod-breadcrumb {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .prod-breadcrumb a {
        color: #D4AF37;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .prod-breadcrumb a:hover {
        color: #fbbf24;
    }
    
    .prod-breadcrumb span {
        color: rgba(255,255,255,0.7);
    }
    
    .prod-main {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
    }
    
    .prod-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
    
    .prod-gallery {
        position: sticky;
        top: 100px;
        height: fit-content;
    }
    
    .prod-main-image {
        width: 100%;
        height: 400px;
        object-fit: contain;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-bottom: 1rem;
        border: 1px solid #eee;
    }
    
    .prod-thumbnails {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .prod-thumb {
        width: 100%;
        height: 100px;
        object-fit: cover;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .prod-thumb:hover, .prod-thumb.active {
        border-color: #B8860B;
        transform: translateY(-5px);
    }
    
    .prod-info {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border: 1px solid #eee;
    }
    
    .prod-price {
        font-size: 1.8rem;
        font-weight: 700;
        color: #B8860B;
        margin: 1rem 0;
    }
    
    .prod-rating {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        color: #fbbf24;
    }
    
    .prod-rating-count {
        color: #666;
        font-size: 0.9rem;
    }
    
    .prod-description {
        line-height: 1.6;
        margin-bottom: 2rem;
        color: #555;
    }
    
    .prod-features {
        margin-bottom: 2rem;
    }
    
    .prod-feature {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .prod-feature i {
        color: #B8860B;
    }
    
    .prod-options {
        margin-bottom: 2rem;
    }
    
    .prod-option {
        margin-bottom: 1rem;
    }
    
    .prod-option-title {
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #333;
    }
    
    .prod-option-values {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .prod-option-value {
        padding: 0.5rem 1rem;
        border: 1px solid #ddd;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
    
    .prod-option-value:hover, .prod-option-value.active {
        background: #B8860B;
        color: white;
        border-color: #B8860B;
    }
    
    .prod-quantity {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .prod-quantity-btn {
        width: 40px;
        height: 40px;
        border: 1px solid #ddd;
        background: none;
        font-size: 1.2rem;
        cursor: pointer;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .prod-quantity-btn:hover {
        background: #f5f5f5;
    }
    
    .prod-quantity-input {
        width: 60px;
        height: 40px;
        text-align: center;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-weight: 600;
    }
    
    .prod-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .prod-btn {
        padding: 1rem 2rem;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        text-align: center;
        justify-content: center;
    }
    
    .prod-btn-primary {
        background: linear-gradient(135deg, #B8860B, #D4AF37);
        color: white;
        box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    }
    
    .prod-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
    }
    
    .prod-btn-secondary {
        background: white;
        border: 2px solid #B8860B;
        color: #B8860B;
    }
    
    .prod-btn-secondary:hover {
        background: #f9f9f9;
        transform: translateY(-3px);
    }
    
    .prod-details {
        background: white;
        padding: 3rem;
        border-radius: 15px;
        /* box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-bottom: 2rem;
        border: 1px solid #eee; */
    }
    
    .prod-section-title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #1a1a1a;
        position: relative;
        padding-bottom: 0.5rem;
    }
    
    .prod-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(135deg, #B8860B, #D4AF37);
    }
    
    .prod-specs {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .prod-spec {
        display: flex;
        margin-bottom: 1rem;
    }
    
    .prod-spec-label {
        font-weight: 600;
        min-width: 150px;
        color: #666;
    }
    
    .prod-spec-value {
        color: #1a1a1a;
    }
    
    .prod-benefits {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .prod-benefit {
        display: flex;
        gap: 1rem;
    }
    
    .prod-benefit-icon {
        width: 50px;
        height: 50px;
        background: rgba(184, 134, 11, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #B8860B;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .prod-benefit-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .prod-benefit-content p {
        color: #666;
        line-height: 1.6;
    }
    
    .prod-gallery-full {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1rem;
    }
    
    .prod-gallery-item {
        height: 250px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .prod-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .prod-gallery-item:hover img {
        transform: scale(1.05);
    }
    
    .prod-cta {
        text-align: center;
        padding: 3rem;
        background: linear-gradient(135deg, #1a1a1a, #404040);
        color: white;
        border-radius: 15px;
        margin-top: 2rem;
    }
    
    .prod-cta h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .prod-cta p {
        max-width: 600px;
        margin: 0 auto 2rem;
        font-size: 1.1rem;
        opacity: 0.9;
    }
    
    .prod-cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Responsive Styles */
    @media (max-width: 1024px) {
        .prod-container {
            grid-template-columns: 1fr;
        }
        
        .prod-gallery {
            position: static;
            margin-bottom: 2rem;
        }
        
        .prod-main-image {
            height: 350px;
        }
    }
    
    @media (max-width: 768px) {
        .prod-header {
            padding: 3rem 1rem;
        }
        
        .prod-title {
            font-size: 2rem;
        }
        
        .prod-subtitle {
            font-size: 1rem;
        }
        
        .prod-main {
            padding: 1rem;
        }
        
        .prod-details {
            padding: 2rem 1.5rem;
        }
        
        .prod-thumbnails {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .prod-cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .prod-btn {
            width: 100%;
            max-width: 300px;
        }
    }
    
    @media (max-width: 480px) {
        .prod-title {
            font-size: 1.8rem;
        }
        
        .prod-section-title {
            font-size: 1.5rem;
        }
        
        .prod-thumbnails {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .prod-actions {
            flex-direction: column;
        }
        
        .prod-btn {
            width: 100%;
        }
        
        .prod-spec {
            flex-direction: column;
            gap: 0.2rem;
        }
        
        .prod-spec-label {
            min-width: auto;
        }
    }
    