/*NAV-BAR section */

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

body{
    font-family:Arial, sans-serif;
}

.site-header{
    background:#FFFFFF;
    border-bottom:1px solid #eee;
    padding:6px 0;
    position:sticky;
    top:0;
    z-index:999;
}

.nav-container{
    width:90%;
    max-width:1300px;
    margin:auto;

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

    min-height:70px;
}

.nav-logo-area{
    display:flex;
    align-items:center;
   	gap:2px;
}

.nav-logo-area img{
    width:120px;     
    max-height:90px;  
    object-fit:cover;
    display:block;

}
.main-nav{
	margin-left:auto;
}
.main-nav ul{
    display:flex;
    align-items:center;
    list-style:none;
    gap:15px;
}
.main-nav li{
    list-style:none;
}

.main-nav a{
    text-decoration:none;
    color:#000;
    font-size:18px;
    font-weight:bold;
    position:relative;
    padding:10px 16px;
    border-radius:30px;
    transition:.3s ease;
	transform:scale(1.05);
}

.main-nav a:hover{
    background:#eef6d8;
    color:#016002;
	text-shadow:
        0 0 10px rgba(1,96,2,.25);
}
.nav-admin-link{
    border:1.5px solid #016002;
    color:#016002 !important;
}
.nav-admin-link:hover{
    background:#016002 !important;
    color:#fff !important;
}
.catalog-btn{
    margin-left:40px;
}
.btn{
    background:#016002;
    color:#fff;
    text-decoration:none;
	
    padding:15px 26px;

    border-radius:30px;

    display:inline-block;

    font-size:14px;
    font-weight:600;

    transition:.3s ease;
}

.btn:hover{
    background:#028504;
    transform:translateY(-2px);
}

/* Hide menu button on desktop */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:32px;
    cursor:pointer;
    color:#016002;
}

/* Mobile */

@media(max-width:768px){

    .nav-container{
        position:relative;
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
    }

    .menu-toggle{
        display:block;
    }

    .main-nav{
        display:none;
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        background:#fff;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
        border-radius:12px;
        padding:20px 0;
        z-index:999;
    }

    .main-nav.active{
        display:block;
    }

    .main-nav ul{
        flex-direction:column;
        gap:5px;
    }

    .main-nav li{
        text-align:center;
    }

    .main-nav a{
        display:block;
        padding:14px;
    }
	.nav-admin-link{
        display:block;
        margin:0 auto;
        width:fit-content;	
    }
    .catalog-btn{
        display:none;
    }

}
/*front- section*/
/*=========================================
        MARINE HERO SECTION
=========================================*/

.marine-hero{
    position:relative;
    overflow:hidden;
    background:#fff;
    padding:25px 0 60px;
}

/* Background Shapes */

.bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    z-index:0;
}

.bg-1{
    width:420px;
    height:420px;
    background:#eef8c5;
    right:-120px;
    top:-100px;
    opacity:.8;
}

.bg-2{
    width:280px;
    height:280px;
    background:#dff2b7;
    right:250px;
    top:180px;
    opacity:.35;
}

.bg-3{
    width:280px;
    height:280px;
    background:#f6fbdc;
    left:-120px;
    bottom:-120px;
    opacity:.35;
}

/* Container */

.marine-hero-container{
    width:92%;
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* Grid */

.marine-hero-grid{
    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
    gap:40px;
}

/*=========================================
        LEFT CONTENT
=========================================*/

.marine-content h1{
    font-family:"Playfair Display", serif;
    font-size:67px;
    line-height:1;
    font-weight:700;
    color:#111;
	margin-top:0;
    margin-bottom:25px;
}

.marine-content h1 span{
    display:block;
    color:#A4CE3A;
    font-style:italic;
    font-weight:600;
	font-size:58px;
}

.marine-description{
    max-width:620px;
    border-left:5px solid #00740d;
    padding-left:22px;
    font-size:18px;
    line-height:1.6;
    color:#333;
    margin-bottom:40px;
    font-family:Poppins,sans-serif;
}

/* Buttons */

.marine-product-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.marine-product-btn{
    display:inline-block;
    background:#016002;
    color:#fff;
    text-decoration:none;
    padding:15px 28px;
    border-radius:50px;
    font-family:Poppins,sans-serif;
    font-weight:600;
    transition:.3s;
}

.marine-product-btn:hover{
    transform:translateY(-3px);
}

.marine-product-btn.lime{
    background:#A4CE3A;
}

/*=========================================
        RIGHT IMAGE
=========================================*/

.marine-hero-visual{
    display:flex;
    justify-content:center;
    align-items:center;
}

.marine-circle-wrap{
    position:relative;
    width:650px;
    aspect-ratio:1/1;
    flex-shrink:0;
}

/* Green Ring */

.marine-circle-ring{
    position:absolute;
    inset:0;
    border:3px solid #016002;
    border-radius:50%;
    box-sizing:border-box;
}

/* White Circle */

.marine-product-card{
   position:absolute;
    inset:20px;
    background:#fff;
    border-radius:50%;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.marine-product-card::before{
    content:"";
    position:absolute;
    width:760px;
    height:760px;
    border-radius:50%;
    background:radial-gradient(circle,#ffffff 55%,#f6f6f6 100%);
}

.marine-product-card img{
    width:88%;
    position:relative;
	object-fit:cover;
    z-index:5;
}

/* Logo Badge */

.marine-molecule{
    position:absolute;
    right:15px;
    bottom:20px;
    width:145px;
    height:145px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    z-index:20;
}

.marine-molecule img{
    width:90px;
}

/*=========================================
        TAGLINE
=========================================*/

.marine-tagline{
    position:relative;
    margin-top:45px;
    text-align:center;
    color:#016002;
    font-size:30px;
    font-weight:600;
    letter-spacing:1px;
	font-style:italic;
}

.marine-tagline::before{
    content:"";
    width:90px;
    height:2px;
    background:#9fc53a;
    display:block;
    margin:0 auto 15px;
}

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

@media(max-width:1200px){

.marine-hero-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:60px;
}

.marine-description{
    margin:0 auto 35px;
    text-align:left;
}

.marine-product-buttons{
    justify-content:center;
}

.marine-circle-wrap{
    width:520px;
    height:520px;
}

.marine-circle-ring{
    border-width:3px;
}

.marine-product-card{
    width:430px;
    height:430px;
}

.marine-content h1{
    font-size:64px;
}

}

@media(max-width:768px){

.marine-content h1{
    font-size:48px;
}

.marine-description{
    font-size:16px;
}

.marine-circle-wrap{
    width:360px;
    height:360px;
}

.marine-product-card{
    width:290px;
    height:290px;
}

.marine-molecule{
    width:90px;
    height:90px;
}

.marine-molecule img{
    width:55px;
}

.marine-product-btn{
    font-size:15px;
    padding:12px 18px;
}

}

/*====================================================
 WHY MARINE BIOPOLYMERS
====================================================*/

.bio-overview{
   position: relative;
    padding:70px 0;
    overflow:hidden;
    background:
        radial-gradient(circle at left center,
            rgba(164,206,58,.12) 0%,
            rgba(164,206,58,.06) 18%,
            rgba(255,255,255,0) 42%),
        radial-gradient(circle at 25% 85%,
            rgba(1,96,2,.05) 0%,
            rgba(255,255,255,0) 35%),
        #faf9f5;
}
.bio-process-section{
	padding:70px 0; 
	background:#fff;
}
.bio-container{
    width:90%;
    max-width:1400px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    align-items:stretch;
}

.bio-left{
    padding:25px 10px 25px 0;
}
.bio-left h2{
    font-family:"Playfair Display",serif;
    font-size:67px;
    line-height:1;
   	color:#000;
    margin-bottom:25px;
	font-weight:700;
}

.bio-left h2 span{
    display:block;
    color:#A4CE3A;
    font-style:italic;
}

.bio-line{
    width:90px;
    height:3px;
    background:#016002;
    margin:30px 0;
}

.bio-left p{
    font-size:18px;
    line-height:1.7;
    color:#000;
    margin-bottom:20px;
}

.bio-right{
    background:#fff;
    border-radius:28px;
    padding:32px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.bio-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-bottom:45px;
}

.bio-heading span{
    width:90px;
    height:2px;
    background:#016002;
}

.bio-heading h3{
    font-size:24px;
    color:#A4CE3A;
    font-weight:700;
    text-align:center;
    letter-spacing:.5px;
}

.bio-process{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:15px;
}

.bio-step{
    flex:1;
    text-align:center;
}

.bio-image{
    width:137px;
    height:137px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
  	border:2px solid #016002;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    transition:.4s;
}

.bio-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.bio-step:hover .bio-image{
    transform:translateY(-10px) scale(1.05);
}

.bio-step h4{
    margin-top:22px;
    font-size:18px;
    color:#016002;
}

.bio-step p{
    margin-top:10px;
    font-size:14px;
    line-height:1.5;
    color:#555;
}

.bio-arrow{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#016002;
    font-size:28px;
    margin-top:65px;
}

.bio-stats{
   margin-top:40px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.stat{
    padding:18px 14px;
    text-align:center;
    border-right:1px solid #ececec;

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

    min-height:165px;
    transition:.3s;
}
.stat div{
    flex:1;
}
.stat:last-child{
    border-right: none;
}

.stat:hover{
    background:#f7fbf6;
    transform:translateY(-3px);
}

.stat i{
    font-size:30px;
    color:#016002;
    margin-bottom:10px;
}

.stat h2{
    font-size:24px;
    color:#016002;
    margin:0 0 6px;
    line-height:1;
}

.stat p{
    font-size:14px;
    line-height:1.45;
    color:#555;
    margin:0;
}

/*====================================================
 WHAT WE DO
====================================================*/

.bio-process-section{
    padding:80px 0;
}

.process-left h2{
    font-family:"Playfair Display",serif;
    font-size:55px;
    line-height:1;
    color:#000;
    margin:20px 0 25px;
}

.process-left h2 span{
    color:#A4CE3A;
    font-style:italic;
}

.process-left p{
    font-size:16px;
    line-height:1.7;
    color:#555;
    max-width:760px;
    margin-bottom:50px;
}

/*=====================
TIMELINE
======================*/

.timeline{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    margin:55px 0;
    position:relative;
}

.timeline-step{
    width:140px;
    text-align:center;
    position:relative;
}

.timeline-step .circle{

    width:76px;
    height:76px;

    margin:auto;

    border-radius:50%;

    background:#fff;

    border:2px solid #016002;

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

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;
}

.timeline-step:hover .circle{

    transform:translateY(-10px);

    background:#016002;

    border-color:#fff;
}

.timeline-step i{

    font-size:28px;

    color:#016002;

    transition:.35s;
}

.timeline-step:hover i{

    color:#fff;
}

.timeline-step h4{

    margin-top:18px;

    font-size:18px;

    color:#000;
}

.line{

    flex:1;

    height:2px;

    background:#A4CE3A;

    margin:42px 10px 0;

    position:relative;
}

.line:after{

    content:"➜";

    position:absolute;

    right:-8px;

    top:-12px;

    color:#016002;

    font-size:20px;
}

/*=====================
BOTTOM FEATURES
======================*/

.bottom-features{

    display:grid;

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

    background:#fff;

    border-radius:26px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.4);

    margin-top:50px;
}

.bottom-features div{

    display:flex;

    align-items:center;

    gap:16px;

    padding:28px;

    border-right:1px solid #ececec;

    transition:.35s;
}

.bottom-features div:last-child{

    border:none;
}

.bottom-features div:hover{

    background:#f7fbf6;
    transform:translateY(-4px);
}

.bottom-features i{

    font-size:34px;

    color:#016002;
}

.bottom-features div{

    font-size:18px;

    font-weight:600;

    color:#000;
}

/*=====================
RIGHT CARD
======================*/

.process-card{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    min-height:640px;

    background:url("../images/ocean-bg.jpg") center/cover;

    display:flex;

    align-items:flex-end;

    box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.process-card .overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(to right, #A4CE3A, #ffffff);
  
}

.process-card .content{

    position:relative;

    z-index:2;

    padding:55px;

    color:#fff;
}

.process-card i{

    font-size:55px;

    color:#016002;

    margin-bottom:30px;
}

.process-card h3{

    font-family:"Playfair Display",serif;

    font-size:45px;
	color:#000;
    line-height:1.25;

    margin-bottom:30px;
}

.process-card p{

    font-size:18px;

    line-height:1.9;
	color:#000;
    opacity:.95;

    margin-bottom:45px;
}

.process-card a{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 36px;

    background:#016002;

    color:#A4CE3A;

    border-radius:12px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;
}

.process-card a:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 30px rgba(0,0,0,.18);
}

/*====================================================
 PREMIUM ANIMATIONS
====================================================*/

.bio-left,
.bio-right,
.process-left,
.process-card{
    opacity:0;
    transform:translateY(60px);
    animation:fadeUp .9s ease forwards;
}

.bio-right{
    animation-delay:.2s;
}

.process-left{
    animation-delay:.3s;
}

.process-card{
    animation-delay:.45s;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(60px);
    }

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

/* Floating image effect */

.bio-image{
    animation:floatImage 5s ease-in-out infinite;
}

.bio-image:nth-child(even){
    animation-delay:1s;
}

@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

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

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

/* Stat Cards */

.stat{
    position:relative;
    overflow:hidden;
}

.stat::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(216,179,95,.25),
        transparent
    );

    transition:.6s;
}

.stat:hover::before{
    left:100%;
}

/* Process Hover */

.bio-step{
    transition:.35s;
}

.bio-step:hover{
    transform:translateY(-8px);
}

/* Feature Hover */

.bottom-features div{
    position:relative;
    overflow:hidden;
}

.bottom-features div::before{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:0;
    height:4px;

    background:#d8b35f;

    transition:.4s;
}

.bottom-features div:hover::before{

    width:100%;
}

/* CTA Button */

.process-card a{

    position:relative;
    overflow:hidden;
}

.process-card a::before{

    content:"";

    position:absolute;

    left:-120%;
    top:0;

    width:120%;
    height:100%;

    background:rgba(255,255,255,.35);

    transform:skewX(-25deg);

    transition:.7s;
}

.process-card a:hover::before{

    left:130%;
}

/*====================================================
 TABLET
====================================================*/

@media(max-width:1200px){

.bio-container{

    grid-template-columns:1fr;
    gap:60px;
}

.bio-left{

    text-align:center;
}

.bio-line{

    margin:auto;
    margin-top:25px;
    margin-bottom:30px;
}

.bio-left h2{

    font-size:56px;
}

.bio-process{

    flex-wrap:wrap;
    justify-content:center;
}

.bio-arrow{

    display:none;
}

.bio-step{

    width:46%;
}

.bio-image{

    width:130px;
    height:130px;
}

.bio-stats{

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

.timeline{

    flex-wrap:wrap;
    justify-content:center;
    gap:35px;
}

.line{

    display:none;
}

.bottom-features{

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

.process-card{

    min-height:520px;
}

.process-card h3{

    font-size:42px;
}

}

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

@media(max-width:768px){

.bio-overview,
.bio-process-section{

    padding:60px 0;
}

.bio-left h2{

    font-size:42px;
}

.process-left h2{

    font-size:42px;
}

.bio-right{

    padding:30px;
}

.bio-heading h3{

    font-size:18px;
}

.bio-heading span{

    width:40px;
}

.bio-process{

    flex-direction:column;
    gap:35px;
}

.bio-step{

    width:100%;
}

.bio-image{

    width:120px;
    height:120px;
}

.bio-step h4{

    font-size:20px;
}

.bio-step p{

    font-size:15px;
}

.bio-stats{

    grid-template-columns:1fr;
}

.stat{

    border-right:none;
    border-bottom:1px solid #eee;
}

.stat:last-child{

    border-bottom:none;
}

.timeline{

    flex-direction:column;
    align-items:center;
}

.timeline-step{

    width:100%;
}

.bottom-features{

    grid-template-columns:1fr;
}

.process-card{

    min-height:420px;
}

.process-card .content{

    padding:35px;
}

.process-card h3{

    font-size:34px;
}

.process-card p{

    font-size:16px;
}

.process-card a{

    padding:15px 28px;
}

}

/*====================================================
 EXTRA POLISH
====================================================*/

.bio-right,
.process-card,
.bottom-features,
.bio-stats{

    transition:.35s;
}

.bio-right:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.22);
}

/* ===============================
   Floating CTA
==================================*/

.marine-cta-wrapper{
    position:relative;
    margin-bottom:-70px;
    padding:0 20px;
    z-index:10;
    overflow:visible;
}

.marine-cta-dots{
    position:absolute;

    width:130px;
    height:110px;

    z-index:1;
    pointer-events:none;

    background-image:

        radial-gradient(circle,#016002 1.8px,transparent 2px),

        radial-gradient(circle,#A4CE3A 1.8px,transparent 2px);

    background-size:18px 18px;

    background-position:
        0 0,
        9px 9px;

    opacity:.35;
}

.marine-cta-dots.left{
    left:-30px;
    top:50%;
    transform:translateY(-50%);
}

/* Right Side */

.marine-cta-dots.right{
   	right:-30px;
    top:50%;
    transform:translateY(-50%);
}
.marine-cta-box{

    max-width:1200px;
    margin:auto;

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

    padding:45px 70px;      

    background:#fff;
    border-radius:24px;

    border:1px solid rgba(164,206,58,.25);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

    position:relative;
    z-index:5;
    overflow:hidden;
}


/* Decorative Glow */

.marine-cta-box::before{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    background:radial-gradient(circle,
    rgba(164,206,58,.18),
    transparent 70%);

    top:-120px;
    left:-120px;

}

.marine-cta-box::after{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    background:radial-gradient(circle,
    rgba(1,96,2,.08),
    transparent 70%);

    bottom:-130px;
    right:-80px;

}


/* Left */

.marine-cta-left{

    flex:1;
    position:relative;
    z-index:2;
}

.marine-cta-tag{

    display:inline-block;

    background:#F3F9E6;

    color:#016002;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;
}

.marine-cta-left h2{

    font-size:40px;

    line-height:1;

    margin-bottom:18px;

    color:#111;
}

.marine-cta-left h2 span{

    color:#A4CE3A;

    font-style:italic;
}

.marine-cta-left p{

    max-width:650px;

    color:#666;

    font-size:16px;

    line-height:1.7;
}


/* Right */

.marine-cta-right{

    position:relative;
    z-index:2;
}

.marine-cta-btn{

    display:inline-flex;

    align-items:center;

    gap:14px;

    background:#016002;

    color:#fff;

    text-decoration:none;

    padding:18px 34px;

    border-radius:60px;

    font-weight:600;

    transition:.35s;
}

.marine-cta-btn span{

    transition:.35s;
}

.marine-cta-btn:hover{

    background:#A4CE3A;

    color:#111;
}

.marine-cta-btn:hover span{

    transform:translateX(6px);
}


/* Tablet */

@media(max-width:992px){

.marine-cta-box{

    flex-direction:column;

    text-align:center;

    padding:50px 40px;
}

.marine-cta-left h2{

    font-size:38px;
}

.marine-cta-left p{

    margin:auto;
}

}


/* Mobile */

@media(max-width:768px){

.marine-cta-wrapper{

    margin-bottom:-70px;
}

.marine-cta-box{

    padding:40px 25px;
}

.marine-cta-left h2{

    font-size:30px;
}

.marine-cta-left p{

    font-size:16px;
}

.marine-cta-btn{

    width:100%;
    justify-content:center;
}

}

/* ==========================
   ABOUT PAGE
========================== */
.about-hero{
    position: relative;
    min-height:600px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.about-hero-overlay{
    position:absolute;
    inset:0;

   /*background:
        radial-gradient(circle at 100% 0%,
            #A4CE3A 0%,
            rgba(164,206,58,.35) 20%,
            rgba(255,255,255,0) 55%),
        #FFFFFF;
	*/
	   background: linear-gradient(
        to bottom,
        #D8EF94 0%,
        #EEF8D4 20%,
        #FFFFFF 50%,
        #EEF8D4 80%,
        #D8EF94 100%
    );
}

.about-hero-content{
    position:relative;
    z-index:2;

    max-width:850px;
    padding:20px;
}

.about-hero-content h1{
    color:#000;
    font-size:58px;
    font-weight:700;
    margin-bottom:20px;
}
.about-hero-content h1 span{
	color:#016002;
	font-style:italic;
}

.about-hero-line{
    width:100px;
    height:4px;
    background:#016002;
    margin:0 auto 25px;
    border-radius:10px;
}

.about-hero-content p{
    color:#000;
    font-size:20px;
    line-height:1.7;
    margin-bottom:35px;
}

.about-hero-btn{
    display:inline-block;

    padding:14px 34px;

    background:#016002;
    color:#fff;

    text-decoration:none;
    border-radius:50px;

    font-weight:600;

    transition:.3s ease;
}

.about-hero-btn:hover{
    background:#A4CE3A;
    color:#000;
    transform:translateY(-3px);
}

/* ==========================
   WAVE
========================== */

.wave-divider{
    position:absolute;
    bottom:-1px;
    left:0;
    width:100%;
    line-height:0;
}

.wave-divider svg{
    width:100%;
    height:150px;
    display:block;
}

/* ==========================
   PROFILE SECTIONS
========================== */
.leadership-heading{
    width:90%;
    max-width:1200px;
    margin:90px auto 60px;
    text-align:center;
}

/*.section-tag{
    display:inline-block;
    padding:10px 26px;
    background:#eef8ec;
    color:#0b7d12;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}
*/

.leadership-heading h2{
    font-size:48px;
    font-weight:600;
    color:#000;
    line-height:1.2;
    margin:0;
}
.profile-title{
	font-size:44px;
    font-weight:600;
	color:#A4CE3A;
}

/*==============================
        SECTIONS
==============================*/

.founder-section,
.director-section{
    width:90%;
    max-width:1200px;
    margin:0 auto 70px;
}

/*==============================
        CARD
==============================*/

.founder-card{

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

    background:#fff;

    padding:28px;

    border-radius:24px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s ease;
}

.founder-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.reverse{

    flex-direction:row-reverse;

}

/*==============================
        IMAGE
==============================*/

.founder-image{

    flex:0 0 270px;

}

.founder-image img{

    width:100%;

    height:350px;

    object-fit:cover;

    border-radius:18px;

    display:block;
}

/*==============================
        CONTENT
==============================*/

.founder-content{

    flex:1;

}

.founder-content h3{

    font-size:36px;

    color:#10264d;

    margin-bottom:10px;

    font-weight:700;
}

.founder-content h4{
	
    display:flex;
	align-items:left;
    color:#016002;
    padding:8px 20px;
    font-size:28px;
    font-weight:700;
    margin-bottom:22px;
}

.founder-content p{

    font-size:17px;

    line-height:1.9;

    color:#555;

    margin-bottom:0;
}

/*==============================
        QUOTE BOX
==============================*/

.quote-box{

    margin-top:30px;

    background:#f8faf7;

    border-left:5px solid #99cb31;

    border-radius:16px;

    padding:24px 28px;

    position:relative;
}

.quote-box span{

    font-size:42px;

    color:#0b7d12;

    font-weight:700;

    display:block;

    margin-bottom:10px;
}

.quote-box p{

    margin:0;

    font-style:italic;

    color:#666;

    line-height:1.7;
}

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

@media(max-width:992px){

.founder-card,
.reverse{

    flex-direction:column;

    text-align:center;

}

.founder-image{

    flex:none;

    width:260px;

}

.founder-content h3{

    font-size:34px;

}

.quote-box{

    text-align:left;
}

}

@media(max-width:768px){
.leadership-heading h2{
    font-size:34px;
}
.founder-content h3{
    font-size:28px;
}
.founder-content p{
    font-size:16px;
}
.founder-card{
    padding:20px;
}

}
/*==========================================
CERTIFICATES SECTION
==========================================*/

.certificate-section{
    padding:90px 0;
    background:
        radial-gradient(circle at left top,
        rgba(164,206,58,.12) 0%,
        transparent 35%),
        radial-gradient(circle at right bottom,
        rgba(1,96,2,.08) 0%,
        transparent 35%),
        #faf9f5;
    overflow:hidden;
}

.certificate-container{
    width:90%;
    max-width:1400px;
    margin:auto;
}


/*==========================================
SECTION TITLE
==========================================*/

.certificate-section-title{
    text-align:center;
    margin-bottom:60px;
}

.certificate-section-title .sub-heading{
    display:inline-block;
    font-size:14px;
    font-weight:700;
    color:#016002;
    letter-spacing:2px;
    text-transform:uppercase;
    position:relative;
    padding:0 70px;
}

.section-title .sub-heading::before,
.section-title .sub-heading::after{
    content:"";
    position:absolute;
    top:50%;
    width:55px;
    height:2px;
    background:#A4CE3A;
}

.section-title .sub-heading::before{
    left:0;
}

.section-title .sub-heading::after{
    right:0;
}

.certificate-section-title h2{
    font-size:48px;
    font-family:"Playfair Display",serif;
    color:#000;
    margin:18px 0;
    line-height:1.1;
}

.certificate-section-title h2 span{
    color:#A4CE3A;
    font-style:italic;
}

.certificate-section-title p{
    width:700px;
    max-width:100%;
    margin:auto;
    font-size:18px;
    color:#666;
    line-height:1.8;
}


/*==========================================
GRID
==========================================*/

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


/*==========================================
CARD
==========================================*/

.certificate-card{
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
}

.certificate-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#016002,#A4CE3A);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

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

.certificate-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 60px rgba(0,0,0,.15);
}


/*==========================================
IMAGE
==========================================*/

.certificate-image{
    background:#fff;
    padding:28px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.certificate-image img{
    width:100%;
    height:430px;
    object-fit:contain;
    transition:.5s;
}

.certificate-card:hover .certificate-image img{
    transform:scale(1.03);
}


/*==========================================
CONTENT
==========================================*/

.certificate-content{
    padding:28px 34px 34px;
}

.certificate-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    background:#eef9ea;
    color:#016002;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.certificate-content h3{
    font-size:28px;
    color:#016002;
    margin-bottom:15px;
    line-height:1.3;
}

.certificate-content p{
    font-size:17px;
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}


/*==========================================
BUTTON
==========================================*/

.certificate-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 28px;
    border:2px solid #016002;
    border-radius:40px;
    color:#016002;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.certificate-btn i{
    transition:.35s;
}

.certificate-btn:hover{
    background:#016002;
    color:#fff;
}

.certificate-btn:hover i{
    transform:translateX(6px);
}


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

@media(max-width:992px){

.certificate-grid{
    grid-template-columns:1fr;
}

.certificate-section-title h2{
    font-size:42px;
}

.certificate-image img{
    height:340px;
}

}

@media(max-width:576px){

.certificate-section{
    padding:70px 0;
}

.certificate-section-title h2{
    font-size:34px;
}

.certificate-section-title p{
    font-size:16px;
}

.certificate-content{
    padding:25px;
}

.certificate-content h3{
    font-size:22px;
}

.certificate-image img{
    height:260px;
}

.certificate-btn{
    width:100%;
    justify-content:center;
}

}
/*
 ABOUT CTA section
 */
.abt-cta-wrapper{
    position:relative;
    margin-bottom:-70px;
    padding:0 20px;
    z-index:10;
    overflow:visible;
}

.abt-cta-dots{
    position:absolute;
    width:130px;
    height:110px;
    z-index:1;
    pointer-events:none;
    background-image:
        radial-gradient(circle,#016002 1.8px,transparent 2px),
        radial-gradient(circle,#A4CE3A 1.8px,transparent 2px);
    background-size:18px 18px;
    background-position:
        0 0,
        9px 9px;
    opacity:.35;
}

.abt-cta-dots.left{
    left:-30px;
    top:50%;
    transform:translateY(-50%);
}

/* Right Side */

.abt-cta-dots.right{
   	right:-30px;
    top:50%;
    transform:translateY(-50%);
}
.abt-cta-box{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
    padding:45px 70px;  
    background:#fff;
    border-radius:24px;
    border:1px solid rgba(164,206,58,.25);
    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
    position:relative;
    z-index:5;
    overflow:hidden;
}
/* Decorative Glow */

.abt-cta-box::before{

    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:radial-gradient(circle,
    rgba(164,206,58,.18),
    transparent 70%);
    top:-120px;
    left:-120px;
}

.abt-cta-box::after{
    content:"";

    position:absolute;

    width:260px;
    height:260px;

    background:radial-gradient(circle,
    rgba(1,96,2,.08),
    transparent 70%);

    bottom:-130px;
    right:-80px;

}
/* Left */

.abt-cta-left{

    flex:1;
    position:relative;
    z-index:2;
}

.abt-cta-tag{

    display:inline-block;

    background:#F3F9E6;

    color:#016002;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;
}

.abt-cta-left h2{

    font-size:40px;

    line-height:1;

    margin-bottom:18px;

    color:#111;
}

.abt-cta-left h2 span{

    color:#A4CE3A;

    font-style:italic;
}

.abt-cta-left p{

    max-width:650px;

    color:#666;

    font-size:16px;

    line-height:1.7;
}


/* Right */

.abt-cta-right{

    position:relative;
    z-index:2;
}

.abt-cta-btn{

    display:inline-flex;

    align-items:center;

    gap:14px;

    background:#016002;

    color:#fff;

    text-decoration:none;

    padding:18px 34px;

    border-radius:60px;

    font-weight:600;
    transition:.35s;
}
.abt-cta-btn span{
    transition:.35s;
}
.abt-cta-btn:hover{
    background:#A4CE3A;
    color:#111;
}
.abt-cta-btn:hover span{
    transform:translateX(6px);
}
/* Tablet */
/* ==========================
   Tablet (991px and below)
========================== */

@media (max-width: 991px){

    .abt-cta-wrapper{
        margin-bottom:0;
        padding:0 15px;
    }

    .abt-cta-box{
        flex-direction:column;
        text-align:center;
        gap:30px;
        padding:40px 30px;
    }

    .abt-cta-left{
        width:100%;
    }

    .abt-cta-left h2{
        font-size:34px;
        line-height:1.3;
    }

    .abt-cta-left p{
        max-width:100%;
        margin:0 auto;
        font-size:16px;
    }

    .abt-cta-right{
        width:100%;
    }

    .abt-cta-btn{
        justify-content:center;
    }

    /* Hide dots on tablet */
    .abt-cta-dots{
        display:none;
    }
}
/* Mobile */
@media (max-width: 767px){

    .abt-cta-wrapper{
        margin-bottom:0;
        padding:0 15px;
    }

    .abt-cta-box{

        padding:30px 20px;
        border-radius:18px;
        gap:25px;
    }

    .abt-cta-left h2{
        font-size:28px;
        line-height:1.3;
    }

    .abt-cta-left p{
        font-size:15px;
        line-height:1.7;
    }

    .abt-cta-btn{

        width:100%;
        justify-content:center;
        padding:15px 20px;
        font-size:16px;
    }

    /* Remove decorative circles on mobile */
    .abt-cta-box::before,
    .abt-cta-box::after{
        display:none;
    }

    /* Hide dot pattern */
    .abt-cta-dots{
        display:none;
    }
}

/*=========================================
            PRODUCTS PAGE
=========================================*/
/*=========================
      PRODUCT HERO
==========================*/

.products-hero{
     position: relative;
    min-height:600px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}
.product-hero-overlay{

    position:absolute;
    inset:0;

   	 background: linear-gradient(
        to bottom,
        #D8EF94 0%,
        #EEF8D4 20%,
        #FFFFFF 50%,
        #EEF8D4 80%,
        #D8EF94 100%
    );
}

.product-container{
    position:relative;
    z-index:2;
    width:min(1200px,92%);
    margin:auto;
}
.product-hero-content{
    max-width:700px;
}
.product-hero-content h1{

    font-size:58px;
    line-height:1.05;
    font-weight:700;
    color:#000;
    margin-bottom:20px;
}

.product-hero-content h1 span{
    color:#016002;
    font-style:italic;
    font-family:Georgia,serif;
    font-weight:600;
}
.product-hero-line{

    width:110px;
    height:5px;
    border-radius:50px;
    background:#016002;
    margin:0 auto 25px;
}
.product-hero-content p{

    max-width:720px;
    font-size:18px;
    line-height:1.5;
    color:#000;
    margin-bottom:45px;
}
.product-hero-btns{

    display:flex;
    gap:22px;
}

.btn-primary{

    background:#016002;
    color:#fff;
    padding:18px 42px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
}

.btn-primary:hover{

    background:#A4CE3A;
    color:#fff;
}

.btn-secondary{

    border:2px solid #016002;
    color:#016002;
    padding:18px 42px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    background:#fff;
}

.btn-secondary:hover{

    background:#016002;
    color:#fff;
}
.wave-divider{

    position:absolute;
    left:0;
    bottom:-1px;
    width:100%;
    line-height:0;
    z-index:3;
}

.wave-divider svg{

    display:block;
    width:100%;
    height:150px;
}
/*=========================================
        RESPONSIVE - 1200px
=========================================*/

@media (max-width:1200px){

    .products-hero{
        min-height:80vh;
        padding:120px 0 140px;
    }

    .product-container{
        width:min(92%,1100px);
    }

    .product-hero-content h1{
        font-size:58px;
    }

    .product-hero-content p{
        font-size:19px;
        max-width:650px;
    }

}
/*=========================================
        TABLET - 992px
=========================================*/

@media (max-width:992px){

    .products-hero{

        min-height:auto;
        padding:110px 0 130px;
        text-align:center;
    }

    .product-container{

        width:92%;
    }

    .product-hero-content{

        max-width:700px;
        margin:auto;
    }

    .product-hero-content h1{

        font-size:50px;
        line-height:1.1;
    }

    .product-hero-content p{

        font-size:18px;
        line-height:1.8;
        margin:0 auto 40px;
    }

    .product-hero-line{

        margin:28px auto;
    }

    .product-hero-btns{

        justify-content:center;
        flex-wrap:wrap;
    }

    .wave-divider svg{

        height:110px;
    }

}/*=========================================
        MOBILE - 768px
=========================================*/

@media (max-width:768px){

    .products-hero{

        padding:90px 0 110px;
    }

    .product-hero-content h1{

        font-size:40px;
        line-height:1.15;
    }

    .product-hero-content h1 span{

        display:block;
        margin:8px 0;
    }

    .product-hero-line{

        width:90px;
        height:4px;
    }

    .product-hero-content p{

        font-size:16px;
        line-height:1.7;
        margin-bottom:35px;
    }

    .product-hero-btns{

        flex-direction:column;
        align-items:center;
        gap:18px;
    }
    .btn-primary,
    .btn-secondary{
        width:240px;
        justify-content:center;
        padding:15px 28px;
        font-size:16px;
    }

    .wave-divider svg{

        height:80px;
    }

}/*=========================================
        SMALL MOBILE - 480px
=========================================*/

@media (max-width:480px){

    .products-hero{

        padding:75px 0 95px;
    }

    .product-container{

        width:92%;
    }

    .product-hero-content h1{

        font-size:32px;
        line-height:1.2;
    }

    .product-hero-content p{

        font-size:15px;
        line-height:1.7;
    }

    .product-hero-btns{

        gap:15px;
    }

    .btn-primary,
    .btn-secondary{

        width:100%;
        max-width:260px;
        font-size:15px;
        padding:14px 22px;
    }

    .wave-divider svg{

        height:65px;
    }

}
/*==========================
    PRODUCT PORTFOLIO
==========================*/

.product-portfolio{
    padding:100px 0;
    background:  linear-gradient(180deg, #e9f2dc 0%, #ffffff 55%);
    position:relative;
}

.product-portfolio .portfolio-container{
    width:1320px;
    max-width:92%;
    margin:auto;
}

/*=====================================
    SECTION TITLE
======================================*/

.portfolio-section-heading{
    text-align:center;
    margin-bottom:70px;
}

.portfolio-section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#eef8ea;
    color:#016002;
    font-size:14px;
    font-weight:600;
    border-radius:30px;
    letter-spacing:.5px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.portfolio-section-heading h2{
    font-size:50px;
    font-weight:600;
    color: #016002;
    line-height:1;
    margin-bottom:18px;
}

.portfolio-section-heading p{
    width:700px;
    max-width:100%;
    margin:auto;
    font-size:15px;
    color:#000;
    line-height:1.8;
}

/*=====================================
    GRID
======================================*/

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

/*=====================================
    CARD
======================================*/

.portfolio-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.2);
    transition:.35s;
    display:flex;
    flex-direction:column;
    border:1px solid #edf2f7;
}

.portfolio-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

/*=====================================
    IMAGE
======================================*/

.portfolio-image{
    height:250px;
    overflow:hidden;
}

.portfolio-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.portfolio-card:hover .portfolio-image img{
    transform:scale(1.08);
}

/*=====================================
    CONTENT
======================================*/

.portfolio-body{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.portfolio-label{
    display:inline-block;
    align-self:flex-start;
    padding:6px 14px;
    border-radius:30px;
    background:#eef7ef;
    color:#016002;
    font-size:12px;
    font-weight:600;
    margin-bottom:18px;
}

.portfolio-body h3{
    font-size:30px;
    color: #016002;
    margin-bottom:10px;
}

.portfolio-derivative{
    color:#000;
    line-height:1.7;
    margin-bottom:25px;
    min-height:55px;
}

/*=====================================
    APPLICATION TAGS
======================================*/

.portfolio-application-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:35px;
}

.portfolio-application-list span{
    background:#fff;
    border:1px solid #A4CE3A;
    padding:10px 16px;
    border-radius:30px;
    font-size:13px;
    color:#000;
    transition:.3s;
}

.portfolio-card:hover .portfolio-application-list span{
    background:#016002;
    color:#fff;
    border-color:#A4CE3A;
}

/*=====================================
    LEARN MORE BUTTON
======================================*/

.portfolio-btn{
    margin-top:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-decoration:none;
    color:#016002;
    font-weight:600;
    border-top:1px solid #edf2f7;
    padding-top:22px;
    transition:.3s;
}

.portfolio-btn span{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#eef8ea;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
    font-size:18px;
}

.portfolio-card:hover .portfolio-btn{
    color:#014401;
}

.portfolio-card:hover .portfolio-btn span{
    background:#016002;
    color:#fff;
    transform:translateX(6px);
}

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

@media(max-width:1200px){

.portfolio-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.product-portfolio{
padding:70px 0;
}

.portfolio-section-heading{
margin-bottom:50px;
}

.portfolio-section-heading h2{
font-size:38px;
}

.portfolio-section-heading p{
font-size:16px;
}

.portfolio-grid{
grid-template-columns:1fr;
}

.portfolio-body h3{
font-size:26px;
}

.portfolio-image{
height:220px;
}

}
/*======================================
    PRODUCT SHOWCASE
======================================*/
/* Layout */
.pdt-showcase{
    padding:90px 0;
    background:#f6f8f4;
}
.pdt-sticky{
	display:flex;
    flex-direction:column;
    gap:35px;
    align-items:start;
}
.pdt-container{
    width:min(1400px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:260px 1fr;
    gap:35px;
    align-items:start;
}
.pdt-right-column{
    display:flex;
    flex-direction:column;
    gap:35px;
}
.pdt-sidebar{
    position:sticky;
    top:110px;
    align-self:start;
    background:#fff;
    border-radius:26px;
    padding:18px;
    box-shadow:0 15px 45px rgba(0,0,0,.07);
    min-height:520px;
}
.pdt-tab{
    width:100%;
    border:none;
    background:transparent;
    height:72px;
    border-radius:18px;
    margin-bottom:14px;
    font-size:17px;
    font-weight:600;
    color:#222;
    text-align:left;
    padding:0 25px;
    cursor:pointer;
    transition:.35s;
}
.pdt-tab.active{
    background:linear-gradient(135deg,#016002,#A4CE3A);
    color:#fff;
    box-shadow:0 18px 35px rgba(1,96,2,.25);
}
.pdt-content{
    display:none;
}
.pdt-content.active{
    display:block;
}
.pdt-main-card,.pdt-applications-card{
    background:#fff;
    border-radius:32px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}
.pdt-heading{
    padding:40px 55px 0;
}
.pdt-heading small{
    color:#016002;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}
.pdt-top{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;padding:30px 55px 55px;
    align-items:center;
}
.pdt-title{
    font-size:46px;
    line-height:1.2;
    margin-bottom:20px;
    color:#222;
}
.pdt-title span{
    display:block;
    margin-top:10px;
    color:#6c6c6c;
    font-size:26px;
    font-weight:400;
}
.pdt-description{
    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:35px;
}
.pdt-specifications{
    display:grid;
    grid-template-columns:repeat(2,minmax(180px,1fr));
    gap:18px;
    margin-bottom:35px;
}
.specification-card{
    background:#fafafa;
    border:1px solid #ececec;
    border-radius:18px;
    padding:18px 20px;
}
.specification-card small{
    display:block;
    color:#777;
    font-size:13px;
    margin-bottom:6px;
}
.specification-card strong{
    font-size:17px;
    color:#222;
}
.datasheet-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:50px;
    background:linear-gradient(135deg,#016002,#A4CE3A);
    color:#fff;
    text-decoration:none;
    font-weight:600;
}
.pdt-right{
    display:flex;
    justify-content:center;
    align-items:center;
}
.pdt-image{
    width:100%;
    max-width:460px;
	max-height:420px;
    display:block;
}
.pdt-applications-wrapper{
    width:min(1400px,92%);
    margin:35px auto 0;
    padding-left:295px;
}
.pdt-applications-panel{
    display:none;
}
.pdt-applications-panel.active{
    display:block;
}
.pdt-applications-card{
    padding:55px;
}
.pdt-applications-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}
.pdt-app-label{
    display:inline-block;
    color:#016002;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}
.pdt-applications-header h3{
    font-size:34px;
    color:#222;
}
.pdt-applications-header h3 span{
    color:#016002;
}
.pdt-slider-nav{
    display:flex;
    gap:12px;
}
.pdt-prev,.pdt-next{
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    background:#fff;
    color:#016002;
    font-size:20px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.pdt-slider-wrapper{
    overflow:hidden;
    width:100%;
}
.pdt-slider-track{
    display:flex;
    gap:25px;
    transition:transform .5s ease;
}
.pdt-application-card{
    flex:0 0 calc((100% - 50px)/3);
    background:#fff;
    border:1px solid #ececec;
    border-radius:22px;
    padding:32px 28px;
    min-height:250px;
}
.pdt-application-card h4{
    font-size:22px;
    color:#016002;
    margin-bottom:18px;
    line-height:1.4;
}
.pdt-application-card p{
    font-size:15px;
    color:#666;
    line-height:1.8;
}
.pdt-slider-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:30px;
}
.pdt-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#d8d8d8;
}
.pdt-dot.active{
    width:34px;
    border-radius:20px;
    background:#016002;
}
@media(max-width:992px){
.pdt-container{
    display:block;
}
.pdt-applications-wrapper{
    padding-left:0;
}
.pdt-sidebar{
    position:relative;
    top:0;
    display:flex;
    min-height:auto;
    overflow-x:auto;
    margin-bottom:25px;
}.pdt-tab{
	min-width:180px;
	margin:0;
	}
.pdt-top{
	grid-template-columns:1fr;
	text-align:center
	}
.pdt-specifications{
	grid-template-columns:1fr 1fr;
}
.pdt-application-card{
	flex:0 0 calc((100% - 25px)/2);
}
}
@media(max-width:768px){
	.pdt-top{
		padding:25px;
	}
	.pdt-heading{
		padding:25px 25px 0;
	}
	.pdt-applications-card{
		padding:30px 25px;
	}
	.pdt-specifications{
		grid-template-columns:1fr;
	}
	.pdt-application-card{
		flex:0 0 100%;
	}
	.pdt-applications-header{
		flex-direction:column;
		align-items:flex-start;
		gap:18px;
	}
}

/*==========================
 BLOG PAGE 
=======================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#222;
    overflow-x:hidden;
}

.blog-container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/*
 blog hero section
 */
.blog-hero{
    position: relative;
    min-height:600px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.blog-hero-overlay{
    position:absolute;
    inset:0;

   /*background:
        radial-gradient(circle at 100% 0%,
            #A4CE3A 0%,
            rgba(164,206,58,.35) 20%,
            rgba(255,255,255,0) 55%),
        #FFFFFF;
	*/
	   background: linear-gradient(
        to bottom,
        #D8EF94 0%,
        #EEF8D4 20%,
        #FFFFFF 50%,
        #EEF8D4 80%,
        #D8EF94 100%
    );
}

.blog-hero-content{
    position:relative;
    z-index:2;

    max-width:850px;
    padding:20px;
}

.blog-hero-content h1{
    color:#000;
    font-size:58px;
    font-weight:700;
    margin-bottom:20px;
}
.blog-hero-content h1 span{
	color:#016002;
	font-style:italic;
}

.blog-hero-line{
    width:100px;
    height:4px;
    background:#016002;
    margin:0 auto 25px;
    border-radius:10px;
}

.blog-hero-content p{
    color:#000;
    font-size:20px;
    line-height:1.7;
    margin-bottom:35px;
}
.wave-divider{
    position:absolute;
    bottom:-1px;
    left:0;
    width:100%;
    line-height:0;
}

.wave-divider svg{
    width:100%;
    height:150px;
    display:block;
}
/*==================================
        LATEST ARTICLES
===================================*/

.latest-blogs{
    padding:100px 0;
    background:#f8fafc;
}

.blog-section-heading{
    text-align:center;
    margin-bottom:60px;
}
.blog-section-heading h2{
    margin-top:15px;
    font-size:46px;
    color:#016002;
    font-weight:600;
}

/*==================================
            BLOG GRID
===================================*/

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/*==================================
            BLOG CARD
===================================*/

.blog-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.35s ease;
    cursor:pointer;
    display:flex;
    flex-direction:column;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.2);
}

.blog-image{
    width:420px;
    height:320px;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.45s;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

.blog-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.blog-date{
    display:block;
    color:#7a7a7a;
    font-size:14px;
    margin-bottom:16px;
    font-weight:500;
}

.blog-content h3{
    font-size:24px;
    line-height:1.35;
    color:#016002;
    margin-bottom:18px;
    transition:.3s;
}

.blog-card:hover h3{
    color:#000;
}

.blog-content p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    margin-bottom:28px;
    flex:1;
}

.blog-read-more{
    border:none;
    background:none;
    color:#016002;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}

.blog-read-more:hover{
    color:#A4CE3A;
    transform:translateX(5px);
}

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

@media(max-width:992px){

.blog-grid{
    grid-template-columns:repeat(2,1fr);
}

.blog-hero-content h1{
    font-size:46px;
}

.blog-section-heading h2{
    font-size:38px;
}

}

@media(max-width:768px){

.blog-hero{
    min-height:420px;
    padding:120px 20px 80px;
}

.blog-hero-content h1{
    font-size:34px;
}

.blog-hero-content p{
    font-size:16px;
}

.blog-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.blog-image{
    height:220px;
}

.blog-content{
    padding:22px;
}

.blog-content h3{
    font-size:22px;
}

.blog-section-heading h2{
    font-size:30px;
}

}

/*=========================================
        BLOG POPUP
==========================================*/

.blog-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
    z-index:99999;

    opacity:0;
    visibility:hidden;

    transition:.35s ease;
}

.blog-popup.active{
    opacity:1;
    visibility:visible;
}

/*=========================================
        POPUP WRAPPER
==========================================*/

.popup-wrapper{
    width:100%;
    max-width:1050px;
    max-height:92vh;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    display:flex;
    flex-direction:column;
    transform:translateY(40px);
    transition:.35s ease;
}

.blog-popup.active .popup-wrapper{
    transform:translateY(0);
}

/*=========================================
        CLOSE BUTTON
==========================================*/

.close-popup{
    position:absolute;
    top:18px;
    right:18px;
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#111;
    font-size:28px;
    cursor:pointer;
    z-index:100;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    transition:.3s;
}
.close-popup:hover{
    background:#A4CE3A;
    color:#fff;
}

/*=========================================
        HERO IMAGE
==========================================*/

.popup-image{

    width:100%;

    height:380px;

    overflow:hidden;

    background:#eee;

}

.popup-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

/*=========================================
        CONTENT
==========================================*/

.popup-content{
    padding:55px;
    overflow-y:auto;
}

#popupDate{

    display:inline-block;
	
    color:#016002;

    font-size:15px;

    font-weight:500;

    margin-bottom:18px;

}

#popupTitle{

    font-size:40px;

    color:#016002;

    line-height:1.2;

    margin-bottom:30px;

    font-weight:500;

}

#popupArticle{

    color:#000;

    font-size:17px;

    line-height:1.7;

}

/*=========================================
        ARTICLE STYLING
==========================================*/

#popupArticle p{

    margin-bottom:22px;

}

#popupArticle h2{

    font-size:30px;

    margin:40px 0 18px;

    color:#016002;

}

#popupArticle h3{

    font-size:24px;

    margin:30px 0 15px;

    color:#222;

}

#popupArticle img{

    max-width:100%;

    height:auto;

    border-radius:12px;

    margin:25px 0;

}

#popupArticle ul{

    margin:20px 0;

    padding-left:22px;

}

#popupArticle li{

    margin-bottom:12px;

}
  /*=========================================
            BLOG CTA
=========================================*/

.blog-cta{
    padding:90px 0;
    background: linear-gradient(to right, #A4CE3A, #ffffff);
}

.cta-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.cta-text{

    flex:1;

}
.cta-text h2{

    margin:18px 0;

    color:#000;

    font-size:44px;

    line-height:1.2;

}

.cta-text p{

    color:#000;

    font-size:18px;

    line-height:1.8;

    max-width:700px;

}

.cta-action{

    flex-shrink:0;

}

.cta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 42px;

    background:#A4CE3A;

    color:#111;

    border-radius:60px;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}

.cta-btn:hover{

    transform:translateY(-4px);

    background:#fff;

}

@media(max-width:992px){

.cta-content{

    flex-direction:column;

    text-align:center;

}

.cta-text h2{

    font-size:38px;

}

}

@media(max-width:768px){

.blog-cta{

    padding:70px 0;

}

.cta-text h2{

    font-size:30px;

}

.cta-text p{

    font-size:16px;

}

.cta-btn{

    width:100%;

}

}

/*=========================================
        SCROLLBAR
==========================================*/

.popup-content::-webkit-scrollbar{

    width:8px;

}

.popup-content::-webkit-scrollbar-thumb{

    background:#A4CE3A;

    border-radius:20px;

}

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

@media(max-width:992px){

.popup-wrapper{

    max-width:90%;

}

.popup-image{

    height:300px;

}

.popup-content{

    padding:40px;

}

#popupTitle{

    font-size:36px;

}

}

@media(max-width:768px){

.blog-popup{

    padding:15px;

}

.popup-wrapper{

    max-width:100%;

    max-height:95vh;

    border-radius:15px;

}

.popup-image{

    height:220px;

}

.popup-content{

    padding:25px;

}

#popupDate{

    font-size:14px;

}

#popupTitle{

    font-size:28px;

}

#popupArticle{

    font-size:16px;

    line-height:1.8;

}

.close-popup{

    width:40px;

    height:40px;

    font-size:24px;

    top:12px;

    right:12px;

}

}

/*=========================
CONTACT PAGE
===========================*/

:root{
    --green:#016002;
    --lime:#A4CE3A;
    --dark:#111;
    --text:#555;
    --light:#f8faf7;
    --white:#fff;
}

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

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}


.contact-hero{
    padding:90px 20px 60px;
    text-align:center;
    background:#fff;
}

.contact-section-tag{
    display:inline-block;
    background:#eef8ea;
    color:var(--green);
    padding:12px 28px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:25px;
}

.contact-heading h1{
    font-size:50px;
    font-weight:700;
    color:#111;
    margin-bottom:18px;
}

.contact-heading h1 span{
    color:var(--lime);
	font-style:italic;
}

.contact-heading p{
    max-width:700px;
    margin:auto;
    font-size:16px;
    color:#666;
    line-height:1.5;
}

.contact-section{
    padding:40px 0 70px;
    background:linear-gradient(
    180deg,
    #ffffff 0%,
    #fbfdfb 100%
    );
}

.contact-container{

    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info h2{
    font-size:34px;
    margin-bottom:15px;
    color:#111;
}

.info-text{
    color:#666;
    line-height:1.6;
    margin-bottom:20px;
}

.info-box{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:14px 18px;
    margin-bottom:12px;
    border-radius:16px;
    background:linear-gradient(90deg,#ffffff 0%,#ffffff 75%,#eef9ea 100%);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s ease;
}

.info-box:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.contact-icon{
    width:45px;
    height:45px;
    background:#016002;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:17px;
}

.info-content{
    flex:1;
}

.info-content h4{
    font-size:17px;
    color:#016002;
    margin-bottom:4px;
	
}

.info-content p{
    color:#555;
	 font-size:15px;
    line-height:1.45;
    margin-bottom:6px;
}

.action{
    display:inline-block;
    color:#016002;
	font-size:14px;
    margin-top:2px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.action:hover{
    color:#7fbf31;
    transform:translateX(5px);
}

.action:visited,
.action:focus,
.action:active{
    color:#016002;
    text-decoration:none;
}
/*==================================================
FORM
==================================================*/

.contact-form-area{

    background:#fff;
    border-radius:20px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.35s;
	padding:26px;
	height:fit-content;
    align-self:start;
}

.contact-form-area:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 55px rgba(0,0,0,.15);
}

.contact-form-area h2{

    margin-bottom:30px;
    font-size:34px;
}

.input-row{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;

    margin-bottom:20px;
}

.contact-form-area input,
.contact-form-area textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:10px;

    outline:none;

    font-size:16px;

    transition:.3s;
}

.contact-form-area input:focus,
.contact-form-area textarea:focus{

    border-color:var(--green);

    box-shadow:0 0 12px rgba(1,96,2,.15);
}

.contact-form-area textarea{

    resize:none;
    margin-bottom:25px;
}
.contact-form-area select{
    width:100%;
    padding:16px 18px;

    border:1px solid #d9d9d9;
    border-radius:12px;

    font-size:15px;
    font-family:'Inter',sans-serif;

    background:#fff;
    color:#555;

    outline:none;
    cursor:pointer;

    transition:.3s ease;
}

.contact-form-area select:focus{
    border-color:var(--green);
    box-shadow:0 0 0 4px rgba(1,96,2,.12);
}

.contact-form-area select option{
    color:#333;
}

.contact-form-area button{

    background:var(--green);
    color:#fff;

    border:none;

    padding:16px 40px;

    border-radius:10px;

    font-size:17px;

    cursor:pointer;

    transition:.3s;
}

.contact-form-area button:hover{

    background:#028104;

    transform:translateY(-3px);
}

/*==================================================
MAP
==================================================*/

.map-section{

    padding:70px 0;
}

.map-section h2{

    text-align:center;
    font-size:40px;
    margin-bottom:40px;
}

.map{

    width:90%;
    max-width:1300px;

    margin:auto;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.1);
}

.map iframe{

    width:100%;
    height:500px;
    border:none;
}

/*==================================================
FAQ
==================================================*/
.faq-section{
    padding:80px 0;
    background:#fafafa;
}

.faq-container{
    width:90%;
    max-width:1000px;
    margin:auto;
}

.faq-container h2{
    text-align:center;
    font-size:42px;
    margin-bottom:45px;
    color:#111;
}

.faq{
    background:#fff;
    border-radius:15px;
    margin-bottom:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    overflow:hidden;
}

.question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 30px;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.question:hover{
    background:#eef8ea;
}

.question span{
    font-size:30px;
    color:#016002;
    transition:.3s ease;
}

.answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease, padding .4s ease;
    padding:0 30px;
}

.answer p{
    color:#555;
    line-height:1.8;
    padding-bottom:20px;
}

.faq.active .answer{
    max-height:300px;
    padding-top:10px;
}

.faq.active .question span{
    transform:rotate(45deg);
}
/*
.faq-section{
    padding:80px 0;
    background:#fafafa;
}

.faq-container{
    width:90%;
    max-width:1000px;
    margin:auto;
}

.faq-container h2{
    text-align:center;
    font-size:42px;
    margin-bottom:45px;
    color:#111;
}

.faq{
    background:#fff;
    border-radius:15px;
    margin-bottom:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    overflow:hidden;
}

.question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 30px;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.question:hover{
    background:#eef8ea;
}

.question span{
    font-size:30px;
    color:#016002;
    transition:.3s ease;
}

.answer{
   max-height:0;
    overflow:hidden;
    padding:0 30px;
    transition:max-height .4s ease;
}

.answer p{
    color:#555;
    line-height:1.8;
    padding-bottom:20px;
}

.faq.active .answer{
    padding-top:10px;
}

.faq.active .question span{
    transform:rotate(45deg);
}

/* Floating WhatsApp */

.whatsapp-float{
    position:fixed;
    bottom:30px;
    right:30px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:34px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:9999;
    transition:.3s ease;
    animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform:scale(1.12);
    background:#1ebe5d;
    color:#fff;
}

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.5);
    }

    70%{
        box-shadow:0 0 0 15px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

@media(max-width:768px){

    .whatsapp-float{

        width:58px;
        height:58px;
        font-size:30px;
        right:20px;
        bottom:20px;

    }

}
/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.contact-container{

    grid-template-columns:1fr;
}

.input-row{

    grid-template-columns:1fr;
}

.contact-heading h1{

    font-size:42px;
}

.map iframe{

    height:350px;
}

.faq-container h2{

    font-size:34px;
}
}

@media(max-width:576px){

.contact-heading h1{

    font-size:34px;
}

.contact-form-area{

    padding:25px;
}

.info-box{

    flex-direction:column;
}

.icon{

    margin-bottom:10px;
}
}

/*
 ADMIN- LOGIN
 */

/* ===== ADMIN LOGIN PAGE ===== */

.admin-login-wrapper{
    min-height:calc(100vh - 200px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px 20px;
    background:#fafafa;
}

.admin-login-card{
    width:100%;
    max-width:420px;
    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    padding:40px 36px;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
}

.admin-login-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#eef6d8;
    color:#016002;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin:0 auto 20px;
}

.admin-login-card h2{
    text-align:center;
    font-size:26px;
    font-weight:800;
    color:#111;
    margin-bottom:8px;
}

.admin-login-card p{
    text-align:center;
    color:#666;
    font-size:14px;
    margin-bottom:28px;
}

.admin-login-error{
    background:#fdecea;
    color:#c0392b;
    border:1px solid #f5c6c0;
    border-radius:8px;
    padding:12px 16px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
    text-align:center;
}

.admin-login-card .input-group{
    margin-bottom:18px;
}

.admin-login-card label{
    display:block;
    font-size:13px;
    font-weight:700;
    color:#333;
    margin-bottom:6px;
}

.admin-login-card input{
    width:100%;
    padding:13px 16px;
    border:1.5px solid #e0e0e0;
    border-radius:10px;
    font-size:15px;
    outline:none;
    transition:.25s ease;
}

.admin-login-card input:focus{
    border-color:#016002;
    box-shadow:0 0 0 3px rgba(1,96,2,.1);
}

.admin-login-card button[type="submit"]{
    width:100%;
    background:#016002;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    margin-top:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition:.3s ease;
}

.admin-login-card button[type="submit"]:hover{
    background:#028504;
    transform:translateY(-2px);
}

/* Mobile */
@media(max-width:480px){
    .admin-login-card{
        padding:30px 24px;
    }
}

/*=========================================
ADMIN PANEL
=========================================*/

.admin-panel{
    width:92%;
    max-width:1400px;
    margin:70px auto;
}

/* Header */

.admin-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
    padding-bottom:20px;
    border-bottom:2px solid #e9e9e9;
}

.admin-top h2{
    font-size:34px;
    font-family:"Playfair Display",serif;
    color:#016002;
    margin:0;
}

.admin-top a{
    background:#016002;
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:40px;
    font-weight:600;
    transition:.35s;
}

.admin-top a:hover{
    background:#A4CE3A;
    color:#000;
    transform:translateY(-3px);
}

/* Table Card */

.admin-table-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    border:1px solid #edf0ed;
}

/* Responsive */

.admin-table-wrapper{
    overflow-x:auto;
}

/* Table */

.admin-table{
    width:100%;
    border-collapse:collapse;
    min-width:1100px;
}

/* Header */

.admin-table thead{
    background:linear-gradient(90deg,#016002,#A4CE3A);
}

.admin-table thead th{
    color:#fff;
    padding:18px;
    text-align:left;
    font-size:15px;
    letter-spacing:.5px;
    font-weight:600;
}

/* Body */

.admin-table tbody tr{
    transition:.3s;
}

.admin-table tbody tr:nth-child(even){
    background:#fafafa;
}

.admin-table tbody tr:hover{
    background:#eef9ea;
}

.admin-table td{
    padding:18px;
    border-bottom:1px solid #ececec;
    color:#444;
    font-size:15px;
    vertical-align:top;
}

/* Message Column */

.admin-table td:last-child{
    min-width:300px;
    line-height:1.7;
}

/* No Data */

.no-data{
    text-align:center;
    padding:80px 20px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.no-data h3{
    color:#016002;
    margin-bottom:15px;
}

.no-data p{
    color:#666;
}

/* Scrollbar */

.admin-table-wrapper::-webkit-scrollbar{
    height:8px;
}

.admin-table-wrapper::-webkit-scrollbar-thumb{
    background:#016002;
    border-radius:30px;
}

.admin-table-wrapper::-webkit-scrollbar-track{
    background:#f3f3f3;
}

/* Responsive */

@media(max-width:991px){

.admin-top{
    flex-direction:column;
    gap:20px;
    align-items:flex-start;
}

.admin-top h2{
    font-size:28px;
}

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

.site-footer{
    background:#016002;
    color:#fff;
    padding-top:70px;
    margin-top:100px;
}

.footer-container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    width:120px;
    margin-bottom:20px;
	object-fit:contain;
}

.footer-brand h3{
    font-size:30px;
    margin-bottom:20px;
}

.footer-brand p{
    color:#d8d8d8;
    line-height:1.8;
    max-width:420px;
}

.footer-col h4{
    color:#A4CE3A;
    font-size:18px;
    margin-bottom:25px;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:16px;
}

.footer-col ul li a{
    color:#fff;
    text-decoration:none;
    display:inline-block;
    transition:all .35s ease;
    position:relative;
	font-size:16px;
}

.footer-col ul li a:hover{
    color:#A4CE3A;
    transform:translateX(8px) scale(1.08);
}
.footer-col ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-4px;

    width:0;
    height:2px;

    background:#A4CE3A;

    transition:.35s;
}

.footer-col ul li a:hover::after{
    width:100%;
}

.footer-col a{
    text-decoration:none;
    color:#fff;
    transition:.3s;
}

.footer-col a:hover{
    color:#A4CE3A;
}

.contact-list{
    list-style:none;
}

.contact-list li{
    display:flex;
    align-items:center;
    gap:12px;
	font-size:16px;
	line-height:1.8;
    margin-bottom:18px;
    color:#fff;
}

.contact-list i{
    width:38px;
    height:38px;

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

    background:rgba(255,255,255,.08);

    border-radius:50%;

    color:#A4CE3A;

    transition:.3s;
}

.social-links{
    display:flex;
    gap:15px;
    margin-top:10px;
}

.social-links a{
    width:45px;
    height:45px;

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

    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;

    color:#fff;
    font-size:18px;

    transition:all .3s ease;
}

.social-links a:hover{
    background:#A4CE3A;
    color:#016002;
    border-color:#A4CE3A;
    transform:translateY(-4px);
}
.footer-bottom{
	background:#016002;
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:60px;
    padding:25px 0;
    text-align:center;
}

.footer-bottom p{
    color:#fff;
    font-size:14px;
}
.footer-bottom p a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.footer-bottom p a:hover{
    color:#A4CE3A;
    text-decoration:underline;
}
/* =====================================
   FOOTER - 1200px
===================================== */

@media (max-width:1200px){

    .footer-container{
        width:95%;
        gap:35px;
        grid-template-columns:1.8fr 1fr;
    }

    .footer-brand h3{
        font-size:26px;
    }

    .footer-brand p{
        font-size:15px;
    }

    .footer-col h4{
        font-size:17px;
    }

}
/* =====================================
   FOOTER - 768px
===================================== */

@media (max-width:768px){

    .site-footer{
        padding-top:50px;
        margin-top:70px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .footer-brand p{
        max-width:100%;
        margin:auto;
    }

    .footer-logo{
        margin:0 auto 20px;
        display:block;
    }

    .contact-list li{
        justify-content:center;
        text-align:left;
    }

    .social-links{
        justify-content:center;
    }

    .footer-col ul{
        padding:0;
    }

    .footer-col ul li{
        margin-bottom:14px;
    }

    .footer-bottom{
        margin-top:40px;
        padding:18px 15px;
    }

}
