@import url('https://fonts.googleapis.com/css2?family=Montagu+Slab:opsz,wght@16..144,100..700&display=swap');


/*==========Common CSS Start==========*/
:root {
    --primary-color: #A6C48A;
    --bg-color: #FFF9F4;
    --white-color: #ffffff;
    --black-color: #000000;
    --dark-color: #011312;
    --body-font: "Poppins", sans-serif;
    --title-font: "Montagu Slab", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background:var(--bg-color);
    min-height: 300vh;
}

/* Header Styles */
.site-header {
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding img {
    height: 50px;
    width: auto;
}

.site-branding a {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    text-decoration: none;
}

.header-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation ul li a {
    text-decoration: none;
    font-size: 18px;
    line-height: 1.3;
    color: var(--black-color);
    font-family: var(--body-font);
    font-weight: 600;
    transition: 0.3s;
    padding: 8px 15px;
    display: block;
}

.main-navigation ul li a:hover,
.main-navigation ul li.active a {
    color: var(--primary-color);
}

.toggle-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.toggle-button span,
.toggle-button span::before,
.toggle-button span::after {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.toggle-button span::before,
.toggle-button span::after {
    content: '';
    position: absolute;
}

.toggle-button span::before {
    transform: translateY(-8px);
}

.toggle-button span::after {
    transform: translateY(8px);
}

.toggle-button.active span {
    background: transparent;
}

.toggle-button.active span::before {
    transform: rotate(45deg);
}

.toggle-button.active span::after {
    transform: rotate(-45deg);
}

.header-btn {
    display: flex;
    gap: 15px;
}

.header-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}


.header-btn a .icon i {
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toggle-button {
        display: flex;
        position: relative;
    }

    .mobile-menu-box {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .mobile-menu-box.active {
        left: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .main-navigation ul li {
        border-bottom: 1px solid #eee;
    }

    .main-navigation ul li a {
        padding: 15px 10px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-box {
        display: block !important;
    }
}

.hero-section {
    height: 100vh;
    position: relative;
    background: var(--bg-color);
    padding-top: 35px; /* Account for fixed header */
}

.parallax-image {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%) rotate(-30deg);
    width: 600px;
    transition: all 0.5s ease-out;
    z-index: 10;
}

.parallax-image.scrolling {
    transform-origin: center center;
}

.parallax-image.in-section {
    width: 600px;
    height: auto;
    border-radius: 15px;
    z-index: 5;
    top: 50%;
    bottom: auto;
}

.content-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.content-section.visible {
    opacity: 1;
    pointer-events: auto;
}

.text-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #333;
    z-index: 3;
    pointer-events: none;
    transition: all 0.3s ease-out;
}

.text-overlay h1 {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.text-overlay p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.content-layout {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    padding: 0 50px;
    gap: 20px;
}

.center-image {
    width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.left-content,
.right-content {
    flex: 1;
    max-width: 600px;
}

.scroll-spacer {
    height: 200vh;
}

.third-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.third-section.visible {
    opacity: 1;
    pointer-events: auto;
}

.third-content {
    max-width: 800px;
    color: #333;
}

.third-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #667eea;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.third-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.parallax-image.in-third-section {
    width: 600px;
    height: auto;
    top: auto;
    left: auto;
    right: 40px;
    bottom: 40px;
    transform: rotate(330deg);
    border-radius: 10px;
    z-index: 3;
}






.circle {
  position: absolute;
  left: 50%;
  bottom: -65%;
  width: 55vw;
  height: 55vw;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translateX(-50%) scale(1);
  transform-origin: center;
}
.h1-title {
    font-size: 131px;
    line-height: 120px;
    color: var(--secondary-color);
    font-weight: bold;
    font-family: var(--title-font);
    text-transform: capitalize;
    text-align: center;
    height: 120px;
    position: relative;
    overflow: hidden;
    letter-spacing: 15px;
    z-index: 0;
}
.h1-title div {
    z-index: 2;
    position: relative;
}
.banner-content p {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 33px;
    font-family: var(--title-font);
    color: black;
    margin-top:50px;
}
.content-section h2 {
	font-size:52px;
	color:var(--black-color);
	font-family:var(--title-font) ;
}
.content-section p {
	font-size: 22px;
	line-height: 1.4em;
	font-family:var(--title-font) ;
}

.circle-menu-box {
	width:100%;
	height: 500px;
	position:relative;
    bottom: 0;
    z-index: -1;
}
.circle-menu-box a.menu-item {
	display: block;
	text-decoration: none;
	border-radius: 100%;
	margin:0 20px;
	text-align: center;
	color:var(--black-color);
	padding: 0;
	line-height:1;
	position: absolute;
	font-size: 24px;
    font-family: var(--title-font);
    font-weight: bold;
}
.circle-menu-box a.menu-item img {
	width:100px;
	height:100px;
}
.circle-menu-box a.menu-item:nth-child(1) {
    left:81% !important;
}

.circle-menu-box a.menu-item:nth-child(2) {
    left:63% !important;
}

.circle-menu-box a.menu-item:nth-child(3) {
    left:44% !important;
}

.circle-menu-box a.menu-item:nth-child(4) {
    left:22% !important;
}

.circle-menu-box a.menu-item:nth-child(5) {
    left:2% !important;
}
h1.menu {
    font-size: 128px;
    color: var(--black-color);
    text-align: center;
    font-weight: bold;
    font-family: var(--title-font);
}
.sec-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 100%;
    height: 60px;
    background: var(--black-color);
    border-radius: 40px;
    font-size: 15px;
    line-height: 1.3;
    color: var(--white-color);
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 5px 34px;
    text-decoration: none;
    border: none;
    transition: 0.5s;
}
.five-cols > .col {
  flex: 0 0 20%;
  max-width: 20%;
}
.item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.item p { 
    font-size: 18px;
    color: var(--black-color);
    text-align: center;
    font-weight: bold;
    font-family: var(--title-font);
}

.item  p span { 
    font-size: 18px;
    color: #FF8D28;
    text-align: center;
    font-weight: bold;
    font-family: var(--title-font);
}
.item img {
    width:230px; height: auto;
}
.last-section h1 { 
    font-size: 132px;
    color: var(--black-color);
    text-align: left;
    font-weight: bold;
    font-family: var(--title-font);
    margin-top: 7vh;;
}
.circle-menu-box p { font-size:18px;}
.last-section p { 
    font-size: 24px;
    color: var(--black-color);
    text-align: left;
    font-weight: bold;
    font-family: var(--title-font);
    line-height:2.2rem;
}

.last-section  p span { 
    font-size: 14px;
    color: var(--black-color);
    text-align: center;
    font-weight: bold;
    font-family: var(--title-font);
}
.section-bg {
  width: 82%;
  height: 110px;
  margin-top:20vh;
  background:
    radial-gradient(
      circle at top right,
      transparent 120px,
      #b7d19a 121px
    );
}

.section-bg p {
    font-size: 16px;
    text-align: center;
    margin: 27px;
    line-height: 1.8em;
}
.out_circle {
    width: 57vw;
    position: absolute;
    height: 106vh;
    margin-left: 14vw;
    margin-top: 7vh;
    border-radius: 50%;
    border: 2px solid transparent;
    /*background: linear-gradient(#fff9f4, #fff9f4) padding-box, linear-gradient(334deg, #4a6630, #a6c48a00) border-box;*/
	background: linear-gradient(#fff9f4, #fff9f4) padding-box, linear-gradient(345deg, #8baa6f 20% 0%, #8baa6f 40%, #a6c48a00 95%) border-box;
}
.out_circle::inside {
  background: transparent;
}




/* Fourth Section Styles */
.fourth-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
}

.fourth-section.visible {
    opacity: 1;
    pointer-events: auto;
}

.products-layout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.product-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.center-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 150px;
    background: #667eea;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 50px;
    color: white;
}

.product-card h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.section-image-in-grid {
    width: 280px;
    height: 380px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
    .products-layout {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .center-image-col {
        grid-column: 2;
    }
    
    .product-col:nth-child(4),
    .product-col:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .center-image-col {
        grid-column: 1;
        order: 3;
    }
}

/* Fifth Section Styles */
.fifth-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
    flex-direction: column;
}

.fifth-section.visible {
    opacity: 1;
    pointer-events: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.image-box img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.content-box {
    padding-left: 40px;
}

.section-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #667eea;
    margin-right: 15px;
    font-size: 1.2rem;
}

.btn-custom {
    display: inline-block;
    padding: 12px 35px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-custom:hover {
    background: #5568d3;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .content-box {
        padding-left: 0;
        margin-top: 30px;
    }

    .section-title {
        font-size: 2rem;
    }
}

.third-content {
    max-width: 800px;
    color: #333;
}

.third-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #667eea;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.third-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.parallax-image.in-third-section {
    width: 600px;
    height: auto;
    top: auto;
    left: auto;
    right: 5px;
    margin-bottom: -430px;
    margin-right: -170px;
    transform: rotate(330deg);
    z-index: 3;
}
.background-circle {
    position: absolute;
    bottom: -65%;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 55vw;
    height: 55vw;
    border-radius: 50%;
    background: var(--primary-color);
    z-index: 1;
    transition: none;
    transform-origin: center;
}




@media(max-width:768px) {
    .header-btn { display: none; }
    .header-menu { justify-content: flex-end; }
    .h1-title {
        font-size: 48px;
        line-height: 50px;
        height: 50px;
        letter-spacing: 7px;
    }
    .banner-content p {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 20px;
        margin-top: 20px;
        text-align: center;
    }
    .parallax-image { width: 400px; }
    .background-circle {
        bottom: -16%;
        width: 105vw;
        height: 105vw;
    }
    .out_circle {
        width: 113vw;
        height: 47vh;
        margin-left: -11vw;
        margin-top: 31vh;
    }
    .hero-section .parallax-image {
        width: 400px !important;     /* mobile size */
        left: 50% !important;
        top: 90% !important;         /* move down a bit */
        bottom: auto !important;
        right: auto !important;
        margin-top: 0 !important;
        transform: translate(-50%, -50%) rotate(-30deg) scale(1) !important;
    } 
    .center { width: 100% !important; }
    .center-product{ display: block !important; width:300px; }
    .content-section { height: 200vh !important; }

    .content-layout {padding: 10px !important;  }
    .content-section, .fourth-section, .hero-section, .fourth-section, .fifth-section { 
        padding: 10px !important; 
        /*text-align: center !important; 
        min-height: 100vh;
        min-height: 100svh;
        position:static !important;*/
    }
    /*.scroll-spacer {
        height: 10vh;
    }*/



    .content-layout p { text-align: center !important; font-size: 16px !important; }
    .circle-menu-box a.menu-item img { width: 50px !important; height: 50px !important; }
    .circle-menu-box p { font-size: 12px !important; font-weight: 500; }
    .circle-menu-box a.menu-item { margin: 0 10px !important; width:20%; }
    .circle-menu-box a.menu-item:nth-child(1) { left: 74% !important;}
    .circle-menu-box a.menu-item:nth-child(2) { left: 58% !important;}
    .circle-menu-box a.menu-item:nth-child(3) { left: 37% !important;}
    .circle-menu-box a.menu-item:nth-child(4) { left: 16% !important;}
    .circle-menu-box a.menu-item:nth-child(5) { left: 0% !important;}
    .mob_btn { display: block !important;}
    .des_btn { display: none !important; }
    .topsec {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .sec-btn { height: 40px; padding: 10px 20px; }

    .products-layout {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 5px 3px;
    align-items: center;
    }

    /* Reset flex gap issues */
    .product-col,
    .center-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    }

    /* Order items visually */
    .products-layout > .product-col:nth-child(1) {
    order: 1; /* Mango */
    }

    .products-layout > .product-col:nth-child(2) {
    order: 2; /* Strawberry */
    }

    .center-image-col {
    order: 3;
    grid-column: 1 / -1; /* CENTER full width */
    text-align: center;
    }

    .products-layout > .product-col:nth-child(4) {
    order: 4; /* Venilla */
    }

    .products-layout > .product-col:nth-child(5) {
    order: 5; /* Blueberry */
    }

    /* Image sizing for mobile */
    .products-layout img {
    width: 120px;
    max-width: 100%;
    height: auto;
    }

    /* Text alignment */
    .products-layout p {
    text-align: center;
    margin-top: 2px;
    }

    .products-layout span {
    color: orange;
    font-weight: 600;
    }
    .last-section h1 {
        font-size: 46px !important; text-align: center;
    }
    .section-bg p {
        font-size: 9px;
        text-align: center;
        margin: 20px 4px;
        line-height: 1.8em;
        width: 70%;
    }
    .section-bg {
        width: 103% !important;
        height: 86px;
        margin-top: 3vh;
        background: radial-gradient(circle at top right, transparent 119px, #b7d19a 122px);
        position: fixed;
        bottom: 0;
    }
    .item p, .item span {
        font-size: 14px !important;
    }
    .btmtxt {
        font-size: 14px !important;
        width: 40%;
        line-height: 1.5em !important;
        margin-top: 25vh;
        font-weight: 500 !important;
    }
    .contact { display: block !important; font-size: 12px !important; }
    .contact i { color:var(--primary-color); }

    .parallax-image {
        width: 240px !important;     /* mobile size */
        left: 50% !important;
        top: 55% !important;         /* move down a bit */
        bottom: auto !important;
        right: auto !important;
        margin-top: 0 !important;
        transform: translate(-50%, -50%) rotate(0deg) scale(1) !important;
    }

    /* If image jumps in later sections */
    .parallax-image.in-section {
        width: 290px !important;
        transform: translate(-50%, -132%) rotate(0deg) scale(1) !important;
        margin-top: -300px;
    }

    /* Final section position */
    .parallax-image.in-third-section {
        right: 62px !important;
        bottom: 265px !important;
        top: auto !important;
        left: auto !important;
        transform: rotate(-20deg) scale(0.9) !important;
        width: 430px !important;
    }

    /* 🔹 3rd section position */
    .section-3 .parallax-image {
        width: 220px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(0deg) scale(0.9);
    }

    /* 🔹 4th section position */
    .section-4 .parallax-image {
        width: 200px;
        top: auto;
        bottom: 60px;
        left: auto;
        right: 20px;
        transform: rotate(0deg) scale(0.85);
    }
}
