
:root {
    --primary-red: #E31E24;
    --text-dark: #1A1A1A;
    --text-grey: #666666;
    --bg-light: #F9F9F9;
    /*--font-heading: 'Bricolage Grotesque', sans-serif;*/
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x:hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.hero-slide {
    background-size: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Header Details */
#main-header {

    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    /*padding-top: 20px;*/
}



/*#main-header.homepage_header {*/
/*    top: 20px;*/
/*}*/

#main-header.scrolled {
    top: 0;
}

#main-header:not(.scrolled) .top-bar {
    display: block !important;
}

#main-header:not(.scrolled) .top-bar {
    display: none;
}

#main-header:not(.scrolled) .custom-navbar {
    background: #fff;
    /* max-width: 1200px; */
    width: 100%;
    margin: 0 auto;
    /* border-radius: 50px; */
    padding: 0px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#main-header.scrolled {
    background: #fff;
    padding-top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#main-header.scrolled .top-bar {
    display: block;
}

#main-header.scrolled .custom-navbar {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
}

/* =========================================
   TOP BAR
========================================= */

.top-bar {
    background: var(--primary-red, #ed1c24);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    font-family: var(--font-body, 'DM Sans', sans-serif);
}

.top-bar .container {
    width: 100%;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* =========================================
   LEFT SOCIAL ICONS
========================================= */

.social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-icons a {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;

    font-size: 15px;

    transition: all 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.75;
    transform: translateY(-2px);
}

/* =========================================
   RIGHT AREA
========================================= */

.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* =========================================
   PHONE
========================================= */

.contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #fff;
    text-decoration: none;

    font-weight: 500;
}

.contact-info i {
    font-size: 14px;
}

/* =========================================
   LOGIN
========================================= */

.login-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    text-decoration: none;

    text-transform: uppercase;

    font-weight: 700;

    background: rgba(255, 255, 255, 0.18);

    padding: 7px 16px;

    border-radius: 5px;

    transition: all 0.3s ease;
}

.login-btn a:hover {
    background: #fff;
    color: var(--primary-red, #ed1c24);
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:767px) {

    .top-bar {
        padding: 8px 0;
    }

    .top-bar-content {
        justify-content: center;
    }

    .social-icons {
        display: none;
    }

    .top-right {
        width: 100%;
        justify-content: center;
        gap: 18px;
    }

    .contact-info a {
        font-size: 12px;
    }

    .login-btn a {
        padding: 6px 12px;
        font-size: 11px;
    }
}
.custom-navbar {
    padding: 0;
}

.custom-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;

    padding-bottom: 10px;

    transition: all 0.3s ease;
}

#main-header:not(.scrolled) .logo img {
    height: 100px;
    margin-top: 0;
}

.nav-links {
    display: flex;
    gap: 35px;
    margin: 0 auto 0 50px;
    /* Push a bit right */
    list-style: none;
    /* Ensure no bullets */
    padding: 0;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
    /* Remove default underline */
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-red);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
    padding-bottom: 20px;
    /* Bridge gap for hover */
    margin-bottom: -20px;
}

.nav-item-dropdown .fa-chevron-down {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.nav-item-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 100;
    padding: 10px 0;
    list-style: none;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.nav-dropdown-menu li a:hover {
    background: #f9f9f9;
    color: var(--primary-red);
}

.nav-dropdown-menu li a::after {
    display: none;
    /* Remove underline effect for dropdown items */
}

.btn-primary {
    background: var(--primary-red);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    /* Rounded pill shape as seen in modern designs */
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.4);
    transition: 0.3s;
    border-color: var(--primary-red);
}


.about-hero {
    /*margin: 30px;*/
    /*border-radius: 30px !important;*/
}

.about-hero .overlay {
    /*border-radius: 30px !important;*/
}

.btn-primary:hover {
    background-color: var(--bs-danger) !important;
    border-color: var(--bs-danger) !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.6);
}

.btn-primary.btn-white {
    background: #fff;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    
    /*padding: 30px;*/
    /*margin-top: -100px;*/
}

.hero-section .swiper {
    height: 100%;
}

.hero-content {
    color: white;
}

.hero-swiper {
    /*border-radius: 50px;*/
}

.hero-swiper .swiper-slide {
    position: relative;

}

/* Overlay gradient for better text visibility */
.hero-swiper .swiper-slide::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-top: 130px;
    /* Offset from top */
    padding-left: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.hero-content p {

    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;

}

/* Swiper Pagination Customization */
.hero-section .swiper-pagination {
    bottom: 10px !important;
    background: rgba(85, 83, 74, 0.95);
    /* A bit more brownish/grey */
    padding: 6px 15px;
    /*border-radius: 20px;*/
    width: auto !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 30;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 4px !important;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background: transparent !important;
    border: 2px solid #fff;
    width: 14px;
    height: 14px;
    position: relative;
}

.swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

/* Hero Bottom Shape (Tab Cutout) */
.hero-bottom-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 35px;
    /* Matched the 35px height request */
    z-index: 20;
    display: flex;
    pointer-events: none;
}

/* Create the apparent rounded bottom corners of the slider image */
.hero-bottom-shape::before,
.hero-bottom-shape::after {
    content: '';
    position: absolute;
    bottom: 100%;
    width: 50px;
    height: 50px;
    pointer-events: none;
}

.hero-bottom-shape::before {
    left: 0;
    background: radial-gradient(circle at top right, transparent 50px, #fff 50px);
}

.hero-bottom-shape::after {
    right: 0;
    background: radial-gradient(circle at top left, transparent 50px, #fff 50px);
}

.hero-bottom-shape .shape-left,
.hero-bottom-shape .shape-right {
    flex-grow: 1;
    background-color: #fff;
    height: 100%;
}

.hero-bottom-shape .shape-center {
    width: 220px;
    /* Matched the 220px width request */
    height: 35px;
    background-color: transparent;
    line-height: 0;
}

/* Stage Products Section */
.stage-products-section {
    padding: 100px 0 50px 0;
    background: #f4f4f4;
}

.section-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.spl_heading {
    position: relative;
    display: inline-block;
    

}


.bg-heading {
    display:none;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 124px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;

    font-family: var(--font-heading);
    letter-spacing: 5px;
}

.pc-item a{
        background: #ffb1b354;
        display:block;
}
.pc-item a img{
    object-fit:contain
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 0;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-grey);
}

/* Swiper specific for the "cutted" look */
.stage-swiper {
    padding: 50px 0 !important;
    /* give space for shadow/transform */
}

.stage-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    /* Taller card */

    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

/* Remove old img styles as we use bg images now */
.stage-card img {
    display: none;
}

.stage-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    /* Cover full area for gradient */
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #fff;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Bottom aligned content */
    align-items: center;
    /* Centered horizontal */
    text-align: center;
}

/* Show content on hover or if active slide */
.stage-card:hover .stage-overlay,
.swiper-slide-active .stage-card .stage-overlay {
    opacity: 1;
}

.stage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s 0.1s;
    /* delay */
}

/* Reveal nested elements */
.stage-card:hover .stage-tags,
.swiper-slide-active .stage-card .stage-tags,
.stage-card:hover h3,
.swiper-slide-active .stage-card h3,
.stage-card:hover p,
.swiper-slide-active .stage-card p {
    transform: translateY(0);
    opacity: 1;
}

.stage-tags span {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stage-overlay h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s 0.2s;
}

.stage-overlay p {
    font-size: 1rem;
    opacity: 0;
    line-height: 1.6;
    max-width: 90%;
    transform: translateY(20px);
    transition: 0.4s 0.3s;
}

/* Active slide zoom effect */
.swiper-slide-active .stage-card {
    transform: scale(1.05);
    /* Stronger zoom */
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); */
    border: none;
    /* Removed border as per image/clean look */
    z-index: 10;
}

/* Built for Farmers */
.built-for-farmers {
    background: #fff;
    padding: 50px 0;
}

.built-for-farmers h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    word-wrap: break-word;
}

#about-scroll-text.text-muted,
#gsap-scroll-text.text-muted {
    color: rgb(33 37 41 / 15%) !important;
}

.gsap-char {
    display: inline;
    /* gsaps handles the color transition */
}

.farmers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.farmer-card {
    background: #f4f7f6;
    /* Very light cool grey */
    border-radius: 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: span 2;
    transition: transform 0.3s;
}

/* First 2 items span 3 columns each */
.farmer-card.large {
    grid-column: span 3;
    min-height: 400px;
}

/* Specific Dark Card */
.farmer-card.dark-card {
    background: #737373;
    /* Dark grey matching reference */
}

/* Remove the old :first-child rule to avoid conflicts if we use the class */
.farmer-card.large:first-child {
    background: #737373;
}

.farmer-card img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    /* Add shadow to transparent images */
}

.farmer-card:hover img {
    transform: scale(1.05);
}

.farmer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
    z-index: 2;
}

.farmer-card:hover .farmer-overlay {
    opacity: 1;
}

.farmer-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 10px;
}

.farmer-overlay .btn-primary {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.top-products-section {
    padding: 80px 0;
    padding-top:0;
}

.info-card {
    background: white;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 40px;
}

.info-card h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.info-card h5 {
    font-size: 20px;
}

/* Responsive Grid */
@media (max-width: 1024px) {

    .farmer-card,
    .farmer-card.large {
        grid-column: span 3;
        /* 2 per row */
    }
}


/* Achievements Section */
.achievements-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    /* Prevent text overflow */
    padding-top:0;
}
._safe ul{
    list-style:disc;
}

/* Specific override for the Achievements background text */
.achievements-section .bg-heading {
    position: absolute;
    top: -80px;
    /* Position it behind the card */
    left: 50%;
    transform: translateX(-50%);
    font-size: 10rem;
    font-weight: 800;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 2px #e0e0e0;
    /* Outline effect */
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.stats-card {
    position: relative;
    border-radius: 60px;
    /* Much larger rounded corners */
    overflow: hidden;
    color: #fff;
    padding: 100px 40px;
    /* More padding */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
    /* Space for the text behind */
    z-index: 2;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark brown/warm overlay gradient */
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.stats-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-evenly;
    /* Better spacing */
    align-items: flex-start;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-item h3 {
    font-size: 60px;
    /* Larger numbers */
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .achievements-section .bg-heading {
        font-size: 6rem;
        top: -30px;
    }

    .stats-card {
        padding: 60px 30px;
        border-radius: 40px;
    }

    .stat-item h3 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .achievements-section .bg-heading {
        font-size: 4rem;
        top: -20px;
    }

    .stats-content {
        flex-direction: column;
        gap: 40px;
    }

    .stat-item h3 {
        font-size: 3rem;
    }
}



.product-item {
    background: #f4f6f8;
    /* Light grey card background */
    border-radius: 30px;
    /* Rounded corners */
    padding: 40px 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-item img {
    max-width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 30px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.product-info {
    width: 100%;
}

.product-cat {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.product-item h4 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    color: #000;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Navigation Buttons Styles */
.top-products-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.top-products-nav .swiper-button-prev,
.top-products-nav .swiper-button-next {
    position: static;
    /* Reset absolute positioning */
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: #555;
    background: transparent;
    transition: 0.3s;
    margin: 0;
}

.top-products-nav .swiper-button-prev:after,
.top-products-nav .swiper-button-next:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.top-products-nav .swiper-button-prev:hover,
.top-products-nav .swiper-button-next:hover {
    border-color: #000;
    color: #000;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    /* Background is now white or inherited, wrapper has image */
}

.video-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    /* Rounded corners */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Requested dark overlay */
    z-index: 1;
}

.play-btn {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #ff0000;
    /* Red play button */
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0.3);
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    /* Visual center fix */
    z-index: 2;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Red Strip Info */
/* Red Strip Info */
.red-strip-info {
    background: var(--primary-red);
    color: #fff;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-content span {
    display: inline-block;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Info Section */
.info-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    /* Adjust height as needed */
    padding: 100px 0;
    display: flex;
    align-items: flex-end;
    /* Align content to bottom */
}

.info-card {
    /* Auto width based on col-lg-5, remove max-width centering */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.social-icons a {
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Assuming some text content for the strip based on "Partner share..." coming after */

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: #fff;
}

.reviews-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.reviews-swiper {
    padding-bottom: 50px !important;
}

.review-card {
    background: #fff;
    padding: 40px;
    border-radius: 40px;
    /* Large rounded corners */
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #fd7e14;
    /* Orange/Red color from reference */
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.review-card p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 78px;
    /* Fixed height for 3 lines approx */
    transition: 0.3s;
}

.review-card.expanded p {
    -webkit-line-clamp: unset;
    height: auto;
    overflow: visible;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    display: block;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h5 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    color: #000;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: #888;
}

/* Pagination Dots */
.reviews-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #eee;
    opacity: 1;
    margin: 0 5px !important;
}

.reviews-section .swiper-pagination-bullet-active {
    background: var(--primary-red);
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.reviewer h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.reviewer span {
    font-size: 0.9rem;
    color: var(--text-grey);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0 80px;
    background: #fff;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0px;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question .toggle-icon {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-grey);
    font-size: 1.1rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
    padding-bottom: 20px;
}

/* Footer Styles */
.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links-list a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.social-icons-footer img {
    transition: 0.3s;
    width: 32px;
}

.social-icons-footer img:hover {
    transform: translateY(-3px);
}

.watermark-bg {
    position: absolute;
    top: 0;
    left: 42%;
    /* transform: translateX(-50%); */
    font-size: 6rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0 0 0 / 23%);
    white-space: nowrap;
    z-index: 6;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    margin-top: 2rem;
}

.vision-section .watermark-bg {
    left: 0;
    margin-top: -40px;
}

.watermark-text {
    font-size: 8rem;
    font-weight: 900;
    color: #fff;
    opacity: 0.05;
    text-transform: lowercase;
    user-select: none;
    pointer-events: none;
    position: absolute;
    bottom: -40px;
    white-space: nowrap;
    z-index: 0;
}

@media (max-width: 768px) {
    .watermark-bg {
        font-size: 4rem;
        margin-top: 0;
    }

    .watermark-text {
        font-size: 4rem;
    }
}

.footer-logo img {
    height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #999;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-red);
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    color: #999;
}

/* Experience Slider Navigation */
.experience-nav-prev,
.experience-nav-next {
    width: 45px;
    height: 45px;
    border: 1px solid #777;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: transparent;
    color: #333;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.experience-nav-prev:hover,
.experience-nav-next:hover {
    background-color: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

/* =========================================
   Product Page Styles
========================================= */

/* Breadcrumb */
.breadcrumb-item a {
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary-red) !important;
}

/* Custom Accordion */
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-red);
    background-color: transparent;
    box-shadow: none;
}

.custom-accordion .accordion-button {
    font-size: 1.1rem;
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e60000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Product Gallery */
.main-image-container {
    border: 1px solid #f0f0f0;
}

.thumbnail {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.thumbnail:hover {
    border-color: #ccc !important;
}

.thumbnail.active-thumb {
    border-color: var(--primary-red) !important;
    border-width: 2px !important;
}

/* Product Gallery Navigation */
.product-main-swiper {
    position: relative;
}


.product-nav-arrows {
    position: absolute;
    top: -70px;
    right: 0px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.product-nav-prev,
.product-nav-next {
    position: static;
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: #555;
    background: transparent;
    transition: 0.3s;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-nav-prev::after,
.product-nav-next::after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.product-nav-prev:hover,
.product-nav-next:hover {
    background-color: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

.product-nav-prev.swiper-button-disabled,
.product-nav-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f9f9f9;
    color: #999;
    border-color: #eee;
}

/* Related Products Alternating Grid */
.related-product-img-card {
    transition: transform 0.3s ease;
}

.related-products-section .row:hover .related-product-img-card {
    transform: translateY(-5px);
}

/* ==========================================
   Advanced Interaction & Custom Cursor 
   ========================================== */
body {
    /* Hide default cursor to use custom GSAP dot */
    cursor: none;
}

/* Ensure links and buttons don't show the default pointer either */
/*a,*/
/*button,*/
/*input[type="submit"] {*/
/*    cursor: none;*/
/*}*/

a,
.pc-item,
.pc-item a,
.product-card a {
    cursor: pointer !important;
}

/*.custom-cursor {*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    background-color: var(--primary-red);*/
/*    border-radius: 50%;*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    pointer-events: none;*/
/*    z-index: 9999;*/
/*    mix-blend-mode: difference;*/
/*    transform: translate(-50%, -50%);*/
/*    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;*/
/*}*/

/*.custom-cursor.cursor-hover {*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    background-color: #fff;*/
/*    mix-blend-mode: difference;*/
/*}*/

/* Magnetic Buttons container fixes */
/*.magnetic {*/
/*    display: inline-block;*/
/*}*/

.farmer-card img,
.stage-card {
    transition: transform 0.1s ease-out;
    /* Needed for JS Parallax smoothing */
}


/*categories*/
/* =========================================
   Product Categories Section — pc-
========================================= */

.pc-section {
    padding: 50px 0;
    background: #fff;
}

.pc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f4f4f4;
    border-radius: 28px;
    padding: 40px 24px 28px;
    text-decoration: none;
    color: var(--text-dark);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: none; /* respects the site's custom cursor */
}

.pc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* Accent bar on top edge */
.pc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: var(--primary-red);
    border-radius: 0 0 4px 4px;
    transition: transform 0.35s ease;
}

.pc-card:hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* Image container */
.pc-icon-wrap {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.35s ease;
}

.pc-card:hover .pc-icon-wrap {
    transform: scale(1.08);
}

.pc-icon-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}

/* Text block */
.pc-card-body {
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.pc-card:hover .pc-card-body {
    transform: translateY(-4px);
}

.pc-card-body h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pc-count {
    font-size: 0.82rem;
    color: var(--text-grey);
    font-weight: 500;
}

/* Hover overlay with CTA */
.pc-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(227, 30, 36, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 28px;
}

.pc-card:hover .pc-hover-overlay {
    opacity: 1;
}

.pc-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 12px 28px;
    border-radius: 50px;
    transform: translateY(10px);
    transition: transform 0.35s ease, background 0.25s ease;
}

.pc-card:hover .pc-explore-btn {
    transform: translateY(0);
}

.pc-explore-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}
.section{
    padding:60px 0;
}
.form-control,.form-select{
    box-shadow:none !important;
}
.homepage-categories .pc-item:last-child{
    display:none;
}
/* Responsive */
@media (max-width: 992px) {
    .pc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pc-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .pc-icon-wrap {
        width: 100px;
        height: 100px;
    }

    .pc-card-body h4 {
        font-size: 0.95rem;
    }
}
/* On mobile devices, revert cursor to auto */
@media (max-width: 1024px) {

    body,
    a,
    button,
    input[type="submit"] {
        cursor: auto;
    }

    .custom-cursor {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .product-card h5{
    font-size:15px;
    margin-bottom:0;
}
.section-header h2{
    font-size:30px;
}
.homepage-categories .pc-item:last-child{
    display:block;
}
.homepage-categories .pc-item a img{
    height:112px;
}
    .farmer-card,
    .farmer-card.large {
        grid-column: span 6;
        /* 1 per row */
    }
    .pc-grid{
            grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    }
   
    .homepage-categories .pc-item a{
        border-radius: 12px !important;
    }
    .built-for-farmers h2{
            font-size: 30px;
    }
    .heading{
        font-size:22px !important;
    }
    .pc-section{
        padding:30px 0;
    }
    .stats-content{
                display: grid;
        /*grid-template-columns: 1fr 1fr;*/
        gap:20px
    }
    .stat-item{
        min-width:auto;
    }
    .stat-item h3{
                font-size: 2rem;
    }
    .stat-item p{
        font-size:14px;
        margin-bottom:0;
    }
    .achievements-section,.top-products-section,.info-section{
        padding:30px 0;
    }
    .top-products-section,.reviews-section{
        padding:30px 15px;
    }
    .info-card{
        position:static;
    }
    .hero-section{
           
    padding: 0 !important;
    }   
    
    /*remove desktop hero design*/
     .hero-swiper{
         border-radius:0 !important;
     }
     .hero-bottom-shape{
         display:none !important;
     }
    
    /*end*/
    .pc-card{
        height:auto !important;
    }
    .pc-card-body{
        margin-top:12px !important;
    }
    .pc-card-body h4{
        font-size:14px !important;
    }
   
    .hide_mobile{
        display:none;
    }
    section.py-5.text-center{
        padding-left:0 !important;
    }
    .mobile-reverse{
        flex-direction: column-reverse;
    }
    .editor_content ul{
        list-style:disc;
    }
    #main-header{
            top: 0;
                background: #fff;
    padding-top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    #main-header .custom-navbar{
            padding: 0 !important;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
        border-radius: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    }
    .logo img{
        height:80px !important;
    }
    .hero-section{
        margin-top:0;
                padding: 16px;
    }
    #main-header.homepage_header{
        top:0;
    }
    section.pb-20{
        margin-top: 30px !important;
        margin-bottom:30px !important;
    }
    .about-hero{
        margin:0;
                border-radius: 0 !important;
                height:auto !important;
                /*padding:70px 15px;*/
    }
    .about-hero .overlay,.about-hero > *{
        border-radius:0 !important;
    }
}



/*========================
XP MINI BANNER
========================*/

.xp-mini-banner-section{
    padding:20px 0 30px;
    background:#fff;
}

.xp-mini-banner-box{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    background:#fff;
}

.xp-mini-banner-img{
    display:block;
    width:100%;
    height:150px;              /* Banner Height */
    object-fit:cover;
    object-position:center;
}

/* Large Desktop */
@media (min-width:1400px){
    .xp-mini-banner-img{
        height:160px;
    }
}

/* Tablet */
@media (max-width:991px){
    .xp-mini-banner-img{
        height:85px;
    }
}

/* Mobile */
@media (max-width:576px){

    .xp-mini-banner-section{
       padding: 35px 0 35px;
    }

    .xp-mini-banner-box{
        border-radius:10px;
    }

    .xp-mini-banner-img{
        height:77px;
    }
    
    .promo-product-section {
    padding: 30px 0 !important;
    background: #f5f5f5;
}

}
/*=====================================
PROMO PRODUCT BANNER
======================================*/

.promo-product-section{
    padding:70px 0;
    background:#f5f5f5;
}

/* Main Box */

.promo-product-wrapper{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

/* Banner */

.promo-product-banner{

    position:relative;

    display:flex;

    align-items:center;

    min-height:500px;

    background:#fff;

    overflow:hidden;

}

/*====================
LEFT
=====================*/

.promo-left {
    width: 45%;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    background: #fff;
    position: relative;
    z-index: 5;
}

/* Diagonal */

.promo-left::after{

    content:"";

    position:absolute;

    top:-40px;

    right:-65px;

    width:130px;

    height:120%;

    background:#fff;

    border-right:8px solid #e60012;

    transform:skewX(-18deg);

    z-index:10;

}

/*====================
TAG
=====================*/

.new-product{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:max-content;

    background:#e60012;

    color:#fff;

    padding:13px 35px;

    font-size:15px;

    font-weight:700;

    margin-bottom:30px;

    position:relative;

}

.new-product::after{

    content:"";

    position:absolute;

    right:-18px;

    top:0;

    width:18px;

    height:100%;

    background:
    repeating-linear-gradient(
    -60deg,
    #fff 0,
    #fff 2px,
    transparent 2px,
    transparent 6px
    );

}

/*====================
HEADINGS
=====================*/

.promo-left h2{

    font-size:25px;

    color:#e60012;

    font-weight:800;

    line-height:1;

    margin-bottom:10px;

}

.promo-left h3{

    font-size:20px;

    color:#111;

    line-height:1.2;

    font-weight:800;

    margin-bottom:10px;

}

.line{

    width:80px;

    height:4px;

    background:#e60012;

    margin-bottom:28px;

}

.promo-left p {
    max-width: 470px;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 10px;
}

/*====================
BUTTON
=====================*/

.promo-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:200px;

    height:58px;

    background:#e60012;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.promo-btn:hover{

    background:#111;

    color:#fff;

}

/*====================
RIGHT
=====================*/

.promo-right{

    width:55%;

    min-height:500px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fff;

    padding:40px;

    overflow:hidden;

}

.promo-right img{

    width:100%;

    max-width:430px;

    max-height:430px;

    object-fit:contain;

    object-position:center;

    transition:.4s;

}

.promo-product-banner:hover .promo-right img{

    transform:scale(1.05);

}

/*====================
Large
=====================*/

@media(min-width:1600px){

.promo-left{

padding-left:90px;

padding-right:90px;

}

}

/*====================
Laptop
=====================*/

@media(max-width:1200px){

.promo-left{

padding:50px;

}

.promo-left h2{

font-size:46px;

}

.promo-left h3{

font-size:28px;

}

}

/*====================
Tablet
=====================*/

@media(max-width:991px){

.promo-product-banner{

flex-direction:column-reverse;

}

.promo-left,
.promo-right{

width:100%;

}

.promo-right{

min-height:320px;

padding:30px;

}

.promo-right img{

max-width:200px;

}

.promo-left{

min-height:auto;

padding:40px 30px;

}

.promo-left::after{

display:none;

}

.promo-left h2{

font-size:38px;

}

.promo-left h3{

font-size:24px;

}

.promo-left p{

max-width:100%;

font-size:16px;

}

.promo-btn{

width:100%;

}

}

/*====================
Mobile
=====================*/

@media(max-width:576px){

.promo-product-wrapper{

border-radius:18px;

}

.promo-right{

min-height:240px;

}

.promo-left{

padding:30px 20px;

}

.promo-left h2{

font-size:30px;

}

.promo-left h3{

font-size:20px;

}

.line{

margin-bottom:18px;

}

.new-product{

font-size:13px;

padding:10px 22px;

}

}
/*=========================================
XTRA POWER NEW LINEUP - PART 1
==========================================*/

.xp-lineup-section{
    position:relative;
    padding:60px 0;
    background:#f8f8f8;
    overflow:hidden;
}

.xp-lineup-section .container{
    max-width:1400px;
}

/*=========================
HEADER
==========================*/

.xp-lineup-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

    position:relative;

}

.xp-lineup-header::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-12px;

    width:100%;

    height:1px;

    background:#d9d9d9;

}

.xp-title{

    display:flex;

    align-items:center;

    gap:18px;

}

.xp-title h2{

    font-size:40px;

    font-weight:800;

    margin:0;

    color:#111;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.xp-title h2 span{

    color:#e30613;

}

/* Red stripes */

.xp-title::after{

    content:"";

    width:55px;

    height:10px;

    background:
    repeating-linear-gradient(
    -60deg,
    #e30613 0,
    #e30613 8px,
    transparent 8px,
    transparent 12px
    );

}

/*=========================
NAVIGATION
==========================*/

.xp-navigation{

    display:flex;

    gap:10px;

}

.xp-prev,
.xp-next{

    width:38px;

    height:38px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.3s;

    color:#fff;

    font-size:13px;

}

.xp-prev{

    background:#202020;

}

.xp-next{

    background:#e30613;

}

.xp-prev:hover{

    background:#000;

}

.xp-next:hover{

    background:#c40011;

}

/*=========================
SWIPER
==========================*/

.xpLineupSlider{

    width:100%;

    padding:18px 2px 10px;

    overflow:hidden;

}

.xpLineupSlider .swiper-wrapper{

    display:flex;

    align-items:stretch;

}

.xpLineupSlider .swiper-slide{

    height:auto;

    display:flex;

    box-sizing:border-box;

}


/*=========================================
XTRA POWER NEW LINEUP - PART 2
==========================================*/

/*=========================
CARD
==========================*/

.xp-lineup-card{

    width:100%;
    background:#fff;

    border:1px solid #ececec;

    border-radius:8px;

    box-shadow:0 6px 18px rgba(0,0,0,.08);

    display:flex;

    align-items:center;

    gap:16px;

    padding:16px;

    min-height:185px;

    transition:.35s ease;

    overflow:hidden;

}

.xp-lineup-card:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 30px rgba(0,0,0,.15);

}

/*=========================
IMAGE
==========================*/

.xp-card-image{

    width:42%;

    min-width:42%;

    display:flex;

    align-items:center;

    justify-content:center;

}

.xp-card-image img{

    width:100%;

    max-width:130px;

    max-height:135px;

    object-fit:contain;

    transition:.35s;

}

.xp-lineup-card:hover .xp-card-image img{

    transform:scale(1.08);

}

/*=========================
CONTENT
==========================*/

.xp-card-content{

    width:58%;

}

.xp-card-content h4{

    font-size:17px;

    font-weight:800;

    color:#111;

    margin-bottom:6px;

    line-height:1.2;

}

.xp-card-content h3{

    font-size:13px;

    font-weight:700;

    line-height:1.4;

    color:#222;

    margin-bottom:14px;

    text-transform:uppercase;

}

.xp-line{

    display:block;

    width:36px;

    height:3px;

    background:#e30613;

    margin-bottom:14px;

}

.xp-card-content p{

    font-size:14px;

    line-height:1.7;

    color:#555;

    margin-bottom:18px;

}

/*=========================
BUTTON
==========================*/

.xp-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#e30613;

    text-decoration:none;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    transition:.3s;

}

.xp-btn i{

    font-size:13px;

    transition:.3s;

}

.xp-btn:hover{

    color:#111;

}

.xp-btn:hover i{

    transform:translateX(5px);

}

/*=========================================
XTRA POWER NEW LINEUP - PART 3
==========================================*/

/* Swiper Fix */

.xpLineupSlider{
    overflow:hidden;
    width:100%;
}

.xpLineupSlider .swiper-wrapper{
    align-items:stretch;
}

.xpLineupSlider .swiper-slide{
    height:auto;
    display:flex;
    box-sizing:border-box;
}

/* Equal Height */

.xp-lineup-card{
    height:100%;
}

/* Navigation */

.xp-navigation{
    z-index:10;
}

.xp-prev,
.xp-next{
    user-select:none;
}

.xp-prev.swiper-button-disabled,
.xp-next.swiper-button-disabled{
    opacity:.45;
    pointer-events:none;
}

/* Hover */

.xp-lineup-card:hover .xp-card-content h4{
    color:#e30613;
}

.xp-lineup-card:hover .xp-line{
    width:55px;
    transition:.35s;
}

/* Shadow */

.xp-lineup-card{
    border:1px solid #efefef;
}

.xp-lineup-card:hover{
    border-color:#e30613;
}

/* Responsive */

@media (max-width:1400px){

.xp-title h2{
    font-size:34px;
}

}

@media (max-width:1200px){

.xp-title h2{
    font-size:30px;
}

}

@media (max-width:991px){

.xp-lineup-section{
    padding:50px 0;
}

.xp-lineup-card{

    flex-direction:column;

    text-align:center;

    padding:20px;

    min-height:auto;

}

.xp-card-image{

    width:100%;

    min-width:100%;

    margin-bottom:18px;

}

.xp-card-content{

    width:100%;

}

.xp-card-content h4{

    font-size:24px;

}

.xp-card-content h3{

    font-size:18px;

}

.xp-line{

    margin:15px auto;

}

.xp-btn{

    justify-content:center;

}

}

@media (max-width:767px){

.xp-title h2{

    font-size:28px;

}

.xp-navigation{

    gap:8px;

}

.xp-prev,
.xp-next{

    width:36px;
    height:36px;

}

}

@media (max-width:576px){

.xp-lineup-header{

    flex-direction:column;

    align-items:flex-start;

    gap:15px;

}

.xp-navigation{

    align-self:flex-end;

}

.xp-title h2{

    font-size:24px;

}

.xp-card-image img{

    max-width:120px;

}

.xp-card-content h4{

    font-size:20px;

}

.xp-card-content h3{

    font-size:16px;

}

.xp-card-content p{

    font-size:13px;

}

.xp-btn{

    font-size:12px;

}

}


/*==================================
BRAND STORY SECTION
===================================*/

.brand-story-section{

    padding:90px 0;

    background:#fafafa;

    position:relative;

}

.brand-story-heading{

    text-align:center;

    margin-bottom:70px;

}

/* Mini Title */

.story-mini-title{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    margin-bottom:25px;

}

.story-line{

    width:60px;

    height:4px;

    background:#e30613;

    position:relative;

}

.story-line:before{

    content:"";

    position:absolute;

    left:-18px;

    top:0;

    width:16px;

    height:4px;

    background:#111;

    transform:skew(-30deg);

}

.story-line:after{

    content:"";

    position:absolute;

    right:-18px;

    top:0;

    width:16px;

    height:4px;

    background:#111;

    transform:skew(-30deg);

}

.story-text{

    font-size:18px;

    font-weight:700;

    color:#111;

    letter-spacing:2px;

}

/* Main Heading */

.story-main-title{

    font-size:35px;

    font-weight:900;

    line-height:1.1;

    color:#111;

    margin-bottom:25px;

    text-transform:uppercase;

}

.story-main-title span{

    color:#e30613;

}

.story-divider{

    width:120px;

    height:5px;

    background:#e30613;

    margin:auto;

}

/*========================
CARD
========================*/

.story-box{

    background:#fff;

    border-radius:18px;

    padding:40px 35px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

    border:1px solid #ececec;

}

.story-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

/* Icon */

.story-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    /*border:3px solid #e30613;*/

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    background:#fff;

}

.story-icon img{

    width:90px;

    height:90px;

    object-fit:contain;

}

/* Title */

.story-box h3{

    font-size:25px;

    font-weight:800;

    color:#111;

    margin-bottom:18px;

}

.story-box h3 span{

    color:#e30613;

}

.story-card-line{

    width:55px;

    height:3px;

    background:#e30613;

    margin:0 auto 25px;

}

/* Text */

.story-box p{

    font-size:17px;

    line-height:1.9;

    color:#555;

    margin-bottom:35px;

}

/* Button */

.story-box a{

    color:#e30613;

    text-decoration:none;

    font-size:19px;

    font-weight:700;

    transition:.3s;

}

.story-box a i{

    margin-left:8px;

    transition:.3s;

}

.story-box:hover a i{

    transform:translateX(8px);

}

/*========================
RESPONSIVE
========================*/

@media(max-width:991px){

.story-main-title{

font-size:46px;

}

.story-box{

padding:30px 25px;

}

.story-box h3{

font-size:30px;

}

.story-box p{

font-size:17px;

}

}

@media(max-width:767px){

.story-main-title{

font-size:34px;

}

.story-mini-title{

flex-wrap:wrap;

}

.story-line{

display:none;

}

.story-box{

margin-bottom:25px;

}

.story-icon{

width:95px;

height:95px;

}

.story-icon img{

width:45px;

}

.story-box h3{

font-size:26px;

}

}


/*=========================
      HISTORY SECTION
==========================*/

.about-history-section{
    padding:0px 0;
}

.history-box{
    background:#dcdcdc;
    border-radius:22px;
    padding:55px 40px;
    overflow:hidden;
}

.history-title{
    text-align:center;
    margin-bottom:10px;
}

.history-title h2{
    font-size:35px;
    font-weight:800;
    color:#2b2b2b;
    letter-spacing:2px;
    margin:0;
    text-transform:uppercase;
    line-height:1;
}

.history-content p{
    font-size:16px;
    line-height:1.8;
    color:#2f2f2f;
    font-weight:500;
    margin-bottom:0px;
}

.history-content strong{
    font-weight:700;
}

/*=============
 Tablet
==============*/

@media(max-width:991px){

.history-box{
    padding:50px 35px;
}

.history-title h2{
    font-size:48px;
}

.history-content p{
    font-size:18px;
}

}

/*=============
 Mobile
==============*/

@media(max-width:767px){

.about-history-section{
    padding:50px 0;
}

.history-box{
    padding:35px 22px;
    border-radius:18px;
}

.history-title{
    margin-bottom:25px;
}

.history-title h2{
    font-size:34px;
    letter-spacing:1px;
}

.history-content p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:20px;
}

}

/*=============
 Small Mobile
==============*/

@media(max-width:480px){

.history-box{
    padding:28px 18px;
}

.history-title h2{
    font-size:30px;
}

.history-content p{
    font-size:15px;
}

}


/*==========================
      WHY US SECTION
===========================*/

.why-us-section{
    padding:60px 0;
    background:#ffffff;
}

.why-us-box{

    position:relative;
    overflow:hidden;

    background:linear-gradient(135deg,#fff8f8,#f8f8f8);

    border-radius:30px;

    padding:30px;

    border:1px solid #ececec;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

/* Decorative */

.why-us-box::before{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    background:#ef1d26;

    opacity:.08;

    border-radius:50%;

    top:-100px;
    right:-70px;

}

.why-us-box::after{

    content:"";

    position:absolute;

    width:170px;
    height:170px;

    border:18px solid #ef1d26;

    opacity:.06;

    border-radius:50%;

    bottom:-80px;
    left:-60px;

}

.why-us-heading{

    text-align:center;

    margin-bottom:10px;

    position:relative;
    z-index:2;

}

.why-us-heading span{

    display:inline-block;

    background:#ef1d26;

    color:#fff;

    padding:8px 22px;

    border-radius:30px;

    font-size:12px;

    font-weight:600;

    margin-bottom:15px;

    letter-spacing:1px;

}

.why-us-heading h2{

    font-size:40px;

    font-weight:800;

    color:#222;

    margin:0;

}

.why-us-content{

    position:relative;

    z-index:2;

}

.why-us-content p{

    font-size:16px;

    line-height:1.9;

    color:#555;

    margin-bottom:15px;

}

.why-us-content strong{

    color:#ef1d26;

    font-weight:700;

}


/*==================
Tablet
===================*/

@media(max-width:991px){

.why-us-box{

    padding:50px 35px;

}

.why-us-heading h2{

    font-size:46px;

}

.why-us-content p{

    font-size:18px;

}

}


/*==================
Mobile
===================*/

@media(max-width:767px){

.why-us-section{

    padding:55px 0;

}

.why-us-box{

    padding:35px 22px;

    border-radius:20px;

}

.why-us-heading{

    margin-bottom:25px;

}

.why-us-heading h2{

    font-size:34px;

}

.why-us-heading span{

    font-size:12px;

    padding:7px 18px;

}

.why-us-content p{

    font-size:16px;

    line-height:1.8;

    text-align:left;

}

}

/*=========================
      TEAM SECTION
==========================*/

.team-section{
    padding:90px 0;
    background:#fafafa;
}

.team-heading{
    max-width:850px;
    margin:auto;
    text-align:center;
    margin-bottom:55px;
}

.team-heading span{

    display:inline-block;

    padding:8px 22px;

    background:#ef1d26;

    color:#fff;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.team-heading h2{

    font-size:46px;

    font-weight:800;

    color:#222;

    margin-bottom:15px;

}

.team-heading p{

    font-size:17px;

    line-height:1.8;

    color:#666;

}

/* Card */

.team-card{

    background:#fff;

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    height:100%;

    border:1px solid #eee;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.team-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(239,29,38,.18);

}

/* Avatar */

.team-avatar{

    width:60px;

    height:60px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#ef1d26,#c4121b);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:25px;

    font-weight:800;

    margin-bottom:15px;

    box-shadow:0 12px 30px rgba(239,29,38,.35);

}

.team-card h4{

    font-size:25px;

    font-weight:700;

    color:#222;

    margin-bottom:10px;

}

.team-card p{

    color:#ef1d26;

    font-size:16px;

    font-weight:600;

    margin:0;

}

/* Hover */

.team-card:hover .team-avatar{

    transform:scale(1.08);

    transition:.35s;

}

/* Tablet */

@media(max-width:991px){

.team-section{

    padding:70px 0;

}

.team-heading h2{

    font-size:38px;

}

.team-avatar{

    width:105px;

    height:105px;

    font-size:40px;

}

.team-card h4{

    font-size:24px;

}

}

/* Mobile */

@media(max-width:767px){

.team-section{

    padding:55px 0;

}

.team-heading{

    margin-bottom:35px;

}

.team-heading h2{

    font-size:32px;

}

.team-heading p{

    font-size:15px;

}

.team-card{

    padding:35px 20px;

}

.team-avatar{

    width:90px;

    height:90px;

    font-size:34px;

}

.team-card h4{

    font-size:22px;

}

.team-card p{

    font-size:16px;

}

}

/*==============================
     Mission Vision Section
===============================*/

.mission-vision-section{
    padding:60px 0;
    background:#f8f9fb;
}

.mv-card{

    background:#fff;

    border-radius:24px;

    padding:45px 35px;

    text-align:center;

    height:100%;

    border:1px solid #ececec;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.mv-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(239,29,38,.15);

}

.mv-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:#ef1d26;

}

.mv-icon{

    width:90px;
    height:90px;

    margin:0 auto 25px;

    background:#fff5f5;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;
}

.mv-icon img{

    width:48px;
}

.mv-card h3{

    font-size:25px;

    font-weight:700;

    color:#ef1d26;

    margin-bottom:10px;

}

.mv-card p{

    font-size:19px;

    color:#555;

    line-height:1.8;

    margin:0;

}


/*==================
Tablet
===================*/

@media(max-width:991px){

.mv-card{

    padding:35px 25px;
}

.mv-card h3{

    font-size:34px;
}

.mv-card p{

    font-size:17px;
}

}


/*==================
Mobile
===================*/

@media(max-width:767px){

.mission-vision-section{

    padding:60px 0;
}

.mv-card{

    padding:30px 20px;

    border-radius:18px;
}

.mv-icon{

    width:75px;
    height:75px;
}

.mv-icon img{

    width:40px;
}

.mv-card h3{

    font-size:28px;
}

.mv-card p{

    font-size:16px;

    line-height:1.7;
}

}