/* ==========================================================================
   Main Layout & Global Styles - START
   ========================================================================== */
:root {
    --primary-green: #00A859;
    --primary-red: #E31E24;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --white: #ffffff;
    --bg-light: #F8F9FA;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    text-align: center;
}

/* Global Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
}

h1 {
    font-size: 4.5rem;
}

h2 {
    font-size: 3.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.container {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Header Styling --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

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

/* Logo */
.logo-circle {
    width: 120px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-decoration: none;
    transition: var(--transition-smooth);

    img {
        max-width: 100%;
    }
}

.logo-circle:hover {
    transform: scale(1.05);
}

.logo-circle .brand-name {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Nav Pill */
.nav-pill {
    background: var(--white);
    padding: 8px 30px 12px;
    border-radius: 100px;
    box-shadow: var(--shadow-medium);
    margin-right: 20px;
}

.nav-pill ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-pill ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-pill ul li a:hover,
.nav-pill ul li a.active {
    color: var(--primary-green);
}

.nav-pill ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-green);
}

.mobile-logo.footer-logo {
    display: none;
}

/* Hamburger */
.hamburger-btn {

    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.mobileMenuActive .hamburger-btn {
    background: var(--primary-green);
    color: var(--white);
    transform: rotate(90deg);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    padding-top: 100px;
    /* overflow: hidden; */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.subheading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.subheading .highlight {
    color: var(--primary-green);
}

.main-title {
    margin-bottom: 25px;
    /* Font properties inherited from h1 global */
}

.brand-text {
    color: var(--primary-green);
}

.description {
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}


.btn {
    padding: 18px 35px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 15px 30px rgba(0, 168, 89, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 168, 89, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Hero Visual & Swiper */
.hero-content {
    text-align: left;
}

.hero-visual {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 600px;
    /* Fixed height for consistent layout */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-swiper {
    width: 100%;
    height: 100%;
    overflow: visible !important;
    /* Allow elements to pop out if needed */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}



.slide-cover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    pointer-events: none;
}

.slide-cover img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;

    animation: float-slow 10s infinite alternate ease-in-out;
}

.swiper-main {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-main img {
    max-width: 450px;
    width: 100%;
    height: 450px;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.15));
    transform: perspective(1000px) rotateY(-5deg);
    object-fit: contain;

}

.swiper-slide-active .swiper-main img {
    animation: float-product 6s infinite alternate ease-in-out;
}

/* Animations */
@keyframes float-slow {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    100% {
        transform: translate(20px, 20px) rotate(5deg) scale(1.05);
    }
}

@keyframes float-product {
    0% {
        transform: perspective(1000px) rotateY(-5deg) translateY(0);
    }

    100% {
        transform: perspective(1000px) rotateY(5deg) translateY(-20px);
    }
}

/* Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 168, 89, 0.05), rgba(227, 30, 36, 0.05));
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        order: 2;
    }

    .hero-visual {
        order: 1;
        height: 400px;
    }


    .main-title {
        font-size: 3.5rem;
    }



    .swiper-main img {
        max-width: 300px;
    }
}

/* ==========================================================================
   Main Layout & Global Styles - END
   ========================================================================== */

/* ==========================================================================
   Categories Section - START
   ========================================================================== */
/* Categories Section */
.categories-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: url('https://sr25.in/wp-content/uploads/2025/06/juicybanner-5.jpg') center/cover no-repeat;

    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.category-bg {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s ease;
    z-index: 1;
}

.category-card:hover .category-bg {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: all 0.4s ease;
    z-index: 2;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to bottom, rgba(0, 168, 89, 0.2) 0%, rgba(0, 168, 89, 0.8) 100%);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    margin-bottom: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    transform: translateY(0);
    opacity: 1;
}

.category-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.category-card:hover h3 {
    transform: translateY(0);
}

.category-btn {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

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

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        aspect-ratio: 16/9;
    }
}


/* ==========================================================================
   Categories Section - END
   ========================================================================== */

/* ==========================================================================
   Our Products Section (Grid) - START
   ========================================================================== */
/* Our Products Section - Enhanced with Continuous Animations */
.our-products-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #00A859 0%, #00934e 50%, #E31E24 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Floating particles */
.our-products-section::before,
.our-products-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-particle 20s infinite ease-in-out;
}

.our-products-section::before {
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.our-products-section::after {
    bottom: -100px;
    right: -100px;
    animation-delay: 10s;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }

    50% {
        transform: translate(0, -100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, -50px) rotate(270deg);
    }
}

.products-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.products-header .category {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
}

.products-header .section-title {
    color: white;
    font-size: 4rem;
    margin: 15px 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {

    0%,
    100% {
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    50% {
        text-shadow: 0 10px 50px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

.products-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.product-item {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: float-card 6s ease-in-out infinite;
}

.product-item:nth-child(1) {
    animation-delay: 0s;
}

.product-item:nth-child(2) {
    animation-delay: 1s;
}

.product-item:nth-child(3) {
    animation-delay: 2s;
}

.product-item:nth-child(4) {
    animation-delay: 3s;
}

.product-item:nth-child(5) {
    animation-delay: 4s;
}

.product-item:nth-child(6) {
    animation-delay: 5s;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00A859, #E31E24, #00A859);
    background-size: 200% 100%;
    animation: gradient-slide 3s linear infinite;
}

@keyframes gradient-slide {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.product-item:hover {
    transform: translateY(-20px) scale(1.05) rotate(2deg);
    box-shadow: 0 30px 80px rgba(0, 168, 89, 0.4);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-bg-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.2), rgba(227, 30, 36, 0.2));
    border-radius: 50%;
    animation: pulse-rotate 4s infinite ease-in-out;
}

@keyframes pulse-rotate {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

.product-image {
    position: relative;
    z-index: 2;
    max-width: 180px;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease;
    animation: product-bounce 3s ease-in-out infinite;
}

@keyframes product-bounce {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.product-item:hover .product-image {
    transform: scale(1.15) rotate(-10deg);
    animation: none;
}


.product-name {

    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00A859, #00934e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.product-item:hover .product-name {
    transform: scale(1.05);
    background: linear-gradient(135deg, #E31E24, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-tagline {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, #00A859, #00934e);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
    animation: tag-shimmer 3s ease-in-out infinite;
}

.feature-tag:nth-child(1) {
    animation-delay: 0s;
}

.feature-tag:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes tag-shimmer {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 168, 89, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 168, 89, 0.6);
    }
}

.product-item:hover .feature-tag {
    background: linear-gradient(135deg, #E31E24, #ff4757);
    transform: translateY(-3px);
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #00A859, #00934e);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 168, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.product-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-cta:hover::before {
    width: 300px;
    height: 300px;
}

.product-cta:hover {
    background: linear-gradient(135deg, #E31E24, #ff4757);
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.4);
}

.product-cta i {
    transition: transform 0.3s ease;
}

.product-cta:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-item {
        padding: 30px 20px;
    }

    .products-header .section-title {
        font-size: 2.5rem;
    }
}


/* ==========================================================================
   Our Products Section (Grid) - END
   ========================================================================== */

/* ==========================================================================
   Products Carousel Section - START
   ========================================================================== */
/* Products Carousel */
.products-section {
    position: relative;
    overflow: hidden;
    /* Prevent body scroll from character pop-outs */
}

.products-swiper {
    padding: 60px 20px 100px;
    overflow: visible !important;
    /* Crucial for showing 5 slides without clipping at container edges */
}

/* Section Header styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .category {
    color: var(--primary-red);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.section-header .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 6px;
    background: var(--primary-green);
    border-radius: 10px;
    opacity: 0.3;
}



.product-card {
    position: relative;
    width: 100%;
    height: 390px;
    border-radius: 20px;
    overflow: visible;
    /* Ensure character and lift don't get cut off */
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: transparent;
    cursor: pointer;



}

.product-card:hover,
.swiper-slide-active .product-card {
    transform: translateY(-20px);
}





.product-card .cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* Re-apply radius since card is now overflow:visible */
    transition: transform 0.5s ease;
}


.product-card:hover .cover-image,
.swiper-slide-active .product-card .cover-image {
    transform: scale(1.1);
}


.product-card .title {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-height: 80px;
    z-index: 2;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.product-card .character {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%, -6%);
    width: 130px;
    height: auto;
    z-index: 3;
    object-fit: contain;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}


.product-card:hover .character,
.swiper-slide-active .product-card .character {
    transform: scale(1.15) rotate(-5deg) translate(-50%, -40%);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   Products Carousel Section - END
   ========================================================================== */

/* ==========================================================================
   Brands Section - START
   ========================================================================== */
/* Brands Section */
.brands-section {
    padding: 100px 0;
    /* background-color: #fdfdfd; */
    max-width: 1200px;
    margin: 0 auto;

}

.brands-container {
    margin: 0 auto;
    padding: 0 20px;
}

/* Category Pills */
.brand-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 80px;
}

.category-pill {
    padding: 10px 25px;
    background: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.category-pill:hover,
.category-pill.active {
    background: var(--white);
    color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Brand Display Content */
.brand-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    text-align: center;
}


.display-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.display-image img {
    max-width: 100%;
    height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float-main 6s infinite alternate ease-in-out;
}

@keyframes float-main {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-15px);
    }
}

.display-info {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.display-info h3 {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.display-info p {
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


.explore-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #00a859;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 168, 89, 0.25);
}

.explore-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 168, 89, 0.35);
    background: #00934e;
}

/* Logos Grid */
.brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.logo-card {
    background: #fff;
    aspect-ratio: 1/1;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.logo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-card:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   Brands Section - END
   ========================================================================== */

/* ==========================================================================
   About Section - START
   ========================================================================== */
/* About Section Styles */
.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    /* background-color: var(--white); */
}

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

/* Visual Side */
.about-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-bg-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 168, 89, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    z-index: 2;
    width: 400px;
    height: 500px;
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px 200px 20px 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform-origin: bottom center;
}

/* Floating Elements */
.float-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: float-card 6s infinite ease-in-out;
}

.float-card.content-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.float-card.content-2 {
    bottom: 10%;
    left: -40px;
    animation-delay: 2s;
}

.float-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.float-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.float-text span {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Content Side */
.about-content {
    position: relative;
    z-index: 5;
}

.about-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 168, 89, 0.1);
    color: var(--primary-green);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-description {
    margin-bottom: 40px;
    font-size: 1.15rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 40px;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 600;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-visual {
        order: 2;
        height: 500px;
    }

    .stats-grid {
        justify-content: center;
    }
}

/* ==========================================================================
   About Section - END
   ========================================================================== */

/* ==========================================================================
   Why Choose Us Section - START
   ========================================================================== */
/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Background elements */
.why-choose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.wc-blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
}

.wc-blob-1 {
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: var(--primary-green);
    animation: float-blob 15s infinite alternate ease-in-out;
}

.wc-blob-2 {
    bottom: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--primary-red);
    animation: float-blob 12s infinite alternate-reverse ease-in-out;
}

@keyframes float-blob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 40px) scale(1.1);
    }
}

.why-choose-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .icon-wrapper {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.icon-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-blob {
    transform: scale(1.5);
    opacity: 0.2;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
}

/* ==========================================================================
   Why Choose Us Section - END
   ========================================================================== */

/* ==========================================================================
   Footer Section - START
   ========================================================================== */
/* Footer Section */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-red), var(--primary-green));
    background-size: 200% 100%;
    animation: gradient-slide 3s linear infinite;
}

@keyframes gradient-slide {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.footer-brand {
    animation: fade-in-up 0.8s ease;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-icon {
    font-size: 3rem;
    animation: rotate-icon 10s linear infinite;
}

@keyframes rotate-icon {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(15deg);
    }
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: var(--primary-green);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(0, 168, 89, 0.4);
}

.footer-column {
    animation: fade-in-up 0.8s ease;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.4s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(0, 168, 89, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-green), #00934e);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--primary-red), #ff4757);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.4);
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-green);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), #00934e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 168, 89, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    animation: bounce-up 2s ease-in-out infinite;
}

@keyframes bounce-up {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-red), #ff4757);
    transform: translateY(-5px);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ==========================================================================
   Footer Section - END
   ========================================================================== */