* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: white;
    color: #291E1F;
}

/* Top Yellow Scrolling Bar */
.top-bar {
    background: #F1D500;
    height: 32px;
    overflow: hidden;
    position: relative;
}

.scroll-container {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.scroll-content {
    display: flex;
    align-items: center;
}

.scroll-item {
    display: flex;
    align-items: center;
    margin: 0 32px;
}

.scroll-item img {
    width: 16px;
    height: 16px;
    margin-right: 12px;
}

.scroll-item span {
    color: #241E1E;
    font-weight: 600;
    font-size: 14px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

/* Navigation */
nav {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 64px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #25224A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1735;
}

.contact-btn {
    background: #228D6B;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #1a7055;
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-btn img {
    width: 32px;
    height: 32px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('assets/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 1024px;
}

.rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.stars {
    display: flex;
    gap: 8px;
    color: black;
}

.star {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.rating-text {
    margin-left: 12px;
    color: #291E1F;
    font-weight: 500;
}

h1 {
    font-size: 4rem;
    color: #291E1F;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight {
    position: relative;
    display: inline-block;
}

.underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
}

.underline path {
    stroke: #F1D500;
    stroke-width: 4;
    stroke-linecap: round;
}

.hero-description {
    font-size: 1.25rem;
    color: #291E1F;
    margin-bottom: 40px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #F1D500;
    color: #291E1F;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: #e0c600;
}

.btn-secondary {
    background: white;
    color: #291E1F;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: #f9fafb;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        background-image: url('assets/mbg.png');
    }

    .menu-btn {
        display: block !important;
        z-index: 1001;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        align-items: stretch;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        padding: 0;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 24px;
    }

    .nav-container {
        position: relative;
    }

    .desktop-contact {
        display: none;
    }

    .mobile-contact {
        display: block;
        width: calc(100% - 48px);
        margin: 8px 24px;
    }

    .rating-badge {
        flex-direction: column;
        gap: 8px;
    }

    .rating-text {
        margin-left: 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .mobile-contact {
        display: none;
    }
}
/* Scrolling Images Section */
.carousel-section {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-image {
    width: 360px;
    height: 340px;
    object-fit: cover;
    margin-right: 20px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: #fff;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: start;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #171328;
    margin-bottom: 12px;
    line-height: 1.3;
    white-space: nowrap;
}

.feature-content p {
    font-size: 16px;
    font-weight: 400;
    color: #171328;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .carousel-image {
        width: 280px;
        height: 260px;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 15px;
    }

    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-card:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-content h3 {
        font-size: 16px;
        white-space: normal;
    }

    .feature-content p {
        font-size: 12px;
    }
}
/* Third Section - Products */
.products-section {
    padding: 10px 20px;
    background-color: #fff;
}

.products-title {
    color: #171328;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: center;
}

.product-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
}

.product-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: #171328;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .products-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-label {
        font-size: 12px;
        padding: 8px 15px;
        bottom: 10px;
    }
}
/* Products Section Styles */
#products {
    background-color: #FAF6DF;
}

#products .top-section {
    background-color: #FAF6DF;
    background-image: url('assets/vector.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 40px 20px 60px;
    position: relative;
}

#products .products-section {
    background-color: #FAF6DF;
    padding: 0 20px 60px;
}

#products .container {
    max-width: 1400px;
    margin: 0 auto;
}

#products h1 {
    text-align: center;
    font-size: 48px;
    color: #171328;
    margin-bottom: 30px;
    font-weight: 700;
}

#products .tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    background: white;
    padding: 10px 15px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

#products .tabs::-webkit-scrollbar {
    display: none;
}

#products .tab {
    background: transparent;
    color: #FCA941;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Figtree', sans-serif;
}

#products .tab:hover {
    background: rgba(252, 169, 65, 0.1);
}

#products .tab.active {
    background: #FCA941;
    color: white;
    position: relative;
}

#products .tab.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #FCA941;
}

#products .products-grid {
    display: grid;
    grid-template-columns: 380px repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

#products .legacy-card {
    background: linear-gradient(135deg, #FCA941 0%, #FF9A1F 100%);
    border-radius: 24px;
    padding: 45px 35px;
    color: #171328;
    box-shadow: 0 4px 16px rgba(252, 169, 65, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#products .legacy-card h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: auto;
    font-weight: 700;
    flex-grow: 1;
}

#products .legacy-card button {
    background: white;
    color: #171328;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Figtree', sans-serif;
}

#products .legacy-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#products .product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

#products .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

#products .product-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f8f8f8;
}

#products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#products .colors-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #171328;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#products .color-dots {
    display: flex;
    gap: 2px;
}

#products .color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

#products .color-dot:nth-child(1) { 
    background: #FF1493; 
}

#products .color-dot:nth-child(2) { 
    background: #FFD700; 
}

#products .color-dot:nth-child(3) { 
    background: #00BFFF; 
}

#products .product-content {
    padding: 22px 20px;
}

#products .rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

#products .star {
    color: #FCA941;
    font-size: 18px;
}

#products .product-title {
    font-size: 22px;
    font-weight: 700;
    color: #171328;
    text-align: center;
    margin-bottom: 10px;
}

#products .product-description {
    text-align: center;
    color: #171328;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    opacity: 0.8;
}

#products .view-product-btn {
    width: 100%;
    background: #FCA941;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Figtree', sans-serif;
    text-decoration: none;
    display: block;
    text-align: center;
}

#products .view-product-btn:hover {
    background: #FF9A1F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 169, 65, 0.35);
}

#products .product-list {
    display: none;
}

#products .product-list.active {
    display: contents;
}

/* Responsive Design for Products Section */
@media (max-width: 1200px) {
    #products .products-grid {
        grid-template-columns: 1fr 1fr;
    }

    #products .legacy-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    #products .tabs {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        max-width: calc(100vw - 40px);
    }

    #products .tab {
        flex-shrink: 0;
        white-space: nowrap;
    }

    #products .products-grid {
        grid-template-columns: 1fr;
    }

    #products .legacy-card {
        display: none;
    }

    #products h1 {
        font-size: 40px;
    }

    #products .legacy-card h2 {
        font-size: 28px;
    }
}
/* Bulk Gifting Section - Fifth Section */
.bulk-gifting-section {
    background-color: #258D6C;
    color: #FFFFFF;
}
.bulk-gifting-section-p{
     background-color: #1FA6A9;
    color: #FFFFFF;
}
.bulk-container {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 0;
}

.bulk-content {
    flex: 1;
    padding: 60px 60px 60px 60px;
}

.bulk-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #FFFFFF;
}

.bulk-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
    color: #FFFFFF;
}

.bulk-btn {
    display: inline-block;
    background-color: #FFFFFF;
    color: #171328;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bulk-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bulk-image-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}

.bulk-image-section img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: left center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bulk-container {
        flex-direction: column;
    }

    .bulk-content {
        padding: 40px 20px;
        text-align: left;
        order: 1;
    }

    .bulk-content h1 {
        font-size: 2.5rem;
    }

    .bulk-content p {
        font-size: 1rem;
    }

    .bulk-image-section {
        order: 2;
        width: 100%;
        justify-content: center;
    }

    .bulk-image-section img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .bulk-content h1 {
        font-size: 2rem;
    }

    .bulk-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .bulk-content {
        padding: 30px 20px;
    }
}
/* Sixth Section - Features */
.section-six {
    padding: 60px 20px;
    background-color: #ffffff;
}

.section-six-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.section-six-item {
    text-align: center;
    padding: 20px;
}

.section-six-icon {
    margin-bottom: 20px;
}

.section-six-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.section-six-title {
    color: #171328;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Figtree', sans-serif;
}

/* Mobile Responsive - 2 items per row */
@media (max-width: 768px) {
    .section-six {
        padding: 40px 20px;
    }

    .section-six-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-six-icon img {
        width: 60px;
        height: 60px;
    }

    .section-six-title {
        font-size: 14px;
    }

    .section-six-item {
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .section-six-title {
        font-size: 13px;
    }

    .section-six-icon img {
        width: 50px;
        height: 50px;
    }
}
.kashmir-section {
    background-color: #FAFAFA;
    padding: 0px 40px;
}

.kashmir-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.kashmir-map {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 60px;
}

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

.kashmir-content {
    flex: 1;
    max-width: 600px;
}

.kashmir-content h2 {
    font-family: 'Figtree', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #171328;
}

.kashmir-content p {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
    color: #171328;
}

@media (max-width: 768px) {
    .kashmir-section {
        padding: 0px 20px;
    }

    .kashmir-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .kashmir-map {
        order: 2;
        padding-right: 0;
        margin-top: 20px;
        width: 100%;
    }

    .kashmir-content {
        order: 1;
        text-align: left;
    }

    .kashmir-content h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .kashmir-content p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .kashmir-section {
        padding: 30px 15px;
    }

    .kashmir-map {
        margin-top: 15px;
    }

    .kashmir-content h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .kashmir-content p {
        font-size: 16px;
    }
}
/* Section 8: Colors of Happiness Styles */
.colors-happiness-section {
    font-family: 'Figtree', sans-serif;
    color: #171328;

}

.colors-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
}

.colors-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Desktop Grid */
.colors-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.colors-image-grid img {
    width: 100%;
  
    object-fit: cover;
}

/* Carousel (hidden on desktop) */
.colors-carousel-container {
    display: none;
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
}

.colors-carousel-wrapper {
    overflow: hidden;
}

.colors-carousel {
    display: flex;
    transition: transform 0.3s ease;
}

.colors-carousel-slide {
    min-width: 100%;
    padding: 0 10px;
}

.colors-carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.colors-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.colors-carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.colors-carousel-dots .dot.active {
    background-color: #171328;
}

/* Connect Section */
.colors-connect-section {
    margin-top: 60px;
}

.colors-connect-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.colors-connect-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.colors-social-icons {
    display: flex;
    gap: 15px;
}

.colors-social-icon {
    cursor: pointer;
    transition: opacity 0.3s;
}

.colors-social-icon:hover {
    opacity: 0.7;
}

.colors-social-icon img {
    width: 50px;
    height: 50px;
    display: block;
}

/* Connect Images Grid */
.colors-connect-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.colors-connect-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Connect Carousel (hidden on desktop) */
.colors-connect-carousel-container {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .colors-container {
        padding: 40px 20px;
    }

    .colors-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* Hide desktop grid, show carousel */
    .colors-image-grid {
        display: none;
    }

    .colors-carousel-container {
        display: block;
    }

    /* Connect Section Mobile */
    .colors-connect-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .colors-connect-title {
        font-size: 2rem;
    }

    .colors-connect-grid {
        display: none;
    }

    .colors-connect-carousel-container {
        display: block;
    }
}
/* Footer CTA Section */
.footer-cta-section {
    background-image: url('assets/footer.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px 80px;
    text-align: center;
}

.footer-cta-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-cta-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.footer-share-text {
    color: #FCA941;
    font-weight: normal;
}

.footer-with-us-text {
    color: #171328;
    font-weight: normal;
}

.footer-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.footer-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-feature-text {
    text-align: left;
    font-size: 14px;
    color: #171328;
    font-family: 'Helvetica Light', Helvetica, Arial, sans-serif;
}

.footer-cta-button {
    display: inline-block;
    background-color: #171328;
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 16px;
    position: relative;
    transition: transform 0.3s ease;
    font-family: 'Helvetica Light', Helvetica, Arial, sans-serif;
}

.footer-cta-button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background-color: #0AB270;
    border-radius: 30px;
    z-index: -1;
}

.footer-cta-button:hover {
    transform: translateY(-2px);
}

/* Footer Main Section */
.footer-main {
    background-color: #130C32;
    color: white;
    padding: 60px 20px 30px;
}

.footer-main-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
    font-family: 'Helvetica Light', Helvetica, Arial, sans-serif;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: normal;
    font-family: 'Helvetica Light', Helvetica, Arial, sans-serif;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-family: 'Helvetica Light', Helvetica, Arial, sans-serif;
}

.footer-column ul li a:hover {
    color: #FCA941;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 10px;
    font-family: 'Helvetica Light', Helvetica, Arial, sans-serif;
}

.footer-location-icon {
    color: #FCA941;
    margin-right: 5px;
}

.footer-email-icon {
    color: #FCA941;
    margin-right: 5px;
}

.footer-legal {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-family: 'Helvetica Light', Helvetica, Arial, sans-serif;
}

.footer-legal a:hover {
    color: #FCA941;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
    }

    .footer-cta-content h1 {
        font-size: 32px;
    }

    .footer-features {
        flex-direction: column;
        align-items: center;
    }
}
.story-section {
    background-color: #FCA941;
    display: flex;
    align-items: center;
    padding: 60px 0 60px 80px;
    gap: 40px;
}

.story-content {
    flex: 1;
}

.story-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 18px;
    line-height: 1.6;
}

.story-image {
    flex: 0 0 auto;
}

.story-image img {
    max-width: 500px;
    height: auto;
    display: block;
}

.mission-section {
    background-color: #fff;
    text-align: center;
    padding: 80px 100px;
}

.mission-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #171328;
}

.mission-section p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    color: #666;
}

@media (max-width: 968px) {
    .story-section {
        flex-direction: column;
        padding: 40px 30px 0 30px;
    }

    .story-content {
        text-align: center;
    }

    .story-image {
        width: 100vw;
        margin-left: -30px;
        margin-right: -30px;
    }

    .story-image img {
        max-width: 100%;
        width: 100%;
        display: block;
    }

    .story-content h1,
    .mission-section h2 {
        font-size: 36px;
        color: #171328;
    }

    .mission-section {
        padding: 60px 30px;
    }
}
/* Features Section Styles */
.features-section {
    padding: 60px 20px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-box {
    background-color: #FBF9EF;
    padding: 40px 30px;
   
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    margin-bottom: 24px;
}

.icon-wrapper img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.feature-title {
    color: #171328;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-box {
        padding: 30px 20px;
    }

    .icon-wrapper img {
        width: 50px;
        height: 50px;
    }

    .feature-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 15px;
    }

    .feature-box {
        padding: 25px 15px;
    }

    .icon-wrapper {
        margin-bottom: 16px;
    }

    .icon-wrapper img {
        width: 45px;
        height: 45px;
    }

    .feature-title {
        font-size: 11px;
    }
}
/* Fourth Section: Our Journey Timeline */
.journey-section {
  background-color: #258D6C;
  color: #FFFFFF;
  padding: 60px 40px;
}

.journey-container {
  max-width: 1400px;
  margin: 0 auto;
}

.journey-header {
  margin-bottom: 60px;
}

.journey-section h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.journey-intro-text {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  color: #FFFFFF;
}

.journey-timeline-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  column-gap: 40px;
}

.journey-timeline-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.journey-timeline-column:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #FEBA27;
}

.journey-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.journey-timeline-item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
  display: block;
}

.journey-timeline-item h2 {
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.1;
  color: #FFFFFF;
}

.journey-timeline-item p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 100px;
}

.journey-timeline-content {
  position: relative;
  padding-left: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.journey-timeline-content::before {
  display: none;
}

.journey-timeline-content p {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Mobile Optimization for Journey Section */
@media (max-width: 768px) {
  .journey-section {
    padding: 30px 20px;
  }

  .journey-section h1 {
    font-size: 32px;
  }

  .journey-intro-text {
    font-size: 16px;
  }

  .journey-timeline-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    padding-left: 30px;
  }

  .journey-timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #FEBA27;
  }

  .journey-timeline-column {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .journey-timeline-column::after {
    display: none;
  }

  .journey-timeline-item {
    margin-bottom: 40px;
    position: relative;
  }

  .journey-timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 20px;
    width: 12px;
    height: 12px;
    background-color: #FEBA27;
    border-radius: 50%;
    border: 3px solid #258D6C;
  }

  .journey-timeline-item img {
    margin-bottom: 20px;
  }

  .journey-timeline-item h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .journey-timeline-item p {
    margin-top: 0;
    font-size: 15px;
  }

  .journey-timeline-content {
    margin-bottom: 40px;
    position: relative;
  }

  .journey-timeline-content::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 10px;
    width: 12px;
    height: 12px;
    background-color: #FEBA27;
    border-radius: 50%;
    border: 3px solid #258D6C;
    display: block;
  }

  .journey-timeline-content p {
    font-size: 15px;
  }
}
/* Team Section (Section 6) Styles */
.team-section {
    padding: 60px 80px;
    background-color: #ffffff;
}

.team-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.team-header {
    color: #AA0507;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.team-title {
    font-size: 64px;
    font-weight: 700;
    color: #171328;
    margin-bottom: 60px;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.team-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-description {
    font-size: 16px;
    line-height: 1.8;
    color: #171328;
}

.signature-section {
    margin-top: 20px;
}

.signature-image {
    max-width: 300px;
    margin-bottom: 20px;
}

.signature-image img {
    width: 100%;
    height: auto;
}

.founder-name {
    font-size: 18px;
    font-weight: 600;
    color: #171328;
    margin-bottom: 5px;
}

.founder-title {
    font-size: 16px;
    color: #171328;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 40px 30px;
    }

    .team-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .team-content {
        gap: 30px;
    }
}
.promise-section-6773 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #FFF7E6;
}

.left-image-6773 {
    flex: 0 0 auto;
    width: 300px;
}

.left-image-6773 img {
    width: 100%;
    height: auto;
    display: block;
}

.center-content-6773 {
    flex: 1;
    text-align: center;
    padding: 0 60px;
}

.center-content-6773 h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #171328;
}

.center-content-6773 p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: #171328;
}

.right-image-6773 {
    flex: 0 0 auto;
    width: 300px;
}

.right-image-6773 img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .promise-section-6773 {
        flex-direction: column;
        padding: 40px 0;
        gap: 30px;
        background-color: #FFF7E6
    }

    .left-image-6773 {
        display: none;
    }

    .center-content-6773 {
        padding: 0 20px;
        order: 1;
    }

    .center-content-6773 h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .center-content-6773 p {
        font-size: 16px;
    }

    .right-image-6773 {
        width: 100%;
        order: 2;
    }
}
 .products-header-section {
    background-color: #258D6C;
    color: #FFFFFF;
    padding: 48px 24px;
    text-align: center;
}

.products-header-section h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.products-header-section p {
    font-size: 16px;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.products-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 32px;
    padding: 32px 24px;
}

.sidebar {
    flex-shrink: 0;
    width: 280px;
}

.filter-group {
    background-color: #FFFFFF;
    margin-bottom: 24px;
    border-radius: 12px;
    border: 1px solid rgba(23, 19, 40, 0.1);
    overflow: hidden;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(23, 19, 40, 0.1);
}

.filter-header h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #171328;
    text-transform: uppercase;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #999;
    font-weight: 300;
    line-height: 1;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #666;
}

.filter-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #171328;
    border-bottom: 1px solid rgba(23, 19, 40, 0.05);
    transition: background-color 0.2s;
}

.filter-item:hover {
    background-color: #f8f9fa;
}

.filter-item:last-child {
    border-bottom: none;
}

.filter-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #258D6C;
}

.mobile-filter-btn {
    display: none;
    background-color: #F3F5F4;
    color: #258D6C;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.mobile-filter-btn:hover {
    opacity: 0.9;
}

.products-section {
    flex: 1;
    min-width: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(37, 141, 108, 0.05) 0%, rgba(237, 112, 45, 0.05) 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #171328;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.rating {
    font-size: 14px;
    color: #ED702D;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.product-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #171328;
    margin-bottom: 8px;
}

.item-code {
    font-size: 12px;
    color: #ED702D;
    font-weight: 600;
    margin-bottom: 8px;
}

.description {
    font-size: 13px;
    color: #171328;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.btn-view {
    background-color: #FCA941;
    color: #171328;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 24px;
    cursor: pointer;
    width: 100%;
    max-width: 160px;
    align-self: center;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: #ED702D;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-view:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-container { flex-direction: column; gap: 24px; }
    .sidebar { width: 100%; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

@media (max-width: 768px) {
    .products-header-section { padding: 32px 16px; }
    .products-header-section h1 { font-size: 28px;    color: white;}
    .products-header-section p { font-size: 14px; }
    .products-container { padding: 24px 16px; }
    .mobile-filter-btn { display: block; }
    .sidebar { display: none; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
    .sidebar.active { display: grid; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
    .product-image { height: 180px; }
}

@media (max-width: 480px) {
    .products-header-section h1 { font-size: 24px;   color: white; }
    .products-container { padding: 16px; gap: 16px; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card { margin: 0; }
}

    body {
        font-family: 'Figtree', sans-serif;
        background: #fff;
        color: #4C061D;
        margin: 0;
        padding: 0;
    }

    a {
        text-decoration: none;
        color: #4C061D;
        font-family: 'Figtree', sans-serif;
    }

    .blogs-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 40px;
    }

    .blog-card {
        border-radius: 12px;
        overflow: hidden;
        transition: transform .3s ease;
        background: transparent !important;
        box-shadow: none !important;
        font-family: 'Figtree', sans-serif;
    }

    .blog-card:hover {
        transform: scale(1.03);
    }

    .blog-img {
        width: 100%;
        display: block;
        transition: transform .4s ease;
        border-radius: 12px;
    }

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

    .blog-content {
        padding: 10px 5px;
        font-family: 'Figtree', sans-serif;
    }

    h2 {
        font-family: 'Figtree', sans-serif;
        font-weight: 600;
    }

    p {
        font-family: 'Figtree', sans-serif;
        font-size: 14px;
    }

    .read-btn {
        display: inline-block;
        margin-top: 10px;
        background: #FCCA2C;
        padding: 6px 14px;
        border-radius: 40px;
        font-size: 12px;
        font-weight: bold;
        color: #4C061D;
        font-family: 'Figtree', sans-serif;
    }

    .author-tag {
        font-size: 10px;
        display: inline-block;
        margin-top: 8px;
        background: #FCCA2C;
        padding: 4px 10px;
        border-radius: 40px;
        font-weight: bold;
        color: #4C061D;
        font-family: 'Figtree', sans-serif;
    }

    /* Mobile: 1 blog per row */
    @media (max-width: 768px) {
        .blogs-container {
            grid-template-columns: 1fr !important;
            padding: 15px;
        }
    }
    /* BLOG SECTION (FULLY ISOLATED WITH PREFIX c58885) */
.c58885-blog-section{
    font-family: 'Figtree', sans-serif;
    background:#fff;
    color:#4C061D;
    padding:0;
    margin:0;
}

/* CONTAINER */
.c58885-blog-container{
    max-width:900px;
    margin:40px auto;
    padding:20px;
}

/* BANNER */
.c58885-blog-banner{
    width:100%;
    overflow:hidden;
    border-radius:20px;
}

.c58885-blog-banner img{
    width:100%;
    height:auto;
    border-radius:20px;
    display:block;
}

/* META */
.c58885-meta{
    margin-top:20px;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:20px 0;
}

.c58885-author-tag{
    background:#FCCA2C;
    padding:5px 12px;
    border-radius:20px;
    font-weight:600;
}

/* HEADINGS */
.c58885-h1{
    font-size:32px;
    font-weight:700;
    margin-top:10px;
    color:#4C061D;
}

.c58885-h2{
    font-size:22px;
    font-weight:700;
    margin-top:30px;
    color:#4C061D;
}

/* PARAGRAPH */
.c58885-p{
    font-size:16px;
    line-height:1.7;
    margin:10px 0;
    color:#4C061D;
}

/* MOBILE RESPONSIVE */
@media (max-width:600px){

    .c58885-blog-container{
        padding:0 !important;
        margin:0 !important;
    }

    .c58885-blog-banner{
        height:260px;
        border-radius:0 !important;
    }

    .c58885-blog-banner img{
        height:100%;
        object-fit:cover;
        object-position:center;
        border-radius:0 !important;
    }
}
.contact-us-section {
    width: 100%;
    font-family: "Figtree", sans-serif;
    color: #171328;
    margin: 0;
    padding: 0;
}

.contact-us-section * {
    box-sizing: border-box;
}

.contact-us-header {
    width: 100%;
}

.contact-us-header img {
    width: 100%;
    display: block;
    height: auto;
}

.contact-us-content {
    display: flex;
    padding: 60px 50px;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    background: #fff;
}

/* Left Text Area */
.contact-us-text {
    width: 350px;
}

.contact-us-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    margin-top: 0;
    color: #171328;
}

.contact-us-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    margin-top: 0;
    color: #171328;
}

.contact-us-info-box {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    gap: 12px;
}

.contact-us-info-box img {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.contact-us-info-box strong {
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.contact-us-info-box div {
    font-size: 15px;
    line-height: 1.5;
}

/* Form Styling */
.contact-us-form {
    flex: 1;
    min-width: 380px;
}

.contact-us-form input,
.contact-us-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #bfbfbf;
    font-size: 15px;
    font-family: "Figtree", sans-serif;
    box-sizing: border-box;
    border-radius: 4px;
    background: #fff;
    color: #171328;
    transition: border-color 0.3s ease;
}

.contact-us-form input::placeholder,
.contact-us-form textarea::placeholder {
    color: #999;
}

.contact-us-form input:focus,
.contact-us-form textarea:focus {
    outline: none;
    border-color: #228D6B;
}

.contact-us-form input.contact-error {
    border-color: #dc3545;
}

.contact-us-row {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-us-form-group {
    flex: 1;
    position: relative;
}

.contact-us-error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: none;
    font-weight: 500;
}

.contact-us-form textarea {
    height: 160px;
    resize: none;
    font-family: "Figtree", sans-serif;
}

/* Button */
.contact-us-submit-btn {
    background-color: #228D6B;
    color: white;
    padding: 12px 32px;
    border: none;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: "Figtree", sans-serif;
    text-transform: uppercase;
}

.contact-us-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.contact-us-submit-btn:active {
    transform: translateY(0);
}

.contact-us-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success/Error Messages */
.contact-us-success-message {
    display: none;
    margin-top: 20px;
    padding: 18px;
    background: #e7f9f0;
    color: #228D6B;
    border-left: 5px solid #228D6B;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 500;
}

.contact-us-error-alert {
    display: none;
    margin-top: 20px;
    padding: 18px;
    background: #ffe7e7;
    color: #dc3545;
    border-left: 5px solid #dc3545;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 500;
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    .contact-us-header img {
        content: url('assets/exportsm.png');
    }
    
    .contact-us-content {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .contact-us-text {
        width: 100%;
    }
    
    .contact-us-form {
        min-width: 100%;
    }
    
    .contact-us-row {
        flex-direction: column;
        gap: 18px;
    }
    
    .contact-us-form-group {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .contact-us-text h2 {
        font-size: 28px;
    }
    
    .contact-us-text p {
        font-size: 15px;
    }
    
    .contact-us-content {
        padding: 30px 15px;
    }
    
    .contact-us-submit-btn {
        width: 100%;
        padding: 14px;
    }
}
 .product-section-wrapper {
        background-color: white;
        padding: 20px;
    }

    .product-container-unique {
        max-width: 1200px;
        margin: 0 auto;
        background: white;
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

    .product-image-unique {
        flex: 1;
        min-width: 300px;
        max-width: 500px;
    }

    .product-image-unique img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .product-details-unique {
        flex: 1;
        min-width: 300px;
        padding: 40px 20px;
        color: #171328;
    }

    .rating-unique {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
    }

    .stars-unique {
        color: #FE6C23;
        font-size: 18px;
        letter-spacing: 2px;
    }

    .rating-text-unique {
        font-size: 14px;
        font-weight: 500;
    }

    .product-title-unique {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 16px;
        color: #171328;
    }

    .product-description-unique {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 24px;
        color: #171328;
    }

    .product-description-unique .mobile-break-unique {
        display: none;
    }

    .available-colors-unique {
        margin-bottom: 24px;
    }

    .available-text-unique {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 12px;
        color: #171328;
    }

    .color-options-unique {
        display: flex;
        gap: 12px;
    }

    .color-circle-unique {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid transparent;
        transition: transform 0.2s;
    }

    .color-circle-unique:hover {
        transform: scale(1.1);
        border-color: #171328;
    }

    .color-red-unique {
        background-color: #E74C3C;
    }

    .color-yellow-unique {
        background-color: #FEBA27;
    }

    .color-blue-unique {
        background-color: #9B9BDE;
    }

    .color-pink-unique {
        background-color: #D4A5D4;
    }

    .contact-button-unique {
        background-color: #FE6C23;
        color: white;
        border: none;
        padding: 16px 48px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        margin-bottom: 32px;
        transition: background-color 0.3s;
    }

    .contact-button-unique:hover {
        background-color: #ED702D;
    }

    .features-unique {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .feature-item-unique {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .feature-icon-unique {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .feature-icon-unique img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .feature-text-unique {
        flex: 1;
    }

    .feature-title-unique {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        color: #171328;
    }

    @media (max-width: 768px) {
        .product-container-unique {
            flex-direction: column;
        }

        .product-details-unique {
            padding: 24px;
        }

        .product-title-unique {
            font-size: 28px;
        }

        .features-unique {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .feature-item-unique {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .feature-icon-unique {
            width: 40px;
            height: 40px;
            margin-bottom: 8px;
        }

        .feature-title-unique {
            font-size: 12px;
        }

        .product-description-unique .mobile-break-unique {
            display: inline;
        }
    }
    .colorful-range-section {
            font-family: 'Figtree', sans-serif;
            background-color: #ffffff;
            color: #171328;
            padding: 40px 20px;
        }

        .colorful-range-section * {
            box-sizing: border-box;
        }

        .colorful-range-section .cr-title {
            text-align: center;
            font-size: 2.5rem;
            margin: 0 0 40px 0;
            font-weight: 700;
            color: #171328;
        }

        .colorful-range-section .cr-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .colorful-range-section .cr-products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        @media (max-width: 1024px) {
            .colorful-range-section .cr-products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .colorful-range-section .cr-product-card {
            background: #FBF9EF;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(23, 19, 40, 0.1);
            transition: transform 0.3s ease;
        }

        .colorful-range-section .cr-product-card:hover {
            transform: translateY(-5px);
        }

        .colorful-range-section .cr-image-container {
            position: relative;
            width: 100%;
            padding-top: 100%;
            overflow: hidden;
        }

        .colorful-range-section .cr-image-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .colorful-range-section .cr-product-info {
            padding: 25px;
            text-align: center;
        }

        .colorful-range-section .cr-stars {
            color: #FCA941;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .colorful-range-section .cr-product-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #171328;
        }

        .colorful-range-section .cr-product-description {
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 20px;
            color: #171328;
            opacity: 0.8;
        }

        .colorful-range-section .cr-view-button {
            background: #FCA941;
            color: #171328;
            border: none;
            padding: 12px 40px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Figtree', sans-serif;
        }

        .colorful-range-section .cr-view-button:hover {
            background: #e89a35;
            transform: scale(1.05);
        }

        /* Mobile Carousel */
        @media (max-width: 768px) {
            .colorful-range-section {
                padding: 20px 0;
            }

            .colorful-range-section .cr-container {
                padding: 0;
            }

            .colorful-range-section .cr-title {
                font-size: 1.5rem;
                margin-bottom: 20px;
                padding: 0 20px;
            }

            .colorful-range-section .cr-products-grid {
                display: none;
            }

            .colorful-range-section .cr-carousel {
                display: block;
                position: relative;
                overflow: hidden;
                width: 100%;
                padding: 0 20px;
            }

            .colorful-range-section .cr-carousel-track {
                display: flex;
                transition: transform 0.5s ease;
                gap: 20px;
            }

            .colorful-range-section .cr-carousel .cr-product-card {
                min-width: calc(100% - 40px);
                width: calc(100% - 40px);
                flex-shrink: 0;
                margin: 0;
            }

            .colorful-range-section .cr-image-container {
                border-radius: 20px 20px 0 0;
                overflow: hidden;
            }

            .colorful-range-section .cr-product-card {
                border-radius: 20px;
            }

            .colorful-range-section .cr-product-info {
                padding: 20px;
            }

            .colorful-range-section .cr-product-name {
                font-size: 1.1rem;
            }

            .colorful-range-section .cr-product-description {
                font-size: 0.85rem;
                margin-bottom: 15px;
            }

            .colorful-range-section .cr-view-button {
                width: 100%;
                padding: 14px;
            }

            .colorful-range-section .cr-carousel-dots {
                display: flex;
                justify-content: center;
                gap: 8px;
                margin-top: 20px;
                padding: 0 20px;
            }

            .colorful-range-section .cr-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #D3D3D3;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .colorful-range-section .cr-dot.active {
                background: #FCA941;
                width: 24px;
                border-radius: 4px;
            }

            .colorful-range-section .cr-carousel-arrows {
                display: none;
            }
        }

        @media (min-width: 769px) {
            .colorful-range-section .cr-carousel {
                display: none;
            }
        }
           .testimonial-section {
            font-family: 'Figtree', sans-serif;
            background-color: #fff;
            padding: 60px 20px;
            color: #171328;
        }

        .testimonial-section * {
            box-sizing: border-box;
        }

        .testimonial-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-heading {
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            margin: 0 0 60px 0;
            color: #171328;
            padding: 0;
        }

        .testimonial-reviews-wrapper {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .testimonial-reviews-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            transition: transform 0.3s ease;
        }

        .testimonial-review-card {
            background-color: #FBF9EF;
            padding: 40px 30px;
            border-radius: 12px;
            position: relative;
        }

        .testimonial-review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .testimonial-review-header-content {
            flex: 1;
        }

        .testimonial-comma-icon {
            width: 50px;
            height: 50px;
            opacity: 0.3;
            flex-shrink: 0;
            margin-left: 15px;
        }

        .testimonial-review-title {
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 10px 0;
            color: #171328;
            padding: 0;
        }

        .testimonial-stars {
            margin: 0 0 20px 0;
            padding: 0;
        }

        .testimonial-star {
            color: #FE6C23;
            font-size: 18px;
            margin-right: 3px;
        }

        .testimonial-review-text {
            font-size: 16px;
            line-height: 1.6;
            margin: 0 0 30px 0;
            color: #171328;
            padding: 0;
        }

        .testimonial-reviewer-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 0;
            padding: 0;
        }

        .testimonial-reviewer-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-reviewer-details {
            margin: 0;
            padding: 0;
        }

        .testimonial-reviewer-details h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 3px 0;
            color: #171328;
            padding: 0;
        }

        .testimonial-reviewer-details p {
            font-size: 14px;
            color: #171328;
            opacity: 0.7;
            margin: 0;
            padding: 0;
        }

        .testimonial-carousel-dots {
            display: none;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #171328;
            opacity: 0.3;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }

        .testimonial-dot.active {
            opacity: 1;
            background-color: #FE6C23;
        }

        @media (max-width: 768px) {
            .testimonial-section {
                padding: 40px 20px;
            }

            .testimonial-heading {
                font-size: 28px;
                margin-bottom: 30px;
                line-height: 1.2;
            }

            .testimonial-reviews-wrapper {
                overflow: hidden;
                width: 100%;
            }

            .testimonial-reviews-container {
                display: flex;
                transition: transform 0.3s ease;
                width: 100%;
            }

            .testimonial-review-card {
                min-width: 100%;
                width: 100%;
                flex-shrink: 0;
                padding: 30px 25px;
            }

            .testimonial-review-header {
                flex-direction: row;
                align-items: flex-start;
                margin-bottom: 15px;
            }

            .testimonial-comma-icon {
                position: static;
                margin-left: 15px;
                width: 40px;
                height: 40px;
            }

            .testimonial-review-title {
                font-size: 18px;
                margin-bottom: 12px;
            }

            .testimonial-stars {
                margin-bottom: 15px;
            }

            .testimonial-star {
                font-size: 16px;
            }

            .testimonial-review-text {
                font-size: 15px;
                margin-bottom: 25px;
                line-height: 1.5;
            }

            .testimonial-reviewer-image {
                width: 45px;
                height: 45px;
            }

            .testimonial-reviewer-details h3 {
                font-size: 16px;
            }

            .testimonial-reviewer-details p {
                font-size: 13px;
            }

            .testimonial-carousel-dots {
                display: flex;
            }
        }