@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0059B2;
    --secondary-color: #E9C441;
    --text-body-color: #1A3A34;
    --secondary-dark: #24231D;
    --secondary-extra-dark: #1F1E17;
    --bg-cream: #F7F5F0;
    --bg-cream-rgb: 246, 244, 239;
    --text-dark: #212529;
    --text-gray: #666666;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --outfit: 'Outfit', sans-serif;
    --box-shadow: 0 15px 40px rgba(26, 58, 52, 0.08);

    /* Bootstrap Overrides */
    --bs-primary: var(--primary-color);
    --bs-primary-rgb: 233, 196, 65;
    --bs-secondary: var(--text-body-color);
    --bs-secondary-rgb: 26, 58, 52;
    --bs-body-font-family: var(--outfit);
}

pre {
    font-family: inherit;
    font-size: inherit;
}

.bg-white-opacity-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-warning-light {
    background-color: rgba(233, 196, 65, 0.1);
}

/* About Page Custom Layouts */
.overlap-img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.icon-circle-yellow {
    transition: var(--transition);
}

.icon-circle-yellow:hover {
    transform: scale(1.1) rotate(10deg);
}

.circle-mask {
    box-shadow: 0 0 0 10px rgba(233, 196, 65, 0.1);
}

.story-item .text-warning {
    font-family: var(--outfit);
    line-height: 1;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* Custom Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

@keyframes pulse-yellow {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 196, 65, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(233, 196, 65, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 196, 65, 0);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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


.stats-row .stat-item {
    background-color: var(--bg-cream);
    border: 1px solid var(--bg-cream);
    transition: var(--transition);
}

.stats-row .stat-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.thumb {
    overflow: hidden;
    border-radius: 15px;
}

.thumb img {
    width: 100%;
    height: auto;
}

.half-thumb {
    height: 100%;
}

.about-img-wrap .thumb {
    width: 60%;
}

.happy-cows-img-wrap .thumb {
    width: 85%;
}

.happy-cows-img-wrap {
    position: relative;
}

.happy-cows-img-wrap .thumb.rounded-circle {
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: 3%;
    right: -20px;
    border: 5px solid white;
    z-index: 1;
}

.step-card{
    display: flex;
    text-align: center;
    flex-flow: column;
    align-items: center;
    position: relative;
}
.thumb-container {
    padding: 10px;
    border-style: dashed;
    border-width: 1px;
    border-color: #163A191A;
    border-radius: 15px;
    transition: var(--transition);
    margin-bottom: 1.5rem;
}
.setp-thumb{
    width: 100%;
    display: flex;
    align-items: center;
    height: calc(100% - 50px);
}
.thumb-container:hover{
    transform: scale(1.1);
}
.step-card .thumb {
    background-color: #FFFFFF;
    font-size: 45px;
    padding: 30px;
    border-radius: 15px 15px 15px 15px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.traceability-img-wrap {
    position: relative;
}

.traceability-img-wrap .thumb.rounded-circle {
    width: 300px;
  height: 300px;
  position: absolute;
  top: 30px;
  right: 0;
  border: 2px solid white;
  z-index: 1;
}

.ourfarm-img-wrap .thumb {
    width: 48%;
}
.ourfarm-img-wrap .img-with-mt{
    margin-top: -40%
}
@media screen and (max-width: 1199px) {
    .ourfarm-img-wrap .img-with-mt{
        margin-top: -56%
    }
}
@media screen and (max-width: 991px) {
    .ourfarm-img-wrap {
        display: flex;
        justify-content: space-between;
    }
    .ourfarm-img-wrap .ms-auto{
        margin-left: 0!important;
    }
    .ourfarm-img-wrap .img-with-mt{
        margin-top: 0%
    }
}
@media screen and (max-width: 767px) {
    .ourfarm-img-wrap {
        flex-direction: column;
    }
    .ourfarm-img-wrap .thumb{
        width: 100%;
    }
    .ourfarm-img-wrap .ms-auto{
        margin-bottom: 2rem!important;
    }
}

.trace-img-wrap {
    text-align: center;
}

.trace-img-wrap .thumb {
    background-color: var(--secondary-color);
    border-radius: 15px;
    width: 100%;
    height: inherit;
    position: relative;
}
.trace-img-wrap .thumb::after{
    content: counter(trac-counter);
    counter-increment: trac-counter;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 5rem;
    color: var(--bs-warning);
    opacity: 0.7;
    line-height: 0;
}


.trace-step {
    transition: var(--transition);
}

.trace-step:hover {
    color: var(--secondary-color);
}

.ceo-quote {
    border: 1px solid rgba(233, 196, 65, 0.1);
}

/* Global Reset & Base Styles */
body {
    font-family: var(--outfit);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-cream {
    background-color: var(--bg-cream);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--outfit);
    font-weight: 500;
    color: var(--text-body-color);
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Typography Utilities */
.section-title {
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 3rem;
    position: relative;
    /* padding-bottom: 1rem; */
}
@media (max-width: 1199px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
}
@media (max-width: 767px) {
    .section-title h2 {
        font-size: 2rem;
    }
}

/* Button Styles */
.btn-premium {
    overflow: hidden;
    line-height: 2;
    font-weight: 500;
    padding: 6px 6px 6px 30px;
    position: relative;
    width: auto;
    height: auto;
    color: var(--bs-dark);
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    background: var(--secondary-color);
    gap: 10px;
    text-decoration: none;
    border-radius: 3rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-premium i {
    margin-left: 10px;
    position: relative;
    height: 30px;
    width: 30px;
    font-size: 17px;
    background-color: var(--bs-dark);
    color: var(--white);
    border-radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transform: rotate(-45deg);
    transition: var(--transition);
}

.btn-premium:hover {
    background-color: var(--bs-dark);
    color: var(--white);
}

.btn-premium:hover i {
    background-color: var(--secondary-color);
    transform: rotate(0deg);
    color: var(--bs-dark);
}

.btn-premium.pulse {
    animation: pulse-yellow 2s infinite;
}

.btn-premium.active {
    background-color: var(--text-body-color);
    color: var(--white);
}

.btn-premium.active i {
    background-color: var(--secondary-color);
    color: var(--text-body-color);
    transform: rotate(0deg);
}
.hero-btn.btn-premium {
    padding-top: 10px;
    padding-bottom: 10px;
}

.btn {
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    border-radius: 3rem;
    padding: 6px 6px 6px 30px !important;
    position: relative;
    gap: 10px;
    transition: var(--transition);
}

.btn i {
    margin-left: 10px;
    position: relative;
    height: 30px;
    width: 30px;
    font-size: 17px;
    background-color: var(--text-body-color);
    color: var(--white);
    border-radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transform: rotate(-45deg);
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--text-body-color);
    color: var(--white);
}

.btn:hover i {
    background-color: var(--secondary-color);
    transform: rotate(0deg);
    color: var(--text-body-color);
}

.btn.pulse {
    animation: pulse-yellow 2s infinite;
}

.btn.active {
    background-color: var(--text-body-color);
    color: var(--white);
}

.btn.active i {
    background-color: var(--secondary-color);
    color: var(--text-body-color);
    transform: rotate(0deg);
}


.btn-outline {
    border: 2px solid var(--text-body-color);
    color: var(--text-body-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.btn-outline:hover {
    background-color: var(--text-body-color);
    color: var(--white);
}

/* Spacing Utilities */
.section-padding {
    padding: 2rem 0;
    position: relative;
}

.wav-top-section {
    padding-top: 150px;
}

.wave-bottom {
    padding-bottom: 150px;
}

.section-padding-with-wave {
    padding: 100px 0 180px;
    position: relative;
}

.home-hero-slider {
    overflow: hidden;
}
.hero-slide {
    position: relative;
    height: calc(100vh);
    display: block !important;
    overflow: hidden;
}
.hero-slide-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1);
    transition: transform 6s linear;
}
.slick-active .hero-slide-bg {
    transform: scale(1.1);
}
.hero-slide .container {
    height: 100%;
    position: relative;
    z-index: 1;
}
@media(max-width: 1199px){
    .hero-slide{
        height: 70vh;
    }
}

/* Slick Slider Custom Styles */
.slick-dots {
    bottom: 30px;
}
.slick-dots li button:before {
    color: var(--white);
    font-size: 12px;
}
.slick-dots li.slick-active button:before {
    color: var(--secondary-color);
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.home-hero-slider:hover .custom-arrow {
    opacity: 1;
    visibility: visible;
}
.home-hero-slider:hover .slick-prev.custom-arrow {
    left: 30px;
}
.home-hero-slider:hover .slick-next.custom-arrow {
    right: 30px;
}
.custom-arrow:before{
    content: "";
    display: none;
}
.custom-arrow:after{
    content: "";
    display: none;
}
.custom-arrow:hover {
    background: var(--secondary-color);
    color: var(--text-body-color);
}
.slick-prev.custom-arrow {
    left: -20px;
}
.slick-next.custom-arrow {
    right: -20px;
}
.hero-content-section{
    position: relative;
}
@media(max-width: 1199px){
    .hero-content-section h2{
        width: 100%!important;
    }
}
@media(max-width: 991px){
    .hero-content-section p{
        width: 100%!important;
    }
}
.hero-content-section::before {
  content: "";
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0) 70%);
  position: absolute;
  top: -20%;
  left: -10%;
  width: 100%;
  height: 140%;
  z-index: -1;
  pointer-events: none;
}

/* Animations for active slide text */
.hero-content-section h2,
.hero-content-section p,
.hero-content-section .hero-btn.btn-premium {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.slick-active .hero-content-section h2 {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.3s;
}

.slick-active .hero-content-section p {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.6s;
}

.slick-active .hero-content-section .hero-btn.btn-premium {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.9s;
}


.traceability-section {
    position: relative;
}
.traceability-section .container {
    position: relative;
    z-index: 1;
}

.story-section {
    background-image: url(../images/other-images/bottom-gradient-img.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    padding-bottom: 320px;
}
.story-section-2 {
    background-image: url(../images/other-images/bottom-gradient-img-2.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    padding-bottom: 320px;
}
@media (max-width: 1399px) {
    .story-section-2{
        padding-bottom: 250px;
    }
}
@media (max-width: 991px) {
    .story-section-2{
        padding-bottom: 120px;
    }
}
.story-section-about-page {
    background-image: url(../images/other-images/bottom-gradient-about-img.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    padding-bottom: 450px;
}
@media (max-width: 1399px) {
    .story-section-about-page {
        padding-bottom: 350px;
    }
}
@media (max-width: 1199px) {
    .story-section-about-page {
        padding-bottom: 280px;
    }
}
.story-section-product-quality-page {
    background-image: url(../images/other-images/bottom-img-product-quality.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    padding-bottom: 330px;
}

/* Story Section — sticky left, scrollable right */
.story-left-sticky {
    position: sticky;
    top: 130px;
    align-self: flex-start;
}
@media (max-width: 991px) {
    .story-left-sticky {
        position: static;
        margin-bottom: 1rem;
    }
}

.story-right-scroll {
    max-height: 85vh;
    overflow-y: auto;
    padding-right: 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) transparent;
}

.story-right-scroll::-webkit-scrollbar {
    width: 4px;
}

.story-right-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.story-right-scroll::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
    border-radius: 4px;
}

.buttom-images-section {
    background-image: url(../images/other-images/bottom-gradient-img.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    padding-bottom: 380px;
}
.farm-story-section {
    background-image: url(../images/other-images/farm-story-bg-img.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    padding-bottom: 380px;
}
@media (max-width: 1399px) {
    .buttom-images-section{
        padding-bottom: 300px;
    }
    .farm-story-section {
        padding-bottom: 300px;
    }
}
@media (max-width: 1199px) {
    .buttom-images-section{
        padding-bottom: 250px;
    }
    .farm-story-section {
        padding-bottom: 250px;
    }
}

.sub-page-hero-section {
    background-size: cover;
    background-position: center;
    background-color: rgba(26, 58, 52, 0.5);
    padding: 0 0 15%;
    height: 100vh;
}
@media (max-width: 1199px) {
    .sub-page-hero-section {
        height: 70vh;
    }
}
.sub-page-hero-section .container{
    display: flex;
    align-items: flex-end;
    height: 100%;
}
.sub-page-hero-section h1 {
    color: var(--white);
    font-size: 3rem;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);
    font-weight: bold;
    width: 58%;
    margin: 0;
    position: relative;
    z-index: 1;
}
.farm-page .sub-page-hero-section h1 {
    width: 68%;
}
.product-quality-page .sub-page-hero-section h1 {
    width: 52%;
}
.sustainability-page .sub-page-hero-section h1 {
    width: 40%;
}

.sub-page-hero-section h1:before {
    content: "";
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.65) 0,rgba(0,0,0,0) 65%);
    position: absolute;
    top: -20%;
    left: -13%;
    width: 100%;
    height: 140%;
    z-index: -1;
}
@media (max-width: 1199px) {
    .sub-page-hero-section h1 {
        width: 100%;
        font-size: 2.5rem;
    }
    .farm-page .sub-page-hero-section h1 {
        width: 100%;
    }
    .product-quality-page .sub-page-hero-section h1 {
        width: 100%;
    }
    .sustainability-page .sub-page-hero-section h1 {
        width: 100%;
    }
}
@media (max-width: 991px) {
    .sub-page-hero-section h1 {
        font-size: 2rem;
    }
    .farm-page .sub-page-hero-section h1 {
        font-size: 2rem;
    }
    .product-quality-page .sub-page-hero-section h1 {
        font-size: 2rem;
    }
    .sustainability-page .sub-page-hero-section h1 {
        font-size: 2rem;
    }
}

/* Header & Navigation */
.main-header {
    background: white;
    position: absolute;
    border-bottom: 1px solid var(--bs-gray-200);
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 10px 0;
}

@media (min-width: 1699px) {
    .main-header .container-fluid {
      padding: 0 6%;
    }
}

.main-header.sticky {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
}

.main-header.header-white .nav-link {
    color: var(--text-body-color) !important;
}

.main-header:not(.sticky):not(.header-white) .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-brand {
    font-family: var(--outfit);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-body-color) !important;
    padding: 0;
}
.navbar-brand img {
    max-height: 83px;
}
.main-header:not(.sticky) {
    background: linear-gradient( to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0) 100% );
    border-bottom: none !important;
}
.main-header:not(.sticky) .nav-link {
    color: var(--white) !important;
}
.navbar-brand .logo-white {
    display: none !important;
}
.navbar-brand .logo-dark {
    display: inline-block !important;
}

.main-header:not(.sticky) .navbar-brand .logo-white {
    display: inline-block !important;
}
.main-header:not(.sticky) .navbar-brand .logo-dark {
    display: none !important;
}
@media (min-width: 992px) and (max-width: 1300px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 5px;
    padding-left: 5px;
    margin: 0 5px;
    font-size: 0.8rem;
  }
}

.nav-link {
    font-weight: 500;
    color: var(--text-body-color) !important;
    margin: 0 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary-color) !important;
}

@media (min-width: 992px) and (max-width: 1698px) {
    .navbar-brand img {
        max-height: 73px;
    }
}

/* Hero Section Redesign */
.hero-section {
    height: auto;
    min-height: 100vh;
    background: var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 180px;
    overflow: hidden;
    margin-bottom: 5rem;
}

.hero-floating-cheese {
    position: absolute;
    top: 50px;
    left: -20px;
    width: 120px;
    z-index: 2;
    transform: rotate(-15deg);
}

.hero-cow-outline {
    position: absolute;
    top: 13%;
    right: 8%;
    width: 26%;
    opacity: 0.1;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.sustaiability-cow {
    position: absolute;
    top: 4%;
    right: 9%;
    width: 25%;
    opacity: 0.1;
    z-index: 1;
}

.cow-stand-top-right {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    position: absolute;
    width: 20%;
    top: 10%;
    right: 0;
    opacity: 0.1;
}
.cow-stand-top-right img {
    width: 100%;
}
.cow-stand-top-left {
    position: absolute;
    width: 20%;
    top: 10%;
    left: 0;
    opacity: 0.1;
}
.cow-stand-top-left img {
    width: 100%;
}
.cow-stand-bottom-left {
    position: absolute;
    width: 20%;
    bottom: 10%;
    left: 0;
    opacity: 0.1;
}
.cow-stand-bottom-left img {
    width: 100%;
}
.cow-stand-section {
    width: 70%;
    opacity: 0.1;
}
.cow-stand-section img {
    width: 100%;
}

.cow-stand-img-wrap {
    position: absolute;
    width: 20%;
    top: 3%;
    left: 0;
    opacity: 0.1;
}

.cow-stand-img-wrap img {
    width: 100%;
}

@media (max-width: 1399px) {
    .circle-img-wrap .img-effect {
        width: inherit !important;
        aspect-ratio: inherit !important;
    }
}

.quick-stats-card {
    background-color: rgb(var(--bg-cream-rgb), 0.5);
    margin: 0;
    padding: 25px;
    border-radius: 15px;
    transition: var(--transition);
    height: 100%;
}

.quick-stats-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
}

.quick-stats-card .quick-stats-card-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-flow: column;
    text-align: center;
}

.quick-stats-card .quick-stats-thumb {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
}

.story-timeline {
    position: relative;
    overflow: hidden;
    padding: 30px 30px;
    background-color: var(--bg-cream);
    border-radius: 1rem;
    transition: var(--transition);
    margin-bottom: 30px;
}

.story-timeline .timeline-year {
    background-color: var(--secondary-color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.story-timeline p {
    margin-bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding-left: 50px;
    padding-bottom: 50px;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-tagline::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-body-color);
    font-family: var(--outfit);
}

.btn-hero {
    background-color: var(--secondary-color);
    color: var(--text-body-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.btn-hero .icon-circle {
    background: var(--text-body-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.hero-image-container {
    background-size: cover;
    width: 100%;
    position: relative;
    height: 680px;
    display: flex;
    padding: 194px 0 130px;
}

.hero-main-img {
    width: 100%;
    display: block;
}

.hero-wave-divider {
    transform: rotate(180deg);
    position: absolute;
    bottom: -1px;
    direction: ltr;
    left: 0;
    overflow: hidden;
    z-index: 4;
    width: 100%;
}

.hero-wave-divider.wave-top {
    bottom: inherit;
    top: -1px;
    transform: rotate(0deg);
}

.hero-wave-divider img {
    width: calc(100% + 1.3px);
    height: 100px;
    display: block;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

.img-effect {
    position: relative;
    overflow: hidden;
}

.img-effect:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.img-effect:hover::after {
    height: 250%;
    transition: all 0.5s linear !important;
    background-color: transparent;
}

blockquote {
    padding-bottom: 20px;
}
blockquote .quote-author-text {
    position: relative;
    font-size: 1rem;
    font-weight: normal;
    right: 171px;
    top: 30px;
    color: var(--bs-gray-600);
}
@media (max-width: 1399px) {
    blockquote {
        padding-bottom: 0;
    }
    blockquote .quote-author-text {
        right: inherit;
        top: inherit;
        text-align: end;
        display: inline-block;
        width: 100%;
    }
}
@media (max-width: 991px) {
    blockquote {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
}

/* Card Styles */
.simple-card {
    transition: var(--transition);
    margin-bottom: 30px;
}

.simple-card .img-wrapper {
    overflow: hidden;
    height: 350px;
    border-radius: 15px;
}

.simple-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.simple-card-with-bg {
    background: var(--bg-cream);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(26, 58, 52, 0.15);
}

.product-card .card-body {
    padding: 2rem;
    text-align: center;
}

.product-card .price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.who-we-are-card {
    /* background-color: #163A19; */
    background-color: #0059B2;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.who-we-are-card:before {
    content: '';
    background-image: url(../images/home-images/cow-bg-1920-500.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.3;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
}

.icon-wrap {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    transition: var(--transition);
}

.feature-box:hover .icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.icon-wrap img {
    width: 100%;
}

.we-track-card {
  border: 1px solid var(--bs-border-color);
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: white;
  height: 100%;
}

.minimalist-value-card {
    background: var(--bg-cream);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    flex-flow: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.minimalist-value-card:hover {
    transform: translateY(10px);
}

.minimalist-value-card .icon-box {
    color: var(--bs-warning);
    font-size: 2.5rem;
    transition: var(--transition);
}

.minimalist-value-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.minimalist-value-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-gray);
}

/* Features Section */
.feature-box {
    /* background: var(--bg-cream); */
    /* padding: 40px;
    border-radius: 15px;
    height: 100%; */
    transition: var(--transition);
    padding: 0 30px;
}

/* .feature-box:hover {
    background: var(--text-body-color);
    color: var(--white);
}

.feature-box:hover h3 {
    color: var(--white);
} */

.contact-icon{
    font-size: 1.5rem;
    margin: 0 0.8rem 0 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--white);
}

/* Footer */
footer {
    background: var(--secondary-dark);
    color: var(--white);
    padding-top: 4rem;
}

footer h4 {
    color: var(--white);
    margin-bottom: 2rem;
    position: relative;
}

footer h4:after,
footer h4:before {
    content: '';
    position: absolute;
    width: 45px;
    height: 3px;
    left: 0;
    background-color: var(--secondary-color);
    bottom: -15px;
    color: var(--secondary-color);
}

footer h4:after {
    width: 3px;
    left: 49px;
}

.footer-links li {
    padding-left: 1.6rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.footer-links li i {
    position: absolute;
    left: 0;
    top: 5px;
}

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

.quick-links li {
    padding-left: 30px;
}

.quick-links li::before {
    content: "";
    background-image: url(../images/icons/cow-white-icon.png);
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    width: 20px;
    height: 20px;
    background-size: contain;
    left: 0;
    top: 2px;
}

.copyright {
    background-color: var(--secondary-extra-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 50px;
}

/* Animations */
[data-aos] {
    transition-duration: 800ms !important;
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

.our-process-area h6 {
    color: #F7C35F;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.our-process-area h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1F4E3D;
    margin-bottom: 40px;
}

.process-grid {
    display: flex;
    gap: 30px;
}

.process-card {
    position: relative;
    border-radius: 15px;
    height: 400px;
    flex: 1;
}

.process-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    /* filter: brightness(0.75); */
}

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

/* .process-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
} */

.process-card .info {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: var(--transition);
}
.process-card .info  h4 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.process-card:hover .info {
    padding-bottom: 0.5rem;
}
.process-card:hover .info h4 {
  color: var(--secondary-color);
}




@media (min-width:1200px) and (max-width: 1399px) {
    
}
@media (max-width: 991px) {
    .hero-section{
        min-height: auto;
    }
    .hero-content {
        padding-left: 0;
        padding-bottom: 0;
    }
    .hero-cow-outline {
        top: 110px;
        right: 10px;
        width: 22%;
    }
    .hero-image-container {
        height: 350px;
    }
    blockquote {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
    .process-grid {
        display: inline-block;
        vertical-align: top;
    }
    .process-card {
        width: 45%;
        float: left;
        margin: 0 2.5%;
    }
    .story-section {
        padding-bottom: 200px;
    }
    .buttom-images-section, .farm-story-section {
        padding-bottom: 200px;
    }
}