/* Slogan Banner Section - 60% White, 30% Gold, 10% Black */
.slogan-banners {
   background: linear-gradient(135deg, 
       var(--pure-white) 0%, 
       var(--pure-white) 60%, 
       rgba(244, 233, 160, 0.1) 60%, 
       rgba(244, 233, 160, 0.3) 90%, 
       var(--primary-gold) 100%);
   padding: 2rem 0;
   position: relative;
   overflow: hidden;
   border-bottom: 1px solid var(--border-gray);
}

.slogan-banners::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="dots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
   pointer-events: none;
}

.slogan-text {
   font-size: 2.5rem;
   font-weight: 700;
   text-align: center;
   background: linear-gradient(135deg, var(--soft-black) 0%, var(--primary-gold) 50%, var(--dark-gold) 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   letter-spacing: -0.02em;
   line-height: 1.2;
   position: relative;
   z-index: 2;
   margin: 0;
   padding: 0 1rem;
}

.slogan-text::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   width: 100px;
   height: 3px;
   background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
   border-radius: 2px;
}

/* Page Title Section - Clean and Premium */
.page-title-section {
   background: var(--pure-white);
   padding: 3rem 0 2rem;
   border-bottom: 1px solid var(--border-gray);
   position: relative;
}

.page-title-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, 
       transparent 0%, 
       var(--primary-gold) 30%, 
       var(--dark-gold) 70%, 
       transparent 100%);
}

.page-title {
   font-size: 3rem;
   font-weight: 300;
   color: var(--soft-black);
   text-align: center;
   margin-bottom: 1.5rem;
   letter-spacing: -0.01em;
   position: relative;
}

.page-title::before {
   content: '';
   position: absolute;
   top: -15px;
   left: 50%;
   transform: translateX(-50%);
   width: 60px;
   height: 2px;
   background: var(--primary-gold);
   border-radius: 1px;
}

/* Breadcrumb Section */
.breadcrumb-section {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 0.5rem;
   margin-top: 1rem;
}

.breadcrumb-item {
   position: relative;
   font-size: 0.95rem;
   font-weight: 500;
}

.breadcrumb-item a {
   color: var(--medium-gray);
   text-decoration: none;
   transition: all 0.3s ease;
   padding: 0.5rem 1rem;
   border-radius: 20px;
   position: relative;
   overflow: hidden;
}

.breadcrumb-item a::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
   transition: left 0.5s ease;
}

.breadcrumb-item a:hover {
   color: var(--primary-gold);
   transform: translateY(-1px);
}

.breadcrumb-item a:hover::before {
   left: 100%;
}

.breadcrumb-item.active {
   color: var(--primary-gold);
   font-weight: 600;
   padding: 0.5rem 1rem;
   background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
   border-radius: 20px;
   border: 1px solid rgba(212, 175, 55, 0.2);
}

.breadcrumb-item:not(:last-child)::after {
   content: '/';
   color: var(--border-gray);
   margin-left: 0.5rem;
   font-weight: 300;
}

.breadcrumb-item.active::after {
   display: none;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
   .slogan-text {
       font-size: 2.2rem;
   }
   
   .page-title {
       font-size: 2.5rem;
   }
}

@media (max-width: 991.98px) {
   .slogan-banners {
       padding: 1.5rem 0;
   }
   
   .slogan-text {
       font-size: 1.8rem;
       padding: 0 0.5rem;
   }
   
   .page-title-section {
       padding: 2.5rem 0 1.5rem;
   }
   
   .page-title {
       font-size: 2.2rem;
       margin-bottom: 1.2rem;
   }
}

@media (max-width: 767.98px) {
   .slogan-banners {
       padding: 1.2rem 0;
   }
   
   .slogan-text {
       font-size: 1.5rem;
       line-height: 1.3;
   }
   
   .page-title-section {
       padding: 2rem 0 1.2rem;
   }
   
   .page-title {
       font-size: 1.8rem;
       margin-bottom: 1rem;
   }
   
   .breadcrumb-section {
       flex-direction: column;
       gap: 0.3rem;
   }
   
   .breadcrumb-item:not(:last-child)::after {
       display: none;
   }
}

@media (max-width: 576px) {
   .slogan-banners {
       padding: 1rem 0;
   }
   
   .slogan-text {
       font-size: 1.3rem;
       padding: 0 0.3rem;
   }
   
   .page-title-section {
       padding: 1.5rem 0 1rem;
   }
   
   .page-title {
       font-size: 1.6rem;
       margin-bottom: 0.8rem;
   }
   
   .breadcrumb-item a,
   .breadcrumb-item.active {
       padding: 0.4rem 0.8rem;
       font-size: 0.9rem;
   }
}

@media (max-width: 400px) {
   .slogan-text {
       font-size: 1.1rem;
       line-height: 1.4;
   }
   
   .page-title {
       font-size: 1.4rem;
   }
   
   .breadcrumb-item a,
   .breadcrumb-item.active {
       padding: 0.3rem 0.6rem;
       font-size: 0.85rem;
   }
}

/* Premium Animations */
@keyframes fadeInUp {
   from {
       opacity: 0;
       transform: translateY(30px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}

@keyframes shimmer {
   0% {
       background-position: -200% center;
   }
   100% {
       background-position: 200% center;
   }
}

.slogan-text {
   animation: fadeInUp 1s ease-out;
   background-size: 200% auto;
}

.page-title {
   animation: fadeInUp 1s ease-out 0.2s both;
}

.breadcrumb-section {
   animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hover Effects */
.slogan-text:hover {
   animation: shimmer 2s ease-in-out infinite;
   background: linear-gradient(45deg, var(--soft-black), var(--primary-gold), var(--dark-gold), var(--soft-black));
   background-size: 400% auto;
   -webkit-background-clip: text;
   background-clip: text;
}









/* About Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 60%, #f8f9fa 30%, rgba(212, 175, 55, 0.05) 10%);
    position: relative;
    overflow: hidden;
}

.about-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23D4AF37" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 25px;
    padding: 8px 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.badge-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Headers */
.section-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--soft-black);
    margin-bottom: 25px;
    line-height: 1.2;
}

.text-gold {
    color: var(--primary-gold);
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Styles */
.about-content {
    padding-right: 40px;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--soft-black);
    margin-bottom: 25px;
    position: relative;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 2px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Features Grid */
.features-grid {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--soft-black);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Image Container */
.about-image-container {
    position: relative;
    height: 100%;
   
}

.image-wrapper {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: var(--light-gray);
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.image-wrapper:hover .about-main-image {
    transform: scale(1.05);
}

.golden-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    z-index: 2;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .golden-overlay {
    opacity: 0.8;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 20px;
    z-index: 3;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-wrapper:hover .image-caption {
    transform: translateY(0);
}

.caption-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    text-align: center;
}

/* Philosophy Card */
.philosophy-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.9));
    border-radius: 25px;
    padding: 60px 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    z-index: 1;
}

.philosophy-card > .row {
    position: relative;
    z-index: 2;
}

/* Product Showcase */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 320px;
    margin: 0 auto;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.product-image-container:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-image-container:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    padding: 15px 10px 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-image-container:hover .product-overlay {
    transform: translateY(0);
}

.product-name {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: block;
    text-align: center;
}

/* Philosophy Content */
.philosophy-content {
    color: white;
}

.philosophy-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
}

.philosophy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Philosophy Stats */
.philosophy-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Mission & Vision Container */
.mission-vision-container {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9), rgba(255, 255, 255, 0.95));
    border-radius: 20px;
    padding: 40px 30px 25px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.mission-vision-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    z-index: 1;
}

.mission-vision-container > .row {
    position: relative;
    z-index: 2;
}

/* Mission & Vision Cards */
.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px 20px;
    height: 100%;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.mission-card {
    border-left: 3px solid var(--primary-gold);
}

.vision-card {
    border-left: 3px solid var(--soft-black);
}

/* Card Icons */
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.mission-icon {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
}

.vision-icon {
    background: linear-gradient(135deg, var(--soft-black), var(--pure-black));
}

.card-icon:hover {
    transform: scale(1.05);
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Card Content */
.card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--soft-black);
    margin-bottom: 15px;
    position: relative;
}

.mission-card .card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 1px;
}

.vision-card .card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, var(--soft-black), var(--pure-black));
    border-radius: 1px;
}

.card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 20px;
    padding: 0 5px;
}

/* Card Features */
.card-features {
    text-align: left;
    margin-top: 20px;
}

.feature-point {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 12px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.feature-point:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.mission-card .feature-point i {
    color: var(--primary-gold);
    font-size: 0.8rem;
    margin-right: 10px;
    min-width: 16px;
}

.vision-card .feature-point i {
    color: var(--soft-black);
    font-size: 0.8rem;
    margin-right: 10px;
    min-width: 16px;
}

.feature-point span {
    font-size: 0.9rem;
    color: var(--soft-black);
    font-weight: 500;
}

/* Signature Styling */
.mission-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    padding: 15px;
}

.signature-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 1px;
}

.signature-text {
    font-size: 0.95rem;
    color: var(--primary-gold);
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .about-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .philosophy-card {
        padding: 40px 30px;
        margin-top: 40px;
    }
    
    .philosophy-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .mission-vision-container {
        padding: 30px 25px 20px;
    }
    
    .mission-card, .vision-card {
        margin-bottom: 20px;
        padding: 20px 15px;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    
    .card-icon i {
        font-size: 1.3rem;
    }
    
    .card-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .card-text {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
    
    .philosophy-title {
        font-size: 2rem;
    }
    
    .product-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        max-width: 280px;
    }
    
    .product-image-container {
        height: 100px;
        border-radius: 12px;
    }
    
    .product-name {
        font-size: 0.85rem;
    }
    
    .philosophy-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mission-vision-container {
        padding: 25px 20px 15px;
        border-radius: 15px;
    }
    
    .mission-card, .vision-card {
        padding: 18px 12px;
        border-radius: 12px;
    }
    
    .card-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .card-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .card-icon i {
        font-size: 1.2rem;
    }
    
    .feature-point {
        padding: 6px 10px;
        margin-bottom: 8px;
        font-size: 0.85rem;
    }
    
    .feature-point span {
        font-size: 0.85rem;
    }
    
    .mission-signature {
        margin-top: 15px;
        padding: 10px;
        gap: 12px;
    }
    
    .signature-line {
        width: 40px;
    }
    
    .signature-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .philosophy-card {
        padding: 30px 20px;
    }
    
    .product-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        max-width: 240px;
    }
    
    .product-image-container {
        height: 80px;
        border-radius: 10px;
    }
    
    .product-name {
        font-size: 0.8rem;
        padding: 8px 5px 5px;
    }
    
    .mission-vision-container {
        padding: 20px 15px 12px;
        border-radius: 12px;
    }
    
    .mission-card, .vision-card {
        padding: 15px 10px;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    
    .card-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .card-text {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 10px;
        padding: 0;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    
    .card-icon i {
        font-size: 1.1rem;
    }
    
    .feature-point {
        padding: 5px 8px;
        margin-bottom: 6px;
        border-radius: 6px;
    }
    
    .feature-point span {
        font-size: 0.8rem;
    }
    
    .mission-card .feature-point i,
    .vision-card .feature-point i {
        margin-right: 8px;
        min-width: 14px;
        font-size: 0.75rem;
    }
    
    .mission-signature {
        margin-top: 12px;
        padding: 8px;
        gap: 10px;
    }
    
    .signature-line {
        width: 30px;
    }
    
    .signature-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .mission-vision-container {
        padding: 15px 12px 10px;
    }
    
    .mission-card, .vision-card {
        padding: 12px 8px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-text {
        font-size: 0.8rem;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .card-icon i {
        font-size: 1rem;
    }
}








    /* Animation Keyframes */
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    
    @keyframes glow {
        0%, 100% { opacity: 0.5; transform: scale(1); }
        50% { opacity: 0.8; transform: scale(1.05); }
    }

    /* Animation Classes */
    .fade-in-left {
        animation: fadeInLeft 0.8s ease forwards;
        opacity: 0;
    }
    
    .fade-in-right {
        animation: fadeInRight 0.8s ease forwards;
        opacity: 0;
    }
    
    .fade-in-up {
        animation: fadeInUp 0.8s ease forwards;
        opacity: 0;
    }

    /* Product Showcase Styling */
    .product-showcase {
        padding: 2rem 0;
    }
    .product-image-container{
        height: 100%;
    }
    
    /* Hero Product Image Styling */
    .hero-product-image {
        transition: all 0.4s ease;
        animation: float 4s ease-in-out infinite;
        filter: brightness(1.05) contrast(1.1);
    }
    .hero-product-image {
    width: 100%;
    height: auto;             /* OR set a fixed height */
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    }

    
    .hero-product-image:hover {
        transform: scale(1.08) translateY(-8px);
        box-shadow: 0 40px 100px rgba(212, 175, 55, 0.6) !important;
        filter: brightness(1.1) contrast(1.2);
    }
    
    .hero-product-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 140%;
        height: 140%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 50%, transparent 80%);
        border-radius: 50%;
        z-index: 1;
        animation: glow 3s ease-in-out infinite;
    }

    /* Floating Elements */
    .floating-element {
        position: absolute;
        width: 8px;
        height: 8px;
        background: var(--primary-gold);
        border-radius: 50%;
        opacity: 0.6;
        animation: float 3s ease-in-out infinite;
    }
    
    .floating-element-1 {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }
    
    .floating-element-2 {
        top: 60%;
        right: 15%;
        animation-delay: 1s;
    }
    
    .floating-element-3 {
        bottom: 30%;
        left: 20%;
        animation-delay: 2s;
    }

    /* Ingredient Items Hover Effects */
    .ingredient-item {
        transition: all 0.3s ease;
        padding: 10px;
        border-radius: 15px;
        cursor: pointer;
    }
    
    .ingredient-item:hover {
        background: rgba(212, 175, 55, 0.05);
        transform: translateY(-3px);
    }
    
    .ingredient-item:hover .ingredient-image {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4) !important;
    }
    
    .ingredient-item .badge:hover {
        background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold)) !important;
        color: var(--pure-white) !important;
        border-color: var(--primary-gold) !important;
    }

    /* Responsive Design */
    @media (max-width: 991.98px) {
        .hero-product-image {
            max-width: 400px !important;
        }
        
        .left-ingredients, .right-ingredients {
            margin-bottom: 2rem;
        }
        
        .right-ingredients .ingredient-item {
            flex-direction: row-reverse;
        }
        
        .right-ingredients .ingredient-content {
            text-align: left !important;
            margin-right: 0 !important;
            margin-left: 1rem !important;
        }
    }
    
    @media (max-width: 768px) {
        .hero-product-image {
            max-width: 350px !important;
        }
        
        .ingredient-image {
            width: 50px !important;
            height: 50px !important;
        }
        
        .quality-banner .col-md-4 {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        .quality-banner .col-md-4:last-child {
            border-bottom: none;
        }
        
        .floating-element {
            display: none;
        }
    }
    
    @media (max-width: 576px) {
        .ingredients-showcase {
            padding: 1rem 0;
        }
        
        .product-showcase {
            padding: 1rem 0;
        }
        
        .hero-product-image {
            max-width: 300px !important;
        }
        
        .ingredient-item {
            margin-bottom: 1rem !important;
        }
    }









/* Swasthamen Testimonials Styles */
.swasthamen-testimonials {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 60%, #f8f9fa 30%, rgba(212, 175, 55, 0.05) 10%);
    position: relative;
}

.swasthamen-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    position: relative;
}

.swasthamen-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
}

.swasthamen-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

.swasthamen-testimonials-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.swasthamen-testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}

.swasthamen-testimonial-card {
    flex: 0 0 280px;
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.swasthamen-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
}

.swasthamen-featured {
    border: 2px solid #D4AF37;
    background: linear-gradient(135deg, #ffffff 95%, rgba(212, 175, 55, 0.03) 5%);
}

.swasthamen-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.7rem;
}

.swasthamen-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.swasthamen-stars i {
    color: #D4AF37;
    font-size: 0.9rem;
}

.swasthamen-quote {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-style: italic;
}

.swasthamen-customer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.swasthamen-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.swasthamen-info {
    display: flex;
    flex-direction: column;
}

.swasthamen-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.85rem;
    line-height: 1.2;
}

.swasthamen-location {
    font-size: 0.75rem;
    color: #666;
}

.swasthamen-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.swasthamen-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swasthamen-dot.swasthamen-active,
.swasthamen-dot:hover {
    background: #D4AF37;
    transform: scale(1.2);
}

.swasthamen-stats {
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    position: relative;
}

.swasthamen-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    border-radius: 15px 15px 0 0;
}

.swasthamen-stat {
    text-align: center;
}

.swasthamen-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.swasthamen-stat-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.2rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .swasthamen-testimonials {
        padding: 50px 0;
    }
    
    .swasthamen-testimonial-card {
        flex: 0 0 250px;
        padding: 1.2rem;
    }
    
    .swasthamen-stats {
        padding: 1.2rem;
    }
    
    .swasthamen-stat-number {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .swasthamen-testimonials {
        padding: 40px 0;
    }
    
    .swasthamen-title {
        font-size: 1.7rem;
    }
    
    .swasthamen-testimonial-card {
        flex: 0 0 220px;
        padding: 1rem;
    }
    
    .swasthamen-quote {
        font-size: 0.85rem;
    }
    
    .swasthamen-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .swasthamen-stat {
        flex: 0 0 45%;
    }
}

@media (max-width: 576px) {
    .swasthamen-testimonials {
        padding: 30px 0;
    }
    
    .swasthamen-title {
        font-size: 1.5rem;
    }
    
    .swasthamen-subtitle {
        font-size: 0.9rem;
    }
    
    .swasthamen-testimonial-card {
        flex: 0 0 200px;
        padding: 0.8rem;
    }
    
    .swasthamen-quote {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .swasthamen-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.7rem;
    }
    
    .swasthamen-name {
        font-size: 0.8rem;
    }
    
    .swasthamen-location {
        font-size: 0.7rem;
    }
    
    .swasthamen-stats {
        padding: 1rem;
    }
    
    .swasthamen-stat-number {
        font-size: 1.2rem;
    }
    
    .swasthamen-stat-label {
        font-size: 0.75rem;
    }
}

