* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f6f1e7;
    color: #2e4a2e;
    position: relative;
}
body::before{
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background-image: url("image/brownfly-logo/brownflylogo3.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.02;
    pointer-events: none;
    z-index: -1;
}


header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(46, 74, 46, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 1000;
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f6f1e7;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.logo-box {
    width: 38px;
    height: 38px;
    background: #d2b48c;
    border-radius: 10px;
    position: relative;
}


.logo-box::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #2e4a2e;
    border-radius: 50%;
    top: 12px;
    left: 12px;
}


nav a {
    color: #f6f1e7;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #d2b48c;
}

.hero {
    height: 100vh;
    background:
        linear-gradient(rgba(46,74,46,0.75), rgba(210,180,140,0.35)),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: 54px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 18px;
    max-width: 650px;
    margin: auto;
    opacity: 0.95;
}

.btn {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 25px;
    background: #d2b48c;
    color: #2e4a2e;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #caa574;
    transform: scale(1.05);
}


section {
    padding: 90px 20px;
    text-align: center;
}

h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2e4a2e;
    letter-spacing: 0.5px;
}


.about {
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
    font-size: 16px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    width: 270px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-bottom: 5px solid #2e4a2e;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}


.contact {
    background:
        linear-gradient(rgba(246,241,231,0.95), rgba(246,241,231,0.95)),
        url('image/brownflylogo.jpg');
    background-size: cover;
}

form {
    max-width: 450px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

button {
    padding: 12px;
    border: none;
    background: #2e4a2e;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background: #3f6b3f;
}


footer {
    background: #2e4a2e;
    color: white;
    text-align: center;
    padding: 20px;
}




header img {
    width: 150px;      
    height: 60px;      
    object-fit: contain;
    border-radius: 10px;
    background: rgba(232, 249, 226, 0.88);
    padding: 8px 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}
header img:hover {
    transform: scale(1.05);
}


header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}


header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}




nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

nav a {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #f6f1e7;
    text-transform: uppercase;
    position: relative;
}


nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #d2b48c;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}


#services {
    background: 
        linear-gradient(rgba(46, 74, 46, 0.85), rgba(46, 74, 46, 0.85)),
        url('image/brownflylogo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
    color: #f6f1e7;
}


#services h2 {
    color: #f6f1e7;
    font-size: 36px;
    margin-bottom: 30px;
}


.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}


.card {
    width: 270px;
    padding: 25px;
    border-radius: 12px;
    background: rgba(246, 241, 231, 0.12);
    border: 1px solid rgba(210, 180, 140, 0.4);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
    color: #f6f1e7;
}


.card h3 {
    color: #d2b48c;
    margin-bottom: 10px;
}

.card p {
    color: #f6f1e7;
    opacity: 0.9;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(246, 241, 231, 0.18);
}

nav a {
    transition: 0.3s ease;
}

nav a.clicked {
    transform: scale(0.9);
}

nav a.active {
    color: #d2b48c;
    border-bottom: 2px solid #d2b48c;
    padding-bottom: 4px;
}

.page-banner{
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 40px 40px;
}

.banner-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.page-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-banner h1{
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    padding: 18px 40px;
    border-radius: 20px;
    color: #fff;
    font-size: 2.8rem;
    text-align: center;
    text-shadow: 0 4px 15px rgba(0,0,0,.4);
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.about-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-image img{
    width:50px;
    height:50px;
    object-fit:cover;
    border-radius:20px;
    background:rgb(230, 247, 215);
    padding:8px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}
.about-container{
    max-width:1200px;
    margin:100px auto;
    padding:50px;
    background:rgb(232, 249, 226);
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.about-text{
    flex:1;
}

.about-text h2{
    color:#2e4a2e;
    font-size:2.5rem;
    margin-bottom:25px;
    position:relative;
}

.about-text h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:#d2b48c;
    margin-top:10px;
    border-radius:10px;
}

.about-text p{
    font-size:1.05rem;
    line-height:2;
    color:#555;
    text-align:justify;
}

.about-image{
    flex:0 0 300px;
    display:flex;
    justify-content:center;
}

.about-image img{
    width:280px;
    height:280px;
    object-fit:cover;
    border-radius:20px;
    background:white;
    padding:8px;
    border:4px solid #d2b48c;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}




.vision-mission{
    max-width:1200px;
    margin:80px auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.info-card{
    background:rgb(232, 249, 226);
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-top:5px solid #d2b48c;
    transition:.3s ease;
}

.info-card:hover{
    transform:translateY(-8px);
}

.info-card h3{
    color:#2e4a2e;
    font-size:1.8rem;
    margin-bottom:20px;
    text-align:center;
    position:relative;
}

.info-card h3::after{
    content:"";
    display:block;
    width:60px;
    height:3px;
    background:#d2b48c;
    margin:10px auto 0;
    border-radius:10px;
}

.info-card p{
    color:#555;
    line-height:1.9;
    text-align:justify;
    font-size:1rem;
}

.company-strengths,
.team-section,
.culture-section,
.products-overview{
    max-width:1200px;
    margin:80px auto;
}

.company-strengths h2,
.team-section h2,
.culture-section h2,
.products-overview h2{
    color:#2e4a2e;
    font-size:2.2rem;
    text-align:center;
    margin-bottom:30px;
}

.company-strengths .info-card,
.team-section .info-card,
.culture-section .info-card,
.products-overview .info-card{
    background:rgb(232, 249, 226);
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-top:5px solid #d2b48c;
    transition:.3s ease;
}

.company-strengths .info-card:hover,
.team-section .info-card:hover,
.culture-section .info-card:hover,
.products-overview .info-card:hover{
    transform:translateY(-8px);
}

.company-strengths li,
.culture-section li{
    color:#555;
    line-height:1.9;
    margin-bottom:12px;
}

.team-section p,
.products-overview p{
    color:#555;
    line-height:1.9;
    text-align:justify;
}

.culture-section ol{
    padding-left:25px;
}


.values{
    max-width:1200px;
    margin:80px auto;
}

.values h2{
    color:#2e4a2e;
    font-size:2.2rem;
    text-align:center;
    margin-bottom:40px;
}

.value-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.value-card{
    background:rgb(232, 249, 226);
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-top:5px solid #d2b48c;
    transition:.3s ease;
    text-align:center;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card h4{
    color:#2e4a2e;
    font-size:1.4rem;
    margin-bottom:15px;
}

.value-card h4::after{
    content:"";
    display:block;
    width:50px;
    height:3px;
    background:#d2b48c;
    margin:10px auto 0;
    border-radius:10px;
}

.value-card p{
    color:#555;
    line-height:1.8;
    margin-top:15px;
}



.about-icon{
    display:block;
    font-size:3rem;
    color:#2e4a2e;
    text-align:center;
    margin-bottom:15px;
}

.value-icon{
    font-size:3rem;
    color:#2e4a2e;
    margin-bottom:15px;
    display:block;
}

.company-strengths h2 i,
.team-section h2 i,
.timeline h2 i,
.values h2 i,
.culture-section h2 i,
.products-overview h2 i{
    color:#2e4a2e;
    margin-right:10px;
    vertical-align:middle;
    font-size:2.2rem;
}

.info-card:hover .about-icon,
.value-card:hover .value-icon{
    color:#d2b48c;
    transition:.3s ease;
}
.bx-cog{
    font-size:3rem;
    color:#2e4a2e;
    display:block;
    text-align:center;
    margin-bottom:15px;
    transition:.3s ease;
}

.bx-cog:hover{
    color:#d2b48c;
    transform:rotate(180deg);
}
.bx-award{
    font-size:2.2rem;
    color:#2e4a2e;
    transition:.3s ease;
}

.bx-award:hover{
    color:#d2b48c;
    transform:rotate(360deg);
}

.bx-group{
    font-size:2.2rem;
    color:#2e4a2e;
    transition:.3s ease;
}

h2:hover .bx-group{
    color:#d2b48c;
    transform:translateY(-3px);
}
.bx-group:hover{
    color:#d2b48c;
    transform:rotate(360deg);
}
.bx-building-house{
    font-size:2.2rem;
    color:#2e4a2e;
    transition:.3s ease;
}

h2:hover .bx-building-house{
    color:#d2b48c;
    transform:scale(1.1);
}
.bx-building-house:hover{
    color:#d2b48c;
    transform:rotate(360deg);
}

.products-section{
    background: rgb(232, 249, 226);
    background-image: url("image/brownflylogo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 6%;
    position: relative;
    z-index: 1;
}

.products-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(232, 249, 226, 0.88);
    z-index: -1;
}

.products-section h2{
    text-align: center;
    font-size: 2.8rem;
    color: #2e4a2e;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
}

.products-section h2::after{
    content: "";
    width: 80px;
    height: 4px;
    background: #d2b48c;
    display: block;
    margin: 14px auto 0;
    border-radius: 50px;
}

.product-table{
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.product-row{
    background: #fff;
    border: 2px solid #d2b48c;
    border-radius: 18px;
    padding: 25px 20px;
    transition: .3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,.05);
    height: 100%;
}

.product-row:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

.product-logo{
    width: 100%;
    height: 170px;
    background: rgba(210,180,140,.12);
    border: 1px solid #d2b48c;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 15px;
}

.product-logo img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: .3s ease;
}

.product-row:hover .product-logo img{
    transform: scale(1.06);
}

.product-desc{
    color: #4a5a4a;
    font-size: .95rem;
    line-height: 1.7;
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.site-footer {
    background: #2e4a2e;
    color: #f6f1e7;
    text-align: center;
}


.footer-associate {
    text-align: center;
    margin-top: 20px;
}

.associate-logos img{
    width: 350px;
    height: 180px;
    object-fit: contain;

    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;

    transition: transform 0.3s ease;
}

.associate-logos img:hover{
    transform: scale(1.08);
}

.footer-divider {
    width: 80%;
    height: 1px;
    background: rgba(246,241,231,0.3);
    margin: 20px auto;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.85;
    margin: 5px 0;
}
@media (max-width: 768px){

    .menu-toggle{
        display: block;
        width: 35px;
        height: 28px;
        position: relative;
        cursor: pointer;
    }

    .menu-toggle span{
        position: absolute;
        width: 100%;
        height: 3px;
        background: #f6f1e7;
        border-radius: 10px;
        transition: all .3s ease;
    }

    .menu-toggle span:nth-child(1){
        top: 0;
    }

    .menu-toggle span:nth-child(2){
        top: 12px;
    }

    .menu-toggle span:nth-child(3){
        top: 24px;
    }

    .menu-toggle.active span:nth-child(1){
        top: 12px;
        transform: rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2){
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3){
        top: 12px;
        transform: rotate(-45deg);
    }

  nav{
        opacity: 0;
        transform: translateY(-20px);
        transition: all .35s ease;
        pointer-events: none;
    }

    nav.active{
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    nav a{
        opacity: 0;
        transform: translateY(-15px);
        transition: all .4s ease;
    }

    nav.active a{
        opacity: 1;
        transform: translateY(0);
    }

    nav.active a:nth-child(1){ transition-delay: .05s; }
    nav.active a:nth-child(2){ transition-delay: .10s; }
    nav.active a:nth-child(3){ transition-delay: .15s; }
    nav.active a:nth-child(4){ transition-delay: .20s; }
    nav.active a:nth-child(5){ transition-delay: .25s; }
    nav.active a:nth-child(6){ transition-delay: .30s; }

    nav a{
    transition: all .3s ease;
}

    nav a:hover{
    transform: translateX(5px);
}

    header{
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    header img{
        width: 120px;
        height: auto;
    }

    .hero h1{
        font-size: 42px;
    }

    .hero p{
        font-size: 16px;
    }

    .about-container{
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 35px;
    }

    .about-text p{
        text-align: left;
    }

    .vision-mission{
        grid-template-columns: 1fr;
    }

    .product-table{
        grid-template-columns: repeat(2, 1fr);
    }

    .value-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 768px){

    header{
        padding: 12px 18px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .logo{
        font-size: 16px;
        gap: 8px;
    }

    header img{
        width: 42px;
        height: 42px;
        border-radius: 8px;
        padding: 3px;
    }

    nav{
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
        margin-top: 8px;
    }

    nav a{
        font-size: 13px;
        margin: 0;
    }

    .hero{
        height: 85vh;
        padding: 20px;
    }

    .hero h1{
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p{
        font-size: .95rem;
        max-width: 100%;
        padding: 0 10px;
    }

    .btn{
        padding: 10px 22px;
        font-size: .9rem;
    }

    section{
        padding: 70px 15px;
    }

    h2{
        font-size: 2rem;
    }

    .cards{
        flex-direction: column;
        align-items: center;
    }

    .card{
        width: 100%;
        max-width: 340px;
    }

    .page-banner{
        height: 38vh;
        border-radius: 0 0 25px 25px;
    }

    .page-banner h1{
        font-size: 1.8rem;
        padding: 14px 25px;
        width: 90%;
    }

    .about-container{
        margin: 60px auto;
        padding: 30px 20px;
        gap: 30px;
    }

    .about-text h2{
        font-size: 2rem;
    }

    .about-text h2::after{
        margin: 10px auto 0;
    }

    .about-text p{
        font-size: .95rem;
        line-height: 1.8;
        text-align: left;
    }

    .about-image{
        flex: unset;
    }

    .about-image img{
        width: 220px;
        height: 220px;
    }

    .vision-mission{
        gap: 20px;
        margin: 60px auto;
        padding: 0 15px;
    }

    .info-card{
        padding: 28px 22px;
    }

    .info-card h3{
        font-size: 1.5rem;
    }

    .info-card p{
        text-align: left;
    }

    .company-strengths,
    .team-section,
    .culture-section,
    .products-overview,
    .values{
        margin: 60px auto;
        padding: 0 15px;
    }

    .company-strengths h2,
    .team-section h2,
    .culture-section h2,
    .products-overview h2,
    .values h2{
        font-size: 1.9rem;
    }

    .value-grid{
        grid-template-columns: 1fr;
    }

    .value-card{
        padding: 30px 25px;
    }

    .products-section{
        padding: 80px 5%;
        background-attachment: scroll;
    }

    .products-section h2{
        font-size: 2rem;
    }

    .product-table{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-row{
        padding: 22px 18px;
    }

    .product-logo{
        height: 150px;
    }

    .product-desc{
        font-size: .9rem;
    }

    .associate-logos{
        gap: 15px;
    }

    .associate-logos img{
        width: 250px;
        height: 100px;
    }

    .footer-associate h3{
        font-size: 1.3rem;
    }
}

@media (max-width: 768px){

    header{
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .menu-toggle{
        display: block;
        color: #f6f1e7;
        font-size: 2rem;
        cursor: pointer;
    }

    nav{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(46,74,46,.98);
        display: none;
        flex-direction: column;
        padding: 10px 0;
    }

    nav.active{
        display: flex;
    }

    nav a{
        padding: 15px;
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .hero h1{
        font-size: 1.6rem;
    }

    .hero p{
        font-size: .85rem;
    }

    h2{
        font-size: 1.6rem;
    }

    .page-banner{
        height: 32vh;
    }

    .page-banner h1{
        font-size: 1.3rem;
        padding: 12px 18px;
    }

    .about-image img{
        width: 180px;
        height: 180px;
    }

    .card,
    .value-card,
    .info-card{
        padding: 22px 18px;
    }

    .associate-logos img{
        width: 150px;
        height: 100px;
    }

    .footer-bottom p{
        font-size: 12px;
    }
}
@media (max-width: 768px){

    .products-section{
        background-size: 1000px;
        background-position: center center;
        background-attachment: scroll;
    }

}

.partners-section{
    width: 100%;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.partners-title{
    text-align: center;
    font-size: 3rem;
    color: #4d7c2f;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-underline-offset: 10px;
}

.partner-box{
    background: #fff;
    border: 2px solid #d2b48c;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.partner-header{
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #4d7c2f;
    padding: 15px;
    border-bottom: 2px solid #d2b48c;
    text-transform: uppercase;
}

.partner-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 50px;
}

.partner-logo{
    flex: 0 0 calc(33.333% - 27px);
    min-height: 280px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo img{
    max-width: 100%;
    max-height: 250px; 
    object-fit: contain;
    transition: .3s ease;
}

.partner-logo:hover img{
    transform: scale(1.08);
}

.partners-description{
    text-align: center;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 20px;
}

.partners-description h3{
    font-size: 2rem;
    color: #4d7c2f;
    margin-bottom: 15px;
    font-weight: 700;
}

.partners-description p{
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}
@media(max-width:991px){
    .partner-grid{
        padding: 30px;
    }

    .partner-logo{
        flex: 0 0 calc(50% - 20px);
    }
}

@media(max-width:768px){
    .partner-grid{
        padding: 20px;
        gap: 20px;
    }

    .partner-logo{
        flex: 0 0 100%;
        min-height: 160px;
    }

    .partner-logo img{
        max-height: 120px;
    }
}
.partners-section{
    background: rgb(232, 249, 226);
    background-image: url("image/brownflylogo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 6%;
    position: relative;
    z-index: 1;
}

.partners-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(232, 249, 226, 0.88);
    z-index: -1;
}

.partners-section h2{
    text-align: center;
    font-size: 2.8rem;
    color: #2e4a2e;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
}

.partners-section h2::after{
    content: "";
    width: 80px;
    height: 4px;
    background: #d2b48c;
    display: block;
    margin: 14px auto 0;
    border-radius: 50px;
}
@media (max-width: 768px){
    .partners-section{
        padding: 80px 5%;
        background-attachment: scroll;
    }

    .partners-section h2{
        font-size: 2rem;
    }
}
.partner-logo{
    flex: 0 0 calc(33.333% - 27px);
    min-height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo img{
    max-width: 90%;
    max-height: 240px;
    object-fit: contain;
    transition: .3s ease;
}
.partner-logo{
    min-height: 320px;
}

.partner-logo img{
    max-height: 280px;
}
@media(max-width:768px){

    .partner-logo{
        flex: 0 0 100%;
        min-height: 260px;
    }

    .partner-logo img{
        max-width: 95%;
        max-height: 220px;
    }

}


.why-us{
    padding: 120px 10%;
    text-align: center;
}

.why-us h2{
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-grid{
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card{
    background: rgb(232, 249, 226);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.why-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.why-card h3{
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.why-card p{
    line-height: 1.8;
}

.stats{
    padding: 100px 10%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-box{
    min-width: 220px;
    text-align: center;
}

.stat-box h3{
    font-size: 4rem;
    color: var(--main-color);
    margin-bottom: 10px;
}

.stat-box p{
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.products-preview{
    padding: 120px 10%;
    text-align: center;
}

.products-preview h2{
    font-size: 3rem;
    margin-bottom: 60px;
}

.product-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card{
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;

    text-shadow:
        0 4px 12px rgba(230, 168, 24, 0.88);


    cursor: pointer;
}

.product-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
    z-index: -2;
}

.product-card::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
}

.product-card:hover::before{
    transform: scale(1.08);
}

.valves {
    position: relative;
    overflow: hidden;
}

.valves video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.partners-preview{
    padding: 120px 10%;
    text-align: center;
}

.partners-preview h2{
    font-size: 3rem;
    margin-bottom: 60px;
}

.partner-logos{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.partner-logos img{
    width: 330px;
    height: 250px;
    object-fit: contain;
    opacity: .75;
    transition: .3s ease;
}

.partner-logos img:hover{
    opacity: 1;
    transform: scale(1.05);
}


.cta{
    padding: 120px 10%;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,.03),
        rgba(0,0,0,.06)
    );
    border-radius: 30px;
    margin: 80px 10%;
}

.cta h2{
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta p{
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

@media (max-width: 768px){

    .why-us,
    .products-preview,
    .partners-preview,
    .stats,
    .cta{
        padding: 80px 5%;
    }

    .why-us h2,
    .products-preview h2,
    .partners-preview h2,
    .cta h2{
        font-size: 2rem;
    }

    .stat-box h3{
        font-size: 3rem;
    }

    .cta{
        margin: 40px 5%;
    }

    .partner-logos{
        gap: 25px;
    }

    .partner-logos img{
        width: 250px;
    }
}
.menu-toggle{
    display: none;
}
@media (max-width: 768px){

    .menu-toggle{
        display: block;
    }

}

.valves {
    position: relative;
    height: 430px;
    border-radius: 100px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valves:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.leadership-section{
    width:100%;
    padding:90px 8%;
}

.leadership-section h2{
    text-align:center;
    font-size:2.8rem;
    margin:20px 0 60px;
}

.leadership-section>i{
    display:block;
    text-align:center;
    font-size:55px;
    color:var(--main-color);
    margin-bottom:15px;
}


.executive-card{

    display:flex;
    align-items:center;
    gap:45px;

    margin-bottom:45px;

    background:rgb(232, 249, 226);

    border-radius:25px;

    padding:35px;

    border:2px solid var(--main-color);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;
}

.executive-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.executive-card img{

    width:300px;

    height:400px;

    object-fit:cover;

    border-radius:20px;

    border:5px solid var(--main-color);

    flex-shrink:0;

}

.executive-content{

    flex:1;

}

.position{

    display:inline-block;

    background:var(--main-color);

    color:#000000;

    padding:8px 18px;

    border-radius:50px;

    margin-bottom:15px;

}

.executive-content h3{

    font-size:2rem;

    margin-bottom:18px;

}

.executive-content p{

    line-height:1.9;

    color:#666;

    font-size:1.05rem;

}



.president{

    border-left:8px solid #a57c0a;

}



.vice-president{

    border-left:8px solid #1cc953;

}


.manager-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.manager-card{

    background:rgb(232, 249, 226);

    border:2px solid var(--main-color);

    border-radius:20px;

    text-align:center;

    padding:30px;

    transition:.3s;

}

.manager-card:hover{

    transform:translateY(-8px);

    box-shadow:0 12px 30px rgba(0,0,0,.12);

}

.manager-card img{

    width:220px;

    height:280px;

    object-fit:cover;

    border-radius:18px;

    border:4px solid var(--main-color);

    margin-bottom:20px;

}

.manager-card h3{

    font-size:1.5rem;

    margin:15px 0;

}

.manager-card p{

    line-height:1.8;

    color:#666;

}


@media(max-width:991px){

.executive-card{

    flex-direction:column;

    text-align:center;

}

.executive-card img{

    width:240px;

    height:320px;

}

.executive-content{

    text-align:center;

}

.manager-grid{

    grid-template-columns:1fr;

}

.manager-card img{

    width:200px;

    height:260px;

}

}
.contact-container{
    max-width:1400px;
    margin:80px auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    padding:20px;
}

.contact-info h2{
    color:#4d7c2f;
    font-size:2rem;
    margin-bottom:20px;
}

.contact-info p{
    line-height:1.8;
    color:#666;
}

.info-box{
    display:flex;
    gap:18px;
    margin-top:30px;
    align-items:flex-start;
}

.info-box i{
    width:60px;
    height:60px;
    background:#4d7c2f;
    color:#fff;
    border-radius:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
}

.support{
    background:#f5f9f2;
    padding:20px;
    border-radius:15px;
    border-left:5px solid #4d7c2f;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{

padding:16px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;

}

.contact-form input:focus,
.contact-form textarea:focus{

outline:none;
border-color:#4d7c2f;

}

.contact-form button{

background:#4d7c2f;
color:#fff;
padding:16px;
border:none;
border-radius:10px;
font-size:17px;
cursor:pointer;
transition:.3s;

}

.contact-form button:hover{

background:#365b20;

}

.contact-form button i{

margin-right:8px;

}

@media(max-width:992px){

.contact-container{

grid-template-columns:1fr;

}

}
.success-message,
.error-message{
    padding:15px;
    margin-bottom:20px;
    border-radius:8px;
    font-weight:600;
}

.success-message{
    background:#e8f8ec;
    color:#2e7d32;
    border:1px solid #81c784;
}

.error-message{
    background:#fdecea;
    color:#c62828;
    border:1px solid #ef9a9a;
}

.success-message i,
.error-message i{
    margin-right:8px;
}

.promo-banner{
    width: 100%;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.banner-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.banner-item{
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.banner-item img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .4s ease;
}

.banner-item:hover img{
    transform: scale(1.05);
}

@media (max-width: 992px){

    .banner-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media (max-width: 768px){

    .banner-grid{
        grid-template-columns: 1fr;
    }

}

.cta-banner{
    width: 100%;
    max-width: 1400px;
    height: 450px;
    margin: 80px auto;
    border-radius: 25px;
    overflow: hidden;
    position: relative;

    background: url("image/banner/industrial-solutions.png") center center / cover no-repeat;
}

.cta-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.cta-overlay h2{
    color: #fff;
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 3px 10px rgba(0,0,0,.5);
}

.cta-overlay p{
    color: #fff;
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 30px;
    text-shadow: 0 3px 10px rgba(0,0,0,.5);
}

.cta-btn{
    display: inline-block;
    padding: 15px 40px;
    background: #4d7c2f;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: .3s ease;
}

.cta-btn:hover{
    background: #36591f;
    transform: translateY(-3px);
}

@media (max-width:768px){

    .cta-banner{
        height: 280px;
        border-radius: 15px;
    }

    .cta-overlay h2{
        font-size: 2rem;
    }

    .cta-overlay p{
        font-size: 1rem;
    }

    .cta-btn{
        padding: 12px 28px;
        font-size: 16px;
    }

}


.chat-bubble{

    position:fixed;
    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#4d7c2f;

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    font-size:34px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s ease;

    z-index:9999;

}

.chat-bubble:hover{

    transform:scale(1.1);

}

.chat-bubble i{

    animation:bounce 2s infinite;

}

@keyframes bounce{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-4px);
    }

}



.chat-box {
    color: #333;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
}


.chat-header {
    background: #4b7a2f;
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}
.chat-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f5f5f5;
}
.chat-input{
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px;
    background:#fff;
    border-top:1px solid #ddd;
}

.chat-input input[type="text"]{
    flex:1;
    min-width:0;
    height:45px;
    padding:0 12px;
    border:1px solid #ccc;
    border-radius:8px;
    outline:none;
}

.chat-input input[type="file"]{
    display:none;
}

.chat-icon,
#emojiBtn,
#sendLiveMessage{

    width:45px;
    min-width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    border-radius:8px;

    cursor:pointer;
}

.chat-icon{

    background:#f3f3f3;
    color:#2e4a2e;
    font-size:22px;

}

#emojiBtn{

    background:#f3f3f3;
    font-size:22px;

}

#sendLiveMessage{

    background:#4b7a2f;
    color:#fff;
    font-size:20px;

}

.chat-icon:hover,
#emojiBtn:hover{

    background:#e0e0e0;

}

#sendLiveMessage:hover{

    background:#35551f;

}

.chat-title{

    display:flex;

    align-items:center;

    gap:10px;

}

.chat-title i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:#ffffff;
    color:#4d7c2f;

    border-radius:50%;
    font-size:24px;
}

.chat-title span{

    font-size:17px;

    font-weight:600;

}

#closeChat{

    font-size:28px;

    cursor:pointer;

    transition:.3s;

}

#closeChat:hover{

    transform:rotate(180deg);

}


.chat-body{

    flex:1;

    overflow-y:auto;

    padding:15px;

    background:#f7f7f7;

}

.bot-message{
        color: #333;
    opacity: 1;         
    background: #f5f5f5; 

    background:#fff;

    padding:12px 15px;

    border-radius:15px;

    margin-bottom:12px;

    max-width:80%;

    box-shadow:0 3px 10px rgba(0,0,0,.08);

}

.user-message {
    color: #fff;
    background: #4d7c2f;
    align-self: flex-end;
    background: #4b7a2f;
    color: white;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
    background: white;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 80%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}




.chat-footer{

    display:flex;

    border-top:1px solid #eee;

}

.chat-footer input{

    flex:1;

    border:none;

    outline:none;

    padding:15px;

    font-size:15px;

}

.chat-footer button{

    width:60px;

    border:none;

    background:#4d7c2f;

    color:#fff;

    cursor:pointer;

    font-size:24px;

    transition:.3s;

}

.chat-footer button:hover{

    background:#36591f;

}



@media(max-width:768px){

    .chat-box{

        width:95%;

        height:80vh;

        right:2.5%;

        bottom:90px;

    }

}
.quick-replies{

    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:15px;

}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-replies button {
    background: #4b7a2f;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
}


.cta1-banner{
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 100vh;
    margin: 80px auto;
    border-radius: 25px;
    overflow: hidden;

    background-image: url("image/partnership/be.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta1-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(172, 172, 172, 0.35);

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px;
}

.cta1-content{
    max-width: 700px;
    text-align: center;
}

.cta1-content h2{
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta1-content p{
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
}

@media (max-width:768px){

    .cta1-banner{
        height: 280px;
        margin: 40px 15px;
        border-radius: 15px;
    }

    .cta1-overlay{
        padding: 20px;
    }

    .cta1-content h2{
        font-size: 32px;
    }

    .cta1-content p{
        font-size: 16px;
    }

}

.live-chat-bubble{

    position:fixed;
    right:25px;
    bottom:100px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#4b7a2f;

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    font-size:34px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s ease;

    z-index:9998;

}

.live-chat-bubble:hover{
    transform:scale(1.1);
}

.live-chat-bubble i{
    animation:bounce 2s infinite;
}



.live-chat-modal{

    position:fixed;
    bottom:90px;
    right:20px;

    width:350px;
    height:500px;

    background:#fff;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

    display:none;

    flex-direction:column;

    overflow:hidden;

    z-index:9999;

}




.live-chat-header{

    background:#4d7c2f;
    color:#fff;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 20px;

    border-radius:15px 15px 0 0;

}

.live-chat-title{

    display:flex;
    align-items:center;
    gap:12px;

}

.live-chat-title i{

    font-size:26px;

}

.live-chat-title h3{

    font-size:20px;
    font-weight:700;
    line-height:1.3;

}
.header-actions{

    display:flex;
    align-items:center;
    gap:15px;

}

.close-chat-btn{

    background:#ffffff;

    color:#4d7c2f;

    border:none;

    padding:8px 16px;

    border-radius:25px;

    font-size:13px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.close-chat-btn:hover{

    background:#e9f5df;

    transform:translateY(-2px);

}

.live-chat-header h3{

    margin:0;

    font-size:18px;

}

#closeLiveChat{

    font-size:28px;

    cursor:pointer;

    transition:.3s;

}

#closeLiveChat:hover{

    transform:rotate(180deg);

}




.live-chat-card{

    display:flex;

    flex-direction:column;

    height:100%;

}

.live-chat-header{

    flex-shrink:0;

    position:relative;

    z-index:10;

}

#messengerSection{

    display:none;

    flex:1;

    flex-direction:column;

    min-height:0;

}
#liveChatBody{

    flex:1;

    overflow-y:auto;

    padding:15px;

    background:#f5f5f5;

}
.chat-input{

    flex-shrink:0;

    background:#fff;

    border-top:1px solid #ddd;

    padding:10px;

}


#preChatSection{
    flex:1;
    overflow-y:auto;
    padding:20px;
}

#preChatForm{
    display:flex;
    flex-direction:column;
    gap:15px;
}

#preChatForm input,
#preChatForm textarea{

    width:100%;
    padding:14px;

    border:1px solid #d5d5d5;
    border-radius:10px;

    outline:none;

    font-size:15px;

    transition:.3s;

    box-sizing:border-box;

}

#preChatForm input:focus,
#preChatForm textarea:focus{

    border-color:#4b7a2f;

}

#preChatForm textarea{

    resize:none;
    min-height:130px;

}

#preChatForm button{

    width:100%;
    padding:15px;

    background:#4b7a2f;
    color:#fff;

    border:none;
    border-radius:10px;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

#preChatForm button:hover{

    background:#36591f;

}


#messengerSection{

    display:none;

    flex:1;

    flex-direction:column;

    height:100%;

}



.messenger-header{

    background:#4b7a2f;

    color:#fff;

    padding:15px;

    display:flex;

    align-items:center;

}


#liveChatBody{

    flex:1;

    overflow-y:auto;

    background:#f5f5f5;

    padding:15px;

    display:flex;

    flex-direction:column;

    gap:10px;

}



.chat-input{

    display:flex;

    align-items:center;

    gap:10px;

    padding:10px;

    border-top:1px solid #ddd;

    background:#fff;

    flex-shrink:0;

}

.chat-input input{

    flex:1;

    height:45px;

    padding:0 12px;

    border:1px solid #ccc;

    border-radius:8px;

    outline:none;

    font-size:15px;

}

.chat-input input:focus{

    border-color:#4b7a2f;

}

.chat-input button{

    width:50px;

    height:45px;

    border:none;

    background:#4b7a2f;

    color:#fff;

    border-radius:8px;

    cursor:pointer;

    font-size:22px;

    transition:.3s;

}

.chat-input button:hover{

    background:#36591f;

}



.admin-message{

    align-self:flex-start;

    background:#fff;

    color:#333;

    padding:10px 15px;

    border-radius:15px;

    max-width:75%;

    box-shadow:0 2px 8px rgba(0,0,0,.08);

}

.client-message{

    align-self:flex-end;

    background:#4b7a2f;

    color:#fff;

    padding:10px 15px;

    border-radius:15px;

    max-width:75%;

}


.message-name{

    font-size:12px;

    font-weight:600;

    margin-bottom:5px;

}

.admin-message .message-name{

    color:#4b7a2f;

}

.client-message .message-name{

    color:#d7f0c9;

    text-align:right;

}



@media(max-width:768px){

    .live-chat-card{

        width:95%;

        max-height:90vh;

    }

}

.header-actions{

    display:flex;
    align-items:center;
    gap:10px;

}

.close-chat-btn{

    background:#4b7a2f;
    color:#fff;
    border:none;
    padding:6px 12px;
    border-radius:5px;
    cursor:pointer;
    font-size:13px;
    transition:.3s;

}

.close-chat-btn:hover{

    background:#4b7a2f;

}

.end-conversation-btn{

    width:100%;
    padding:12px 20px;

    background:#b23b3b;
    color:white;

    border:none;
    border-radius:10px;

    font-size:15px;
    font-weight:600;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    transition:0.3s ease;

    margin-top:10px;

}


.end-conversation-btn:hover{

    background:#8f2d2d;

    transform:translateY(-2px);

}


.end-conversation-btn:active{

    transform:scale(0.98);

}
.chat-image{
    max-width:220px;
    max-height:220px;
    border-radius:10px;
    cursor:pointer;
    display:block;
}

#imageViewer{

    display:none;
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.85);

    justify-content:center;
    align-items:center;

    z-index:999999;

}


#imageViewer.show{

    display:flex;

}


#viewerImage{

    max-width:90%;
    max-height:90%;

    border-radius:15px;

}


#closeImageViewer{

    position:absolute;

    top:20px;
    right:25px;

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:#d9534f;

    color:white;

    font-size:35px;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

}



.chat-image{

    max-width:220px;

    max-height:220px;

    border-radius:12px;

    margin-top:10px;

    cursor:pointer;

    object-fit:cover;

    display:block;

}




.file-attachment{

    margin-top:10px;

    padding:12px 15px;

    background:#f1f1f1;

    border-radius:10px;

    display:inline-block;

}


.file-attachment a{

    text-decoration:none;

    color:#2e4a2e;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:8px;

}


.file-attachment a:hover{

    color:#4b7a2f;

}




#imageViewer{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.85);

    justify-content:center;

    align-items:center;

    z-index:999999;

}


#imageViewer.show{

    display:flex;

}



#viewerImage{

    max-width:90%;

    max-height:90%;

    border-radius:15px;

}





#closeImageViewer{

    position:absolute;

    top:25px;

    right:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#d9534f;

    color:white;

    font-size:35px;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    line-height:1;

}


#closeImageViewer:hover{

    background:#c9302c;

}


.product-container {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.card img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    border-radius: 12px;
    background: #f5f5f5;
    padding: 10px;
}

.card h3 {
    margin-top: 18px;
    font-size: 22px;
    color: #2e4a2e;
    font-weight: 700;
}

.card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 10px 0;
}

.card p:last-of-type {
    font-weight: 600;
    color: #4b7a2f;
}

.card button {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: #4b7a2f;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.card button:hover {
    background: #2e4a2e;
}

@media(max-width:768px){

    .product-container {
        width: 90%;
        grid-template-columns: 1fr;
    }

    .card img {
        height: 200px;
    }

}

.product-view-container{
    max-width:1500px;
    margin:auto;
    background:#fff;
    border-radius:20px;
    padding:50px;
    display:flex;
    gap:70px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.product-gallery{
    flex:1;
}

.main-product-image{
    width:100%;
    height:650px;
    object-fit:contain;
    background:#fafafa;
    border:1px solid #ddd;
    border-radius:18px;
    cursor:pointer;
}

.thumbnail{
    display:flex;
    gap:18px;
    margin-top:25px;
    flex-wrap:wrap;
}

.thumbnail img{
    width:130px;
    height:130px;
    object-fit:cover;
    border-radius:12px;
    border:2px solid #ddd;
    cursor:pointer;
    transition:.3s;
}

.thumbnail img:hover{
    border-color:#2d6a4f;
    transform:scale(1.08);
}

.product-details{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.product-details h1{
    font-size:48px;
    color:#2d6a4f;
    margin-bottom:25px;
    line-height:1.3;
}

.product-details p{
    font-size:21px;
    line-height:1.9;
    color:#555;
}

.info{
    margin:40px 0;
    display:grid;
    gap:20px;
}

.info p{
    background:#f8f8f8;
    padding:20px 25px;
    border-left:6px solid #2d6a4f;
    border-radius:10px;
    font-size:22px;
}

.info strong{
    color:#2d6a4f;
    float:right;
    font-weight:700;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.back-btn,
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 170px;
    height: 52px;
    padding: 0 20px;
    box-sizing: border-box;
    background: #2d6a4f;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: .3s ease;
}

.back-btn:hover,
.contact-btn:hover {
    background: #1b4332;
    transform: translateY(-2px);
}

.back-btn i,
.contact-btn i {
    font-size: 19px;
}



.main-product-image{

transition:.3s ease;

}

.shop-title{

text-align:center;
margin:60px 0 30px;

}


.shop-title h1{

font-size:40px;
color:#2e4a2e;
font-weight:700;

}


.shop-title p{

color:#666;
font-size:17px;

}


.product-container{

width:90%;
max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

}



.card{

background:white;
padding:20px;

border-radius:18px;

box-shadow:0 10px 25px rgba(0,0,0,.12);

transition:.3s ease;

}



.card:hover{

transform:translateY(-8px);

}



.card img{

width:100%;
height:230px;

object-fit:contain;

background:#f5f5f5;

border-radius:15px;

}



.card h3{

margin-top:20px;

font-size:22px;

color:#2e4a2e;

}



.card p{

color:#555;

line-height:1.6;

}



.view-btn{

display:block;

margin-top:20px;

text-align:center;

padding:12px;

border-radius:25px;

background:#4b7a2f;

color:white;

text-decoration:none;

font-weight:600;

transition:.3s;

}



.view-btn:hover{

background:#2e4a2e;

}




.shop-search {
    width: 100%;
    max-width: 700px;
    margin: 30px auto 45px;
}

.shop-search form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.shop-search input {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 1px solid #d2b48c;
    border-radius: 10px;
    outline: none;
    background: #fff;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    box-sizing: border-box;
}

.shop-search input:focus {
    border-color: #4b7a2f;
    box-shadow: 0 0 0 3px rgba(75, 122, 47, 0.12);
}

.shop-search button {
    height: 52px;
    padding: 0 25px;
    border: none;
    border-radius: 10px;
    background: #4b7a2f;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s ease;
    white-space: nowrap;
}

.shop-search button:hover {
    background: #2e4a2e;
    transform: translateY(-1px);
}

.shop-search button i {
    font-size: 20px;
}

.card {
    width: 100%;
    max-width: 330px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    padding: 18px;
    box-sizing: border-box;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    background: #f7f7f7;
}

.card h3 {
    margin: 18px 0 10px;
    color: #2e4a2e;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.card p {
    margin: 8px 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.card .view-btn {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 12px 15px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    background: #4b7a2f;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.card .view-btn:hover {
    background: #2e4a2e;
}

.no-products {
    width: 100%;
    max-width: 600px;
    margin: 50px auto;
    padding: 50px 25px;
    box-sizing: border-box;
    text-align: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-products i {
    font-size: 55px;
    color: #4b7a2f;
    margin-bottom: 15px;
}

.no-products h3 {
    margin: 10px 0;
    color: #2e4a2e;
    font-size: 22px;
}

.no-products p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .shop-search {
        width: 90%;
        margin: 25px auto 35px;
    }

    .shop-search form {
        flex-direction: column;
        gap: 10px;
    }

    .shop-search input {
        width: 100%;
        height: 48px;
    }

    .shop-search button {
        width: 100%;
        height: 48px;
    }

    .card {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

    .card img {
        height: 220px;
    }

    .card h3 {
        font-size: 17px;
    }

    .card p {
        font-size: 14px;
    }

    .card .view-btn {
        padding: 12px;
    }

    .no-products {
        width: 90%;
        padding: 40px 20px;
    }

}

@media (max-width: 480px) {

    .shop-search {
        width: 92%;
    }

    .shop-search input {
        height: 46px;
        padding: 0 15px;
        font-size: 14px;
    }

    .shop-search button {
        height: 46px;
        font-size: 14px;
    }

    .shop-search button i {
        font-size: 18px;
    }

    .card {
        border-radius: 12px;
        padding: 12px;
    }

    .card img {
        height: 200px;
    }

    .card h3 {
        font-size: 16px;
        margin-top: 15px;
    }

    .card p {
        font-size: 13px;
    }

    .card .view-btn {
        font-size: 13px;
        padding: 11px;
    }

    .no-products {
        margin: 35px auto;
        padding: 35px 18px;
    }

    .no-products i {
        font-size: 45px;
    }

    .no-products h3 {
        font-size: 19px;
    }

    .no-products p {
        font-size: 13px;
    }

}


.shop-products {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .shop-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .shop-products {
        width: 92%;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.back-to-products {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    margin: 0 auto 25px;
    padding: 10px 18px;
    background: #4b7a2f;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: 0.3s ease;
}

.back-to-products:hover {
    background: #2e4a2e;
    transform: translateY(-2px);
}

.back-to-products i {
    font-size: 19px;
}




@media (max-width: 600px) {
    .shop-search form {
        flex-direction: column;
    }

    .shop-search button {
        justify-content: center;
    }
}


@media (max-width: 768px) {

    .product-view-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 20px 15px 35px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        box-sizing: border-box !important;
        border-radius: 0 0 16px 16px !important;
    }

    .product-gallery {
        width: 100% !important;
        flex: none !important;
    }

    .main-product-image {
        width: 100% !important;
        height: 320px !important;
        object-fit: contain !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .thumbnail {
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        margin-top: 12px !important;
    }

    .thumbnail img {
        width: 65px !important;
        height: 65px !important;
        object-fit: cover !important;
    }

    .product-details {
        width: 100% !important;
        flex: none !important;
        min-width: 0 !important;
    }

    .product-details h1 {
        font-size: 28px !important;
        line-height: 1.25 !important;
        margin: 0 0 10px !important;
    }

    .product-details p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .info {
        width: 100% !important;
        margin: 20px 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 9px !important;
    }

    .info p {
        width: 100% !important;
        min-height: 50px !important;
        margin: 0 !important;
        padding: 13px 15px !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        font-size: 14px !important;
    }

    .info strong {
        float: none !important;
        margin-left: 10px !important;
        text-align: right !important;
    }

    .product-actions {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        margin-top: 20px !important;
    }

    .back-btn,
    .contact-btn {
        width: 100% !important;
        min-width: 0 !important;
        height: 48px !important;
        padding: 0 8px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
    }

}


@media (max-width: 480px) {

    .product-view-container {
        padding: 15px 12px 30px !important;
        gap: 20px !important;
    }

    .main-product-image {
        height: 280px !important;
    }

    .thumbnail img {
        width: 60px !important;
        height: 60px !important;
    }

    .product-details h1 {
        font-size: 25px !important;
    }

    .product-details p {
        font-size: 13px !important;
    }

    .info p {
        min-height: 48px !important;
        padding: 12px !important;
        font-size: 13px !important;
    }

    .back-btn,
    .contact-btn {
        height: 46px !important;
        font-size: 11px !important;
    }

}


.cookie-banner {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 520px;
    background: #ffffff;
    padding: 30px 32px;
    border-radius: 18px;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.20);
    border: 1px solid #e5e5e5;
    z-index: 99999;
    animation: cookieSlideUp 0.45s ease;
}

.cookie-content {
    display: block;
}

.cookie-content h3 {
    margin: 0 0 12px;
    color: #2e4a2e;
    font-size: 23px;
    font-weight: 700;
}

.cookie-content p {
    margin: 0 0 25px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-buttons button {
    min-height: 48px;
    padding: 0 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

.cookie-accept {
    flex: 1.3;
    background: #2e4a2e;
    color: #ffffff;
    border: 1px solid #2e4a2e;
}

.cookie-accept:hover {
    background: #4d7c2f;
    border-color: #4d7c2f;
    transform: translateY(-1px);
}

.cookie-decline {
    flex: 1;
    background: #ffffff;
    color: #333333;
    border: 1px solid #cccccc;
}

.cookie-decline:hover {
    background: #f3f3f3;
    border-color: #999;
}



@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@media (max-width: 700px) {
    .cookie-banner {
        left: 20px;
        right: 20px;
        bottom: 20px;
        width: auto;
        padding: 25px;
    }
}



@media (max-width: 500px) {
    .cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 22px;
        border-radius: 15px;
    }

    .cookie-content h3 {
        font-size: 20px;
    }

    .cookie-content p {
        font-size: 14px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
        min-height: 46px;
    }
}




#emailVerificationSection {
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
}

.verification-content {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
}

.verification-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #2e4a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
}

.verification-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 600;
    color: #222222;
}

#verificationText {
    margin: 0 auto 22px;
    max-width: 360px;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    word-break: break-word;
}

#verificationCode {
    width: 100%;
    height: 54px;
    padding: 0 15px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    background: #ffffff;
    color: #222222;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 8px;
    text-align: center;
    outline: none;
    box-sizing: border-box;
    transition: 0.2s ease;
}

#verificationCode:focus {
    border-color: #2e4a2e;
    box-shadow: 0 0 0 3px rgba(46, 74, 46, 0.12);
}

#verificationCode::placeholder {
    color: #999999;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
}

#verifyEmailButton,
#resendVerificationButton,
#backToPreChat {
    width: 100%;
    min-height: 48px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

#verifyEmailButton {
    margin-top: 15px;
    border: none;
    background: #2e4a2e;
    color: #ffffff;
}

#verifyEmailButton:hover {
    background: #243b24;
}

#verifyEmailButton:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#resendVerificationButton {
    margin-top: 10px;
    border: 1px solid #d8d8d8;
    background: #f7f7f7;
    color: #333333;
}

#resendVerificationButton:hover {
    background: #eeeeee;
}

#resendVerificationButton:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#backToPreChat {
    margin-top: 8px;
    border: none;
    background: transparent;
    color: #666666;
}

#backToPreChat:hover {
    color: #2e4a2e;
}

#verificationMessage {
    min-height: 20px;
    margin: 14px 0 2px;
    color: #c0392b;
    font-size: 13px;
    line-height: 1.4;
}

.live-chat-card {
    overflow-y: auto;
}

@media (max-width: 600px) {

    #emailVerificationSection {
        padding: 25px 16px;
    }

    .verification-content {
        max-width: 100%;
    }

    .verification-icon {
        width: 58px;
        height: 58px;
        font-size: 27px;
        margin-bottom: 15px;
    }

    .verification-content h3 {
        font-size: 20px;
    }

    #verificationText {
        font-size: 13px;
        margin-bottom: 18px;
    }

    #verificationCode {
        height: 50px;
        font-size: 21px;
        letter-spacing: 6px;
    }

    #verifyEmailButton,
    #resendVerificationButton,
    #backToPreChat {
        min-height: 46px;
        font-size: 14px;
    }
}

@media (max-width: 380px) {

    #emailVerificationSection {
        padding: 20px 12px;
    }

    .verification-content h3 {
        font-size: 18px;
    }

    #verificationText {
        font-size: 12px;
    }

    #verificationCode {
        font-size: 20px;
        letter-spacing: 5px;
    }
}

@media (max-width: 600px) {

    #emailVerificationSection {
        width: 100%;
        padding: 25px 16px;
        box-sizing: border-box;
    }

    .verification-content {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .verification-icon {
        width: 58px;
        height: 58px;
        margin: 0 auto 15px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2e4a2e;
        color: #ffffff;
        font-size: 27px;
    }

    .verification-content h3 {
        margin: 0 0 10px;
        font-size: 20px;
        line-height: 1.3;
    }

    #verificationText {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 20px;
        font-size: 13px;
        line-height: 1.6;
        color: #666666;
        overflow-wrap: anywhere;
    }

    #verificationCode {
        width: 100%;
        height: 50px;
        padding: 0 12px;
        box-sizing: border-box;
        border: 1px solid #d8d8d8;
        border-radius: 9px;
        background: #ffffff;
        color: #222222;
        outline: none;
        font-size: 22px;
        font-weight: 600;
        text-align: center;
        letter-spacing: 6px;
    }

    #verificationCode:focus {
        border-color: #2e4a2e;
        box-shadow: 0 0 0 3px rgba(46, 74, 46, 0.12);
    }

    #verificationCode::placeholder {
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0;
        color: #999999;
    }

    #verifyEmailButton,
    #resendVerificationButton,
    #backToPreChat {
        width: 100%;
        min-height: 46px;
        margin-top: 10px;
        border-radius: 9px;
        font-size: 14px;
    }

    #verifyEmailButton {
        margin-top: 14px;
    }

    #verificationMessage {
        min-height: 18px;
        margin: 12px 0 0;
        font-size: 13px;
        line-height: 1.4;
    }
}

@media (max-width: 380px) {

    #emailVerificationSection {
        padding: 20px 12px;
    }

    .verification-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .verification-content h3 {
        font-size: 18px;
    }

    #verificationText {
        font-size: 12px;
        max-width: 290px;
    }

    #verificationCode {
        height: 48px;
        font-size: 20px;
        letter-spacing: 5px;
    }

    #verifyEmailButton,
    #resendVerificationButton,
    #backToPreChat {
        min-height: 44px;
        font-size: 13px;
    }
}

.live-chat-modal{
    position:fixed !important;
    z-index:9999 !important;
}

.live-chat-modal.show{
    z-index:9999 !important;
}

#endConversationPopup,
#closeConversationPopup,
#conversationClosePopup,
#endChatPopup,
.end-conversation-popup,
.close-conversation-popup,
.conversation-close-popup{
    position:fixed !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    background:rgba(0,0,0,.6) !important;
    z-index:99999 !important;
}

#endConversationPopup .popup-box,
#closeConversationPopup .popup-box,
#conversationClosePopup .popup-box,
#endChatPopup .popup-box,
.end-conversation-popup .popup-box,
.close-conversation-popup .popup-box,
.conversation-close-popup .popup-box{
    position:relative !important;
    z-index:100000 !important;
}


.swal2-container{
    z-index:200000 !important;
}

.swal2-popup{
    z-index:200001 !important;
}

@media(max-width:768px){

    .swal2-container{
        z-index:200000 !important;
    }

    .swal2-popup{
        width:340px !important;
        max-width:90% !important;
        border-radius:18px !important;
    }

}

