/* ===============================
   GLOBAL RESET
================================ */

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


body {

    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background: #ffffff;
    line-height: 1.6;

}


html {

    scroll-behavior: smooth;

}



img {

    max-width: 100%;
    display: block;

}



a {

    text-decoration: none;
    color: inherit;

}







/* ===============================
   COLOR SYSTEM
================================ */


:root {

    --primary-green: #174d2b;
    --dark-green: #10361e;
    --gold: #c89b3c;
    --light-gold: #e8c878;
    --text-dark: #222;
    --white: #ffffff;

}







/* ===============================
   NAVBAR
================================ */


header {

    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;

}



.navbar {

    width: 90%;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 0;

}





.logo-area {

    display: flex;
    align-items: center;
    gap: 15px;

}




.logo-area img {

    width: 75px;
    height: auto;

}




.company-name h2 {

    font-size: 20px;
    color: var(--white);
    font-weight: 700;

}



.company-name p {

    font-size: 13px;
    color: var(--white);
    opacity: 0.9;

}






.nav-links {

    display: flex;
    list-style: none;
    gap: 28px;

}




.nav-links a {

    color: var(--white);
    font-size: 15px;
    font-weight: 500;

    transition: 0.3s;

}




.nav-links a:hover {

    color: var(--light-gold);

}


/* ===============================
   HERO SECTION
================================ */


.hero {

    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 140px 8% 80px;

    overflow: hidden;

}



/* Background coconut tree blur */


.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
    linear-gradient(
        rgba(15, 50, 30, 0.75),
        rgba(15, 50, 30, 0.65)
    ),
    url("jomonkoikkara-coconut-tree-1538034_1920.jpg");


    background-size: cover;

    background-position: center;

    filter: blur(1px);

    transform: scale(1.05);

    z-index: -2;

}




.hero::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        90deg,
        rgba(10,40,20,0.8),
        rgba(10,40,20,0.15)
    );


    z-index: -1;

}





.hero-content {

    width: 50%;

    color: white;

}





.hero-content h1 {

    font-size: 52px;

    line-height: 1.2;

    margin-bottom: 25px;

    font-weight: 700;

}





.hero-content p {

    font-size: 18px;

    max-width: 600px;

    margin-bottom: 35px;

    color: rgba(255,255,255,0.9);

}





.hero-buttons {

    display: flex;

    gap: 20px;

}






.btn-primary {

    display: inline-block;

    background: var(--gold);

    color: white;

    padding: 14px 32px;

    border-radius: 30px;

    font-weight: 600;

    transition: 0.3s;

}





.btn-primary:hover {

    transform: translateY(-3px);

}





.btn-secondary {

    display: inline-block;

    border: 1px solid white;

    color: white;

    padding: 14px 32px;

    border-radius: 30px;

    transition: 0.3s;

}





.btn-secondary:hover {

    background: white;

    color: var(--primary-green);

}







.hero-image {

    width: 42%;

    position: relative;

}





.hero-image img {

    width: 100%;

    max-width: 520px;

    margin: auto;

    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.35));

   }

   /* ===============================
   INTRO SECTION
================================ */


.intro-section {

    padding: 90px 8%;
    background: #ffffff;

}


.section-title {

    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;

}


.section-title h2 {

    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 15px;

}


.section-title p {

    color: #666;
    font-size: 17px;

}



.intro-content {

    display: flex;
    align-items: center;
    gap: 50px;

}


.intro-image {

    width: 45%;

}


.intro-image img {

    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);

}



.intro-text {

    width: 55%;

}


.intro-text h3 {

    font-size: 30px;
    color: var(--primary-green);
    margin-bottom: 20px;

}


.intro-text p {

    color: #555;
    margin-bottom: 20px;

}





/* ===============================
   ADVANTAGES
================================ */


.advantages-section {

    padding: 80px 8%;
    background: #f8f7f2;
    text-align: center;

}



.advantages-section h2 {

    color: var(--primary-green);
    font-size: 36px;
    margin-bottom: 50px;

}



.advantages-container {

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;

}



.advantage-card {

    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

}



.advantage-card h3 {

    color: var(--gold);
    margin-bottom: 15px;

}







/* ===============================
   PRODUCT SPECIFICATION
================================ */


.product-summary {

    padding: 90px 8%;
    text-align: center;

}



.product-summary h2 {

    color: var(--primary-green);
    font-size: 36px;
    margin-bottom: 45px;

}



.spec-container {

    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;

}



.spec-item {

    padding: 30px 20px;
    border: 1px solid #eee;
    border-radius: 12px;

}



.spec-item span {

    display: block;
    color: #777;
    margin-bottom: 10px;

}



.spec-item strong {

    color: var(--primary-green);

}







/* ===============================
   PACKAGING
================================ */


.packaging-section {

    padding: 90px 8%;
    background: #f8f7f2;

}



.packaging-container {

    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;

}



.packaging-card {

    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

}



.packaging-card img {

    height: 260px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 25px;

}



.packaging-card h3 {

    color: var(--primary-green);
    margin-bottom: 15px;

}







/* ===============================
   QUALITY
================================ */


.quality-section {

    padding: 90px 8%;

}



.quality-content {

    max-width: 1000px;
    margin: auto;
    text-align: center;

}



.quality-content h2 {

    color: var(--primary-green);
    font-size: 36px;
    margin-bottom: 20px;

}



.quality-list {

    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;

   }

/* ===============================
   MARKET SECTION
================================ */


.market-section {

    padding: 80px 8%;
    text-align: center;
    background: #ffffff;

}



.market-section h2 {

    color: var(--primary-green);
    font-size: 36px;
    margin-bottom: 45px;

}



.market-container {

    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;

}



.market-item {

    padding: 30px 20px;
    background: #f8f7f2;
    border-radius: 12px;

}



.market-item h3 {

    color: var(--primary-green);
    font-size: 18px;

}







/* ===============================
   CTA SECTION
================================ */


.cta-section {

    padding: 90px 8%;
    background: var(--primary-green);
    text-align: center;
    color: white;

}



.cta-content h2 {

    font-size: 38px;
    margin-bottom: 20px;

}



.cta-content p {

    max-width: 700px;
    margin: 0 auto 35px;
    color: rgba(255,255,255,0.9);

}






/* ===============================
   CONTACT PREVIEW
================================ */


.contact-preview {

    padding: 80px 8%;
    text-align: center;

}



.contact-preview h2 {

    color: var(--primary-green);
    font-size: 36px;
    margin-bottom: 40px;

}



.contact-container {

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;

}



.contact-item {

    padding: 30px;
    border-radius: 12px;
    background: #f8f7f2;

}



.contact-item h3 {

    color: var(--gold);
    margin-bottom: 15px;

}







/* ===============================
   FOOTER
================================ */


footer {

    background: #10361e;
    color: white;
    padding: 40px 8%;

}



.footer-content {

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

}



.footer-content h3 {

    margin-bottom: 10px;

}



.footer-content p {

    opacity: 0.9;

}







/* ===============================
   RESPONSIVE MOBILE
================================ */


@media(max-width: 900px) {


    .navbar {

        flex-direction: column;
        gap: 20px;

    }



    .nav-links {

        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;

    }



    .hero {

        flex-direction: column;
        text-align: center;
        padding-top: 180px;

    }



    .hero-content,
    .hero-image {

        width: 100%;

    }



    .hero-content h1 {

        font-size: 38px;

    }



    .hero-buttons {

        justify-content: center;

    }



    .intro-content {

        flex-direction: column;

    }



    .intro-image,
    .intro-text {

        width: 100%;

    }



    .advantages-container,
    .spec-container,
    .packaging-container,
    .quality-list,
    .market-container,
    .contact-container {

        grid-template-columns: 1fr;

    }



    .footer-content {

        flex-direction: column;
        text-align: center;

    }


}



@media(max-width: 500px) {


    .logo-area img {

        width: 60px;

    }



    .company-name h2 {

        font-size: 16px;

    }



    .hero-content h1 {

        font-size: 30px;

    }



    .hero-buttons {

        flex-direction: column;

    }



    .btn-primary,
    .btn-secondary {

        width: 100%;

    }


   }


/* =========================================
   CSS FINISHING PART 1
========================================= */

/* ---------- PAGE HERO ---------- */

.page-hero{
    position: relative;
    padding: 140px 8% 90px;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero::before{
    content: "";
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        rgba(15,81,50,.72),
        rgba(15,81,50,.55)
    ),
    url("jomonkoikkara-coconut-tree-1538034_1920.jpg");

    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.08);
    z-index: -2;
}

.page-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.10);
    z-index:-1;
}

.page-hero h1{
    font-size:48px;
    margin-bottom:18px;
    color:#fff;
}

.page-hero p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}



/* ---------- NAVBAR ---------- */

.navbar{

    min-height:90px;

}

.logo-area{

    display:flex;
    align-items:center;
    gap:18px;

}

.logo-area img{

    width:68px;
    height:68px;
    object-fit:contain;
    flex-shrink:0;

}

.company-name{

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.company-name h2{

    margin:0;
    line-height:1.2;

}

.company-name p{

    margin-top:4px;

}



/* ---------- HERO IMAGE ---------- */

.hero-image img{

    width:100%;
    max-width:520px;
    height:auto;
    display:block;
    margin:auto;

}

/* =========================================
   CSS FINISHING PART 2
   CONTENT SECTION
========================================= */


/* ---------- GENERAL SECTION ---------- */

section{
    padding:80px 8%;
}


.section-title{
    text-align:center;
    margin-bottom:45px;
    font-size:36px;
}



/* ---------- ABOUT PAGE ---------- */

.about-intro{

    display:flex;
    align-items:center;
    gap:50px;

}


.about-image{

    width:50%;

}


.about-image img{

    width:100%;
    border-radius:20px;
    display:block;

}


.about-text{

    width:50%;

}


.about-text h2{

    font-size:36px;
    margin-bottom:20px;

}


.about-text p{

    line-height:1.8;
    margin-bottom:18px;

}



.values-container{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}


.value-card{

    padding:30px;
    border-radius:18px;
    background:#ffffff;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);

}



.value-card h3{

    margin-bottom:15px;

}




/* ---------- PRODUCT PAGE ---------- */


.product-detail{

    display:flex;
    align-items:center;
    gap:50px;

}


.product-image{

    width:50%;

}


.product-image img{

    width:100%;
    max-width:520px;
    border-radius:20px;

}



.product-description{

    width:50%;

}



.spec-container{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;

}



.spec-item{

    padding:25px;
    border-radius:15px;
    background:#ffffff;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);

}


.spec-item span{

    display:block;
    font-weight:600;
    margin-bottom:8px;

}



/* ---------- PACKAGING PAGE ---------- */


.packaging-container{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;

}



.packaging-card{

    background:white;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);

}



.packaging-card img{

    width:100%;
    border-radius:15px;
    margin-bottom:20px;

}





/* ---------- QUALITY & CONTACT ---------- */


.advantages-container{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}


.advantage-card{

    padding:30px;
    background:white;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);

}



.contact-container{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}



.contact-item{

    padding:30px;
    background:white;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);

}


/* =========================================
   CSS FINISHING PART 3
   MOBILE & FINAL TOUCH
========================================= */


/* ---------- BUTTON EFFECT ---------- */

.btn-primary,
.btn-secondary{

    transition:0.3s ease;

}


.btn-primary:hover,
.btn-secondary:hover{

    transform:translateY(-3px);

}



/* ---------- CARD EFFECT ---------- */


.value-card,
.spec-item,
.advantage-card,
.contact-item,
.packaging-card{

    transition:0.3s ease;

}



.value-card:hover,
.spec-item:hover,
.advantage-card:hover,
.contact-item:hover,
.packaging-card:hover{

    transform:translateY(-6px);

}



/* ---------- MOBILE RESPONSIVE ---------- */


@media(max-width:900px){


    .logo-area{

        gap:10px;

    }


    .logo-area img{

        width:55px;
        height:55px;

    }


    .company-name h2{

        font-size:18px;

    }


    .company-name p{

        font-size:12px;

    }




    .hero{

        flex-direction:column;
        text-align:center;
        padding-top:150px;

    }


    .hero-content,
    .hero-image{

        width:100%;

    }


    .hero-content h1{

        font-size:38px;

    }


    .hero-image img{

        margin-top:40px;

    }




    .about-intro,
    .product-detail{

        flex-direction:column;

    }


    .about-image,
    .about-text,
    .product-image,
    .product-description{

        width:100%;

    }



    .values-container,
    .advantages-container,
    .contact-container{

        grid-template-columns:1fr;

    }



    .packaging-container{

        grid-template-columns:1fr;

    }



    .spec-container{

        grid-template-columns:1fr;

    }


}



@media(max-width:500px){


    section{

        padding:60px 5%;

    }


    .page-hero{

        padding:120px 5% 70px;

    }



    .page-hero h1{

        font-size:34px;

    }



    .hero-content h1{

        font-size:32px;

    }



    .hero-content p{

        font-size:16px;

    }



    .hero-buttons{

        flex-direction:column;
        gap:15px;

    }


    .btn-primary,
    .btn-secondary{

        width:100%;
        text-align:center;

    }



}


/* =========================================
   PRODUCT GALLERY
========================================= */

.product-gallery-section{
    text-align:center;
}


.product-gallery-section h2{
    font-size:36px;
    margin-bottom:15px;
}


.product-gallery-section p{
    margin-bottom:40px;
}


.gallery-container{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}



.gallery-item{

    overflow:hidden;
    border-radius:18px;

}



.gallery-item img{

    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:0.3s ease;

}



.gallery-item img:hover{

    transform:scale(1.05);

}




@media(max-width:900px){

    .gallery-container{

        grid-template-columns:repeat(2,1fr);

    }

}



@media(max-width:500px){

    .gallery-container{

        grid-template-columns:1fr;

    }


    .gallery-item img{

        height:240px;

    }

}



