/*==================================================
PRODUCT PAGE - GLOBAL
==================================================*/

:root {

    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --secondary: #f8f9fa;
    --text: #2c2c2c;
    --light: #ffffff;
    --border: #e8e8e8;
    --shadow: 0 15px 45px rgba(0,0,0,.08);

}

body{

    overflow-x:hidden;
    color:var(--text);

}

section{

    position:relative;

}

.section-badge{

    display:inline-block;

    background:#e9f7ec;

    color:var(--primary);

    padding:8px 20px;

    border-radius:50px;

    font-size:.85rem;

    font-weight:600;

    margin-bottom:18px;

    letter-spacing:.5px;

}

.section-title h2{

    font-size:2.4rem;

    font-weight:700;

    color:#222;

    margin-bottom:15px;

}

.section-title p{

    max-width:720px;

    margin:auto;

    color:#666;

    line-height:1.8;

}


/*==================================================
HERO
==================================================*/
.product-hero{
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Individual banners */

.rice-banner{
    background-image: url("../images/rice-banner.png");
}

.wheat-banner{
    background-image: url("../images/wheat-banner.png");
}

.rhodes-banner{
    background-image: url("../images/rhodes-banner.png");
}

.corn-banner{
    background-image: url("../images/corn-banner.png");
}
.animal-banner{
    background-image: url("../images/animal-banner.png");
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.72),
        rgba(0,0,0,.35)
    );

}

.product-hero .container{

    position:relative;

    z-index:5;

}


/*==================================================
BREADCRUMB
==================================================*/

.breadcrumb-nav{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:25px;

    font-size:.95rem;

}

.breadcrumb-nav a{

    color:#ffffff;

    text-decoration:none;

    transition:.3s;

}

.breadcrumb-nav a:hover{

    color:#8bc34a;

}

.breadcrumb-nav span{

    color:#ddd;

}


/*==================================================
HERO CONTENT
==================================================*/

.hero-badge{

    display:inline-block;

    background:rgba(255,255,255,.12);

    color:#fff;

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.18);

    padding:10px 24px;

    border-radius:40px;

    margin-bottom:25px;

    font-size:.85rem;

    letter-spacing:.5px;

}

.product-hero h1{

    color:#fff;

    font-size:3.6rem;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.product-hero p{

    color:#ececec;

    font-size:1.1rem;

    line-height:1.9;

    max-width:620px;

    margin-bottom:35px;

}


/*==================================================
HERO BUTTONS
==================================================*/

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.hero-buttons .btn{

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.hero-buttons .btn-success{

    background:var(--primary);

    border:none;

}

.hero-buttons .btn-success:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}

.hero-buttons .btn-outline-light:hover{

    color:var(--primary);

    transform:translateY(-4px);

}


/*==================================================
HERO IMAGE
==================================================*/

.hero-product-img{

    max-width:540px;

    filter:drop-shadow(0 30px 45px rgba(0,0,0,.35));

    animation:floatImage 4s ease-in-out infinite;

}

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}


/*==================================================
PRODUCT OVERVIEW
==================================================*/

.product-overview{

    background:#fff;

}

.product-overview img{

    border-radius:25px;

    transition:.45s;

    box-shadow:var(--shadow);

}

.product-overview img:hover{

    transform:scale(1.03);

}

.product-overview h2{

    font-size:2.2rem;

    font-weight:700;

    margin-bottom:25px;

}

.product-overview p{

    color:#666;

    line-height:1.9;

    margin-bottom:18px;

}


/*==================================================
HIGHLIGHTS
==================================================*/

.highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

.highlights div{

    background:#f8faf9;

    border:1px solid #edf2ed;

    border-radius:14px;

    padding:16px 20px;

    font-weight:600;

    display:flex;

    align-items:center;

    transition:.35s;

}

.highlights div:hover{

    background:#fff;

    transform:translateY(-5px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.highlights i{

    color:var(--primary);

    margin-right:12px;

    font-size:1.2rem;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.product-hero{

    padding:140px 0 80px;

    text-align:center;

    min-height:auto;

}

.product-hero h1{

    font-size:2.7rem;

}

.product-hero p{

    margin:auto auto 35px;

}

.hero-buttons{

    justify-content:center;

}

.hero-product-img{

    margin-top:50px;

    max-width:420px;

}

.product-overview{

    text-align:center;

}

.highlights{

    margin-top:30px;

}

}

@media(max-width:768px){

.product-hero h1{

    font-size:2.2rem;

}

.highlights{

    grid-template-columns:1fr;

}

.hero-buttons .btn{

    width:100%;

}

.hero-product-img{

    max-width:320px;

}

}

@media(max-width:576px){

.product-hero{

    padding-top:120px;

}

.hero-badge{

    font-size:.75rem;

}

.product-hero h1{

    font-size:1.9rem;

}

.section-title h2{

    font-size:1.9rem;

}

.product-overview h2{

    font-size:1.8rem;

}

}


/*==================================================
APPLICATIONS
==================================================*/

.applications-section{

    background:#f8fbf8;

}

.application-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    border:1px solid #eef2ee;

    transition:all .35s ease;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.application-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

    border-color:#2e7d32;

}

.application-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#43a047,#2e7d32);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

    transition:.35s;

}
.application-icon img{
    width:50px;
    height:50px;
    transition:.35s;
}

.application-card:hover .application-icon img{
    transform:scale(1.08);
}

.application-card:hover .application-icon{

    transform:rotate(8deg) scale(1.08);

}

.application-card h5{

    font-size:1.1rem;

    font-weight:700;

    color:#222;

    margin:0;

    line-height:1.5;

}



/*==================================================
FEATURES
==================================================*/

.features-section{

    background:#fff;

}

.feature-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    border-left:5px solid #2e7d32;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    display:flex;

    align-items:center;

    gap:18px;

    transition:.35s;

    height:100%;

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

.feature-card i{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#e8f5e9;

    color:#2e7d32;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    flex-shrink:0;

}

.feature-card h5{

    margin:0;

    font-size:1.1rem;

    font-weight:700;

    color:#222;

}



/*==================================================
SPECIFICATION TABLE
==================================================*/

.specification-section{

    background:#f8fbf8;

}

.specification-table{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

}

.specification-table th{

    width:35%;

    background:#2e7d32;

    color:#fff;

    font-weight:600;

    padding:18px 22px;

    vertical-align:middle;

    border:none;

}

.specification-table td{

    padding:18px 22px;

    vertical-align:middle;

    color:#555;

    border:none;

}

.specification-table tbody tr{

    border-bottom:1px solid #ececec;

}

.specification-table tbody tr:nth-child(even){

    background:#f9f9f9;

}

.specification-table tbody tr:hover{

    background:#edf7ee;

}



/*==================================================
PACKAGING
==================================================*/

.packaging-section{

    background:#fff;

}

.packaging-section img{

    border-radius:25px;

    transition:.4s;

    box-shadow:0 18px 45px rgba(0,0,0,.10);

}

.packaging-section img:hover{

    transform:scale(1.03);

}

.packaging-section h2{

    font-size:2.2rem;

    font-weight:700;

    margin-bottom:20px;

}

.packaging-section p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

}

.packaging-list{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.pack-item{

    background:#f8fbf8;

    border:1px solid #edf2ed;

    border-radius:15px;

    padding:18px 22px;

    display:flex;

    align-items:center;

    font-weight:600;

    transition:.35s;

}

.pack-item:hover{

    background:#fff;

    transform:translateX(8px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.pack-item i{

    color:#2e7d32;

    font-size:22px;

    margin-right:15px;

}



/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.feature-card{

    padding:25px;

}

.packaging-section{

    text-align:center;

}

.packaging-list{

    margin-top:30px;

}

}

@media(max-width:768px){

.application-card{

    padding:28px 20px;

}

.application-icon{

    width:70px;

    height:70px;

    font-size:28px;

}

.feature-card{

    flex-direction:column;

    text-align:center;

}

.feature-card i{

    margin-bottom:10px;

}

.specification-table th,

.specification-table td{

    padding:15px;

    font-size:.92rem;

}

.pack-item{

    justify-content:center;

    text-align:center;

}

}

@media(max-width:576px){

.specification-table th{

    width:40%;

    font-size:.88rem;

}

.specification-table td{

    font-size:.88rem;

}

.packaging-section h2{

    font-size:1.8rem;

}

}

/*==================================================
PRODUCT GALLERY
==================================================*/

.gallery-section{

    background:#f8fbf8;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    cursor:pointer;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.gallery-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.6s ease;

    display:block;

}

.gallery-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.45),
        transparent
    );

    opacity:0;

    transition:.4s;

    z-index:1;

}

.gallery-item::after{

    content:"\F52A";

    font-family:"bootstrap-icons";

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:65px;

    height:65px;

    border-radius:50%;

    background:rgba(255,255,255,.92);

    color:#2e7d32;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    opacity:0;

    transition:.35s;

    z-index:2;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item:hover::before{

    opacity:1;

}

.gallery-item:hover::after{

    opacity:1;

}



/*==================================================
FAQ
==================================================*/

.faq-section{

    background:#ffffff;

}

.faq-section .accordion{

    max-width:900px;

    margin:auto;

}

.faq-section .accordion-item{

    border:none;

    margin-bottom:18px;

    border-radius:18px !important;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.07);

}

.faq-section .accordion-button{

    background:#ffffff;

    padding:22px 28px;

    font-weight:600;

    color:#222;

    font-size:1.05rem;

    box-shadow:none;

}

.faq-section .accordion-button:not(.collapsed){

    background:#2e7d32;

    color:#fff;

}

.faq-section .accordion-button:focus{

    box-shadow:none;

}

.faq-section .accordion-body{

    padding:25px 28px;

    line-height:1.9;

    color:#666;

    background:#fafafa;

}



/*==================================================
RELATED PRODUCTS
==================================================*/

.related-products{

    background:#f8fbf8;

}

.related-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.07);

    transition:.4s;

    height:100%;

}

.related-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.related-card img{

    width:100%;

    height:220px;

    object-fit:cover;

    transition:.5s;

}

.related-card:hover img{

    transform:scale(1.08);

}

.related-content{

    padding:28px;

    text-align:center;

}

.related-content h5{

    font-size:1.3rem;

    font-weight:700;

    margin-bottom:18px;

    color:#222;

}

.related-content .btn{

    padding:12px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.related-content .btn:hover{

    transform:translateY(-4px);

}



/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.gallery-item img{

    height:280px;

}

.related-card img{

    height:200px;

}

}

@media(max-width:768px){

.gallery-item img{

    height:240px;

}

.related-content{

    padding:22px;

}

.related-content h5{

    font-size:1.15rem;

}

.faq-section .accordion-button{

    font-size:1rem;

    padding:18px 22px;

}

.faq-section .accordion-body{

    padding:20px 22px;

}

}

@media(max-width:576px){

.gallery-item img{

    height:210px;

}

.related-card img{

    height:180px;

}

.related-content{

    padding:20px;

}

.related-content .btn{

    width:100%;

}

}

/*==================================================
CALL TO ACTION
==================================================*/

.product-cta{

    position:relative;
    overflow:hidden;

    background:
        linear-gradient(rgba(17,38,23,.75), rgba(17,38,23,.75)),
        url("../images/hero.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    padding:100px 0;

}

.product-cta::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-180px;

    left:-180px;

}

.product-cta::after{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-150px;

    bottom:-150px;

}

.product-cta .container{

    position:relative;

    z-index:2;

}

.product-cta .section-badge{

    background:rgba(255,255,255,.15);

    color:#fff;

    border:1px solid rgba(255,255,255,.2);

}

.product-cta h2{

    color:#fff;

    font-size:2.8rem;

    font-weight:700;

    margin:20px 0;

}

.product-cta p{

    color:#ecf0ec;

    max-width:760px;

    margin:0 auto 40px;

    line-height:1.9;

    font-size:1.08rem;

}



/*==================================================
CTA BUTTONS
==================================================*/

.cta-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

}

.cta-buttons .btn{

    padding:15px 36px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.cta-buttons .btn-success{

    background:#fff;

    color:#2e7d32;

    border:none;

}

.cta-buttons .btn-success:hover{

    background:#f4f4f4;

    transform:translateY(-5px);

}

.cta-buttons .btn-light:hover{

    transform:translateY(-5px);

}



/*==================================================
SMOOTH SECTION SPACING
==================================================*/

.product-overview,
.applications-section,
.features-section,
.specification-section,
.packaging-section,
.gallery-section,
.faq-section,
.related-products{

    padding-top:100px;

    padding-bottom:100px;

}



/*==================================================
GLOBAL IMAGE STYLE
==================================================*/

img{

    max-width:100%;

}

.img-fluid{

    transition:.45s ease;

}

.img-fluid:hover{

    transform:scale(1.02);

}



/*==================================================
GLOBAL BUTTONS
==================================================*/

.btn{

    transition:.35s ease;

}

.btn:hover{

    transform:translateY(-3px);

}



/*==================================================
SECTION ANIMATION
==================================================*/

.application-card,
.feature-card,
.related-card,
.pack-item,
.highlights div{

    transition:all .35s ease;

}



/*==================================================
CUSTOM SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f3f3f3;

}

::-webkit-scrollbar-thumb{

    background:#2e7d32;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#1b5e20;

}



/*==================================================
TEXT SELECTION
==================================================*/

::selection{

    background:#2e7d32;

    color:#fff;

}



/*==================================================
UTILITY
==================================================*/

.shadow-hover{

    transition:.35s;

}

.shadow-hover:hover{

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.rounded-xl{

    border-radius:24px;

}

.bg-soft{

    background:#f8fbf8;

}



/*==================================================
LARGE DEVICES
==================================================*/

@media(min-width:1400px){

.container{

    max-width:1320px;

}

.product-hero h1{

    font-size:4rem;

}

.hero-product-img{

    max-width:620px;

}

}



/*==================================================
TABLET
==================================================*/

@media(max-width:991px){

.product-cta{

    padding:80px 0;

}

.product-cta h2{

    font-size:2.3rem;

}

.product-overview,
.applications-section,
.features-section,
.specification-section,
.packaging-section,
.gallery-section,
.faq-section,
.related-products{

    padding-top:80px;

    padding-bottom:80px;

}

}



/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

.product-cta{

    padding:70px 20px;

}

.product-cta h2{

    font-size:2rem;

}

.product-cta p{

    font-size:1rem;

}

.cta-buttons{

    flex-direction:column;

}

.cta-buttons .btn{

    width:100%;

}

.section-title h2{

    font-size:2rem;

}

.product-overview,
.applications-section,
.features-section,
.specification-section,
.packaging-section,
.gallery-section,
.faq-section,
.related-products{

    padding-top:70px;

    padding-bottom:70px;

}

}



/*==================================================
SMALL MOBILE
==================================================*/

@media(max-width:576px){

.product-cta h2{

    font-size:1.7rem;

}

.section-title h2{

    font-size:1.7rem;

}

.section-badge{

    font-size:.75rem;

}

.product-overview,
.applications-section,
.features-section,
.specification-section,
.packaging-section,
.gallery-section,
.faq-section,
.related-products{

    padding-top:60px;

    padding-bottom:60px;

}

}



/*=====================================
        PREMIUM FOOTER
=====================================*/

.footer{

    position:relative;

    overflow:hidden;

    padding:90px 0 30px;

    color:#ffffff;

    background:
    linear-gradient(
    135deg,
    #07241c 0%,
    #0f5132 45%,
    #14532d 100%);

    border-top:4px solid #25D366;

}

/*=====================================
World Map Overlay
=====================================*/

.footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../images/dotted-world-map.svg")
    center center;

    background-repeat:no-repeat;

    background-size:70%;

    opacity:.08;

    pointer-events:none;

}

/*=====================================
Green Glow Effect
=====================================*/

.footer::after{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    top:-280px;

    right:-220px;

    border-radius:50%;

    background:radial-gradient(

        rgba(37,211,102,.08),

        transparent 70%

    );

    pointer-events:none;

}

/*=====================================
Container
=====================================*/

.footer .container{

    position:relative;

    z-index:2;

}

/*=====================================
Floating Particles
=====================================*/

.footer-particles{

    position:absolute;

    inset:0;

    pointer-events:none;

    overflow:hidden;

}

.footer-particles span{

    position:absolute;

    width:8px;

    height:8px;

    border-radius:50%;

    background:rgba(124,252,0,.35);

    animation:floatParticle linear infinite;

}

/* Particle Positions */

.footer-particles span:nth-child(1){

left:8%;
bottom:-30px;
animation-duration:12s;

}

.footer-particles span:nth-child(2){

left:20%;
bottom:-60px;
animation-duration:15s;

}

.footer-particles span:nth-child(3){

left:40%;
bottom:-40px;
animation-duration:18s;

}

.footer-particles span:nth-child(4){

left:60%;
bottom:-20px;
animation-duration:14s;

}

.footer-particles span:nth-child(5){

left:78%;
bottom:-60px;
animation-duration:17s;

}

.footer-particles span:nth-child(6){

left:92%;
bottom:-40px;
animation-duration:13s;

}

/* Animation */

@keyframes floatParticle{

0%{

transform:translateY(0) scale(.6);

opacity:0;

}

25%{

opacity:.6;

}

100%{

transform:translateY(-650px) scale(1.4);

opacity:0;

}

}

/*=====================================
Footer Logo
=====================================*/

.footer-logo{

    height:72px;

    transition:.4s ease;

}

.footer-logo:hover{

    transform:scale(1.08);

    filter:drop-shadow(0 0 15px rgba(124,252,0,.45));

}

/*=====================================
Company About
=====================================*/

.footer-about{

    margin-top:25px;

    color:#d8d8d8;

    line-height:1.9;

    font-size:16px;

    max-width:340px;

}
/*=====================================
        FOOTER HEADINGS
=====================================*/

.footer h5{

    position:relative;

    font-size:22px;

    font-weight:700;

    color:#ffffff;

    margin-bottom:35px;

    letter-spacing:.5px;

}

.footer h5::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-12px;

    width:55px;

    height:3px;

    background:#25D366;

    border-radius:30px;

    box-shadow:0 0 10px rgba(37,211,102,.45);

}

/*=====================================
Quick Links & Products
=====================================*/

.footer-links{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-links li{

    margin-bottom:15px;

}

.footer-links a{

    display:inline-block;

    color:#d8d8d8;

    text-decoration:none;

    transition:.35s ease;

    font-size:16px;

}

.footer-links a:hover{

    color:#7CFC00;

    transform:translateX(8px);

}

.footer-links li:not(:has(a)){

    color:#d8d8d8;

    font-size:16px;

    transition:.35s;

    cursor:default;

}

.footer-links li:not(:has(a)):hover{

    color:#7CFC00;

    transform:translateX(8px);

}

/*=====================================
Office Section
=====================================*/

.office-box{

    position:relative;

    padding-left:22px;

    margin-bottom:28px;

    border-left:3px solid #25D366;

    transition:.35s ease;

}

.office-box:hover{

    transform:translateY(-6px);

    border-left-color:#7CFC00;

}

.office-box h6{

    font-size:18px;

    font-weight:600;

    color:#ffffff;

    margin-bottom:15px;

    transition:.35s;

}

.office-box:hover h6{

    color:#7CFC00;

}

.office-box p{

    color:#d8d8d8;

    line-height:1.8;

    margin-bottom:10px;

    font-size:15px;

}

.office-box i{

    color:#25D366;

    width:22px;

    margin-right:8px;

    transition:.35s;

}

.office-box:hover i{

    color:#7CFC00;

}

/*=====================================
Footer Email
=====================================*/

.footer-email{

    display:flex;

    align-items:center;

    margin-top:30px;

}

.footer-email i{

    color:#25D366;

    font-size:18px;

    margin-right:12px;

}

.footer-email a{

    color:#d8d8d8;

    text-decoration:none;

    transition:.35s;

    word-break:break-word;

}

.footer-email a:hover{

    color:#7CFC00;

}

/*=====================================
Divider
=====================================*/

.footer-divider{

    border:none;

    height:1px;

    margin:60px 0 30px;

    background:linear-gradient(

        to right,

        transparent,

        rgba(255,255,255,.25),

        transparent

    );

}

/*=====================================
SOCIAL ICONS
=====================================*/

.social-links{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:14px;

}

.social-links a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    border-radius:50%;

    color:#ffffff;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    transition:.4s ease;

}

/* Hover */

.social-links a:hover{

    background:#25D366;

    transform:translateY(-6px) scale(1.1);

    box-shadow:0 10px 30px rgba(37,211,102,.35);

}

.social-links i{

    font-size:18px;

}

/*=====================================
COPYRIGHT
=====================================*/

.copyright{

    color:#cfcfcf;

    font-size:15px;

    margin:0;

    letter-spacing:.3px;

}

.copyright span{

    color:#7CFC00;

    font-weight:600;

}

/*=====================================
BOTTOM ROW
=====================================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

/*=====================================
SMOOTH HOVER EFFECTS
=====================================*/

.footer h5{

    transition:.35s;

}

.footer h5:hover{

    color:#7CFC00;

}

.footer-about{

    transition:.35s;

}

.footer-about:hover{

    color:#ffffff;

}

/*=====================================
ICON ANIMATION
=====================================*/

.office-box i{

    transition:.35s;

}

.office-box:hover i{

    transform:scale(1.2);

}

/*=====================================
EMAIL ICON
=====================================*/

.footer-email i{

    transition:.35s;

}

.footer-email:hover i{

    transform:rotate(-15deg) scale(1.2);

}

/*=====================================
FOOTER FADE EFFECT
=====================================*/

.footer{

    animation:footerFade .8s ease;

}

@keyframes footerFade{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}
@media (max-width:767px){

.footer-logo{

    height:60px;

    background:#ffffff;

    padding:12px 18px;

    border-radius:50px;

    display:inline-block;

    box-shadow:
        0 10px 25px rgba(0,0,0,.15),
        0 0 0 1px rgba(255,255,255,.3);

}

}

/*=====================================
BONUS
SCROLL TO TOP BUTTON
=====================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:#198754;

    color:#ffffff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:24px;

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.back-to-top.active{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:#25D366;

    transform:translateY(-6px);

}


/*=====================================
TABLET RESPONSIVE
=====================================*/

@media (max-width:991px){

.footer{

    padding:70px 0 25px;

    text-align:center;

}

.footer-logo{

    margin:0 auto;

    display:block;

}

.footer-about{

    max-width:100%;

    margin:25px auto 35px;

}

.footer h5{

    margin-top:20px;

}

.footer h5::after{

    left:50%;

    transform:translateX(-50%);

}

.footer-links{

    margin-bottom:30px;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a:hover{

    transform:none;

}

.office-box{

    border-left:none;

    border-top:3px solid #25D366;

    padding:20px 0 0;

    margin-top:25px;

    text-align:center;

}

.office-box:hover{

    transform:none;

    background:rgba(255,255,255,.04);

}

.footer-email{

    justify-content:center;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

}

.social-links{

    justify-content:center;

    margin-top:15px;

}

.footer::before{

    background-size:120%;

}

}

/*=====================================
MOBILE RESPONSIVE
=====================================*/

@media (max-width:767px){

.footer{

    padding:60px 0 20px;

}

.footer-logo{

    height:60px;

}

.footer h5{

    font-size:20px;

    margin-bottom:25px;

}

.footer-about{

    font-size:15px;

    line-height:1.8;

}

.footer-links a{

    font-size:15px;

}

.office-box h6{

    font-size:17px;

}

.office-box p{

    font-size:14px;

}

.footer-email{

    flex-direction:column;

    gap:10px;

}

.footer-email i{

    margin-right:0;

}

.social-links{

    gap:10px;

}

.social-links a{

    width:44px;

    height:44px;

}

.copyright{

    font-size:14px;

    line-height:1.8;

}

.footer-particles{

    display:none;

}

}

/*=====================================
SMALL MOBILE
=====================================*/

@media (max-width:480px){

.footer{

    padding:50px 0 20px;

}

.footer-logo{

    height:55px;

}

.footer h5{

    font-size:18px;

}

.office-box{

    padding-top:18px;

}

.office-box h6{

    font-size:16px;

}

.office-box p{

    font-size:13px;

}

.social-links a{

    width:40px;

    height:40px;

}

.social-links i{

    font-size:16px;

}

}

/*=====================================
TEXT SELECTION
=====================================*/

.footer ::selection{

    background:#25D366;

    color:#fff;

}

/*=====================================
SMOOTH SCROLL
=====================================*/

html{

    scroll-behavior:smooth;

}

/*=====================================
FOCUS STATES
=====================================*/

.footer a:focus{

    outline:2px solid #25D366;

    outline-offset:4px;

    border-radius:4px;

}

/*=====================================
FINAL POLISH
=====================================*/

.footer *{

    transition:

        color .3s ease,

        background .3s ease,

        border-color .3s ease,

        transform .3s ease,

        box-shadow .3s ease;

}






/*=====================================
FLOATING BUTTONS
=====================================*/

.floating-btn{

    position:fixed;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#fff;

    font-size:28px;

    z-index:9999;

    transition:.35s ease;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

}

/*==============================
WHATSAPP
==============================*/

.whatsapp-btn{

    bottom:25px;

    background:#25D366;

    animation:whatsappPulse 2s infinite;

}

.whatsapp-btn:hover{

    background:#1EBE5D;

    color:#fff;

    transform:translateY(-6px) scale(1.08);

}

/*==============================
BACK TO TOP
==============================*/

.back-to-top{

    bottom:100px;

    background:#198754;

    opacity:0;

    visibility:hidden;

}

.back-to-top.active{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:#146c43;

    color:#fff;

    transform:translateY(-6px);

}

/*==============================
WHATSAPP PULSE
==============================*/

@keyframes whatsappPulse{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.45);

}

70%{

box-shadow:0 0 0 18px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}

/*==============================
TABLET
==============================*/

@media(max-width:991px){

.floating-btn{

width:56px;

height:56px;

font-size:26px;

right:20px;

}

.whatsapp-btn{

bottom:20px;

}

.back-to-top{

bottom:90px;

}

}

/*==============================
MOBILE
==============================*/

@media(max-width:576px){

.floating-btn{

width:52px;

height:52px;

font-size:24px;

right:16px;

}

.whatsapp-btn{

bottom:18px;

}

.back-to-top{

bottom:82px;

}

}


/*--------------------------------------------------------------
# Product FAQ
--------------------------------------------------------------*/

.product-faq {
  background: #f8f9fa;
}

.product-faq .section-title span {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.product-faq .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.product-faq .section-title p {
  max-width: 700px;
  margin: auto;
  color: #6c757d;
}

.product-faq .accordion-item {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,.06);
  transition: all .3s ease;
}

.product-faq .accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,.10);
}

.product-faq .accordion-button {
  background: #fff;
  color: var(--heading-color);
  font-size: 17px;
  font-weight: 600;
  padding: 18px 24px;
  box-shadow: none;
}

.product-faq .accordion-button:not(.collapsed) {
  background: var(--accent-color);
  color: #fff;
}

.product-faq .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.product-faq .accordion-body {
  background: #fff;
  color: #6c757d;
  font-size: 15px;
  line-height: 1.8;
  padding: 22px 24px;
}

/* Bootstrap icon */

.product-faq .accordion-button::after {
  transition: all .3s ease;
}

.product-faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

/* Mobile */

@media (max-width: 768px) {

  .product-faq .section-title h2 {
    font-size: 1.75rem;
  }

  .product-faq .accordion-button {
    font-size: 16px;
    padding: 16px 18px;
  }

  .product-faq .accordion-body {
    padding: 18px;
    font-size: 14px;
  }

}



/*==================================================
END
==================================================*/