*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{

background:#f5f7f5;

color:#222;

overflow-x:hidden;

}

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
background:rgba(0,0,0,.45);
backdrop-filter:blur(12px);
}


.download-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:25px;
    padding:16px 40px;
    background:#fff;
    color:#00843d;
    border:2px solid #00a651;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.download-btn:hover{
    background:#00a651;
    color:#fff;
    transform:translateY(-3px);
}
.cert-hero{

height:60vh;

background:

linear-gradient(
rgba(0,0,0,.65),
rgba(0,0,0,.65)
),

url(images/certification.png);

background-size:cover;

background-position:center;

display:flex;

align-items:center;

justify-content:center;

color:white;

text-align:center;

}

.overlay h1{

font-size:60px;

margin-bottom:20px;

}

.overlay p{

font-size:20px;

}

.finder{

padding:80px 5%;

}

.search-row{

display:flex;

gap:20px;

margin-bottom:40px;

flex-wrap:wrap;

}

.search-row input{

flex:1;

padding:18px;

border:none;

border-radius:50px;

box-shadow:

0 5px 20px rgba(0,0,0,.08);

}

.search-row select{

padding:18px;

border:none;

border-radius:50px;

}

.search-row button{

background:#1b7d32;

color:white;

border:none;

padding:18px 30px;

border-radius:50px;

cursor:pointer;

}

#map{

height:500px;

background:#ddd;

border-radius:30px;

box-shadow:

0 10px 30px rgba(0,0,0,.08);

margin-bottom:80px;

}

.industry-grid{

padding:0 5% 100px;

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(260px,1fr));

gap:35px;

}

.industry-grid a{

text-decoration:none;

color:black;

}

.industry-card{

background:white;

padding:25px;

border-radius:30px;

box-shadow:

0 8px 25px rgba(0,0,0,.08);

transition:.3s;

}

.industry-card:hover{

transform:

translateY(-10px);

}

.industry-card img{

width:100%;

height:220px;

object-fit:cover;

border-radius:20px;

margin-bottom:18px;

}

.industry-card h3{

text-align:center;

color:#145624;

}
.places{

padding:100px 5%;

}

.place-card{

background:white;

padding:25px;

display:flex;

gap:25px;

align-items:center;

margin-bottom:30px;

border-radius:25px;

box-shadow:

0 5px 20px rgba(0,0,0,.08);

}

.place-card img{

width:180px;

height:180px;

object-fit:cover;

border-radius:20px;

}

.place-card h3{

color:#145624;

margin-bottom:10px;

}

.place-card button{

background:#1b7d32;

border:none;

padding:14px 30px;

color:white;

border-radius:40px;

margin-top:15px;

cursor:pointer;

}

@media(max-width:900px){

.place-card{

flex-direction:column;

text-align:center;

}

.place-card img{

width:100%;

height:220px;

}

}
.near-btn{

background:#0a7d32;

color:white;

padding:14px 30px;

border:none;

border-radius:30px;

font-size:16px;

cursor:pointer;

margin-top:20px;

font-weight:bold;

}

.near-btn:hover{

background:#055d24;

}

.place-card{

display:flex;

align-items:center;

gap:20px;

padding:20px;

background:white;

border-radius:18px;

margin:20px;

box-shadow:0 4px 18px rgba(0,0,0,0.12);

}

.place-card img{

width:90px;

height:90px;

border-radius:50%;

object-fit:cover;

}

.details{

flex:1;

}

.details h3{

margin:0;

font-size:22px;

}

.location{

color:#1e8f4d;

font-weight:bold;

margin:8px 0;

}

.place-card button{

background:#0d6efd;

color:white;

border:none;

padding:10px 22px;

border-radius:25px;

cursor:pointer;

}

.place-card button:hover{

background:#084db8;

}
.map-section{

display:none;

padding:60px 8%;

background:#f5f5f5;

animation:fadeIn 0.5s ease;

}

#map{

height:600px;

width:100%;

border-radius:20px;

overflow:hidden;

box-shadow:0 5px 20px rgba(0,0,0,0.15);

}

@keyframes fadeIn{

from{

opacity:0;
transform:translateY(20px);

}

to{

opacity:1;
transform:translateY(0);

}

}
/* MOBILE RESPONSIVE */

@media screen and (max-width:768px){

.cert-hero{

height:45vh;
padding:20px;

}

.overlay h1{

font-size:34px;

line-height:1.2;

}

.overlay p{

font-size:16px;

padding:0 15px;

}

.near-btn{

width:90%;

max-width:280px;

padding:15px;

font-size:16px;

}

.map-section{

padding:40px 4%;

}

#map{

height:400px;

border-radius:15px;

}

.places{

padding:50px 4%;

}

.place-card{

flex-direction:row;

align-items:center;

gap:15px;

padding:15px;

margin:15px 0;

}

.place-card img{

width:70px;

height:70px;

flex-shrink:0;

}

.details{

width:100%;

}

.details h3{

font-size:16px;

line-height:1.3;

}

.location{

font-size:14px;

}

.place-card button{

width:100%;

padding:12px;

margin-top:10px;

font-size:14px;

}

}


/* EXTRA SMALL PHONES */

@media screen and (max-width:480px){

.overlay h1{

font-size:28px;

}

.overlay p{

font-size:14px;

}

.place-card{

flex-direction:column;

text-align:center;

}

.place-card img{

width:85px;

height:85px;

}

.details h3{

font-size:15px;

}

#map{

height:320px;

}

}
/* FOOTER */

footer{

   background:linear-gradient(
        135deg,
        #0b4d1d,
        #145624,
        #1b7d32
    );
    border-top:4px solid #FFD54F;

padding:60px 8%;

display:flex;

justify-content:space-between;

flex-wrap:wrap;

color:white;

}

.footer-links{

display:flex;

flex-direction:column;

gap:12px;

}

.footer-links a{

color:white;

text-decoration:none;

}

.footer-logo{

text-align:right;

}

.footer-logo img{

width:90px;

margin-bottom:15px;

}

.socials{

margin-top:15px;

}

.socials i{

margin-left:15px;

font-size:22px;

cursor:pointer;

}

@media(max-width:768px){

    .footer-links{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:15px;
        width:100%;
        max-width:300px;
        margin:auto;
    }

}
@media(max-width:768px){

    .footer-logo{
        border-top:1px solid rgba(255,255,255,.15);
        padding-top:25px;
    }

}
.mobile-nav-active{
display:flex !important;
flex-direction:column;
position:absolute;
top:100%;
left:0;
width:100%;
background:#082111;
padding:20px 0;
gap:0;
}

.mobile-nav-active li{
width:100%;
text-align:center;
padding:15px 0;
border-bottom:1px solid rgba(255,255,255,.1);
}

.mobile-nav-active a{
color:white;
display:block;
}
/* MOBILE NAVIGATION */

@media(max-width:900px){

.nav-links{
display:none;
}

.mobile-menu{
display:block;
}

.nav-links.mobile-nav-active{
display:flex !important;
flex-direction:column;
position:absolute;
top:100%;
left:0;
width:100%;
background:#082111;
padding:15px 0;
z-index:9999;
gap:0;
box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.nav-links.mobile-nav-active li{
width:100%;
list-style:none;
text-align:center;
padding:15px 0;
border-bottom:1px solid rgba(255,255,255,.1);
}

.nav-links.mobile-nav-active a{
display:block;
color:white;
font-size:16px;
}

}
.socials a {
    color: #fff;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
    transition: 0.3s;
}

.socials a:hover {
    color: #25D366; /* Change color on hover */
}
.restaurant-location{
    color:#666;
    font-size:14px;
    margin:8px 0 12px;
    display:flex;
    align-items:center;
    gap:6px;
}

.restaurant-location i{
    color:#1b7d32;
}
@media(max-width:768px){

    .industry-grid{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:15px;
        padding:30px 15px 60px;
    }

    .industry-card{
        padding:12px;
        border-radius:18px;
    }

    .industry-card img{
        height:100px;
        border-radius:12px;
        margin-bottom:10px;
    }

    .industry-card h3{
        font-size:14px;
        line-height:1.3;
    }

}
@media(max-width:768px){

    .industry-card{
        aspect-ratio:1/1;
        display:flex;
        flex-direction:column;
        justify-content:center;
    }

    .industry-card img{
        height:70px;
        width:70px;
        border-radius:50%;
        margin:0 auto 12px;
    }

}
@media(max-width:768px){

    .footer-links{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:15px;
        width:100%;
        max-width:300px;
        margin:auto;
    }

}
@media(max-width:768px){

    .footer-logo{
        border-top:1px solid rgba(255,255,255,.15);
        padding-top:25px;
    }

}@media(max-width:768px){

    .footer-logo{
        text-align:center;
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .footer-logo p{
        text-align:center;
        margin-top:10px;
    }

}










.summary-cards{
    width:90%;
    margin:-50px auto 50px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    position:relative;
    z-index:10;
}

.summary-card{
    background:white;
    padding:30px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.summary-card h3{
    font-size:40px;
    color:#1b7d32;
    margin-bottom:10px;
}

.summary-card p{
    color:#666;
}
@media(max-width:768px){

    .summary-cards{
        grid-template-columns:repeat(3,1fr);
        gap:10px;
        width:95%;
        margin:-30px auto 30px;
    }

    .summary-card{
        padding:15px 10px;
        border-radius:15px;
    }

    .summary-card h3{
        font-size:24px;
        margin-bottom:5px;
    }

    .summary-card p{
        font-size:11px;
        line-height:1.2;
    }

}



.cert-badge{
    background:#1b7d32;
    color:white;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

.card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

.card-buttons button{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    width:auto;

    background:linear-gradient(
        135deg,
        #145624,
        #1b7d32
    );

    color:white;
    border:none;
    border-radius:25px;

    font-size:14px;
    font-weight:600;
}


.card-buttons button{
    flex:1;
}
@media(max-width:768px){

    .card-top{
        flex-direction:column;
        gap:8px;
    }

    .card-buttons{
        flex-direction:column;
    }

}


.search-card{
    background:white;
    max-width:900px;
    margin:30px auto -60px;
    padding:25px;
    border-radius:25px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);

    position:relative;
    z-index:50;
}

.search-box{
    display:grid;
    grid-template-columns:2fr 1fr auto auto;
    gap:15px;
}

.search-box input,
.search-box select{
    padding:15px;
    border:1px solid #ddd;
    border-radius:15px;
}

.search-box button{
    border:none;
    border-radius:15px;
    padding:15px 25px;
    cursor:pointer;
}

@media(max-width:768px){

    .search-card{
        margin:15px 10px -30px;
        padding:15px;
        border-radius:18px;
    }

    .search-box{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:10px;
    }

    .search-box input{
        grid-column:1 / -1;
    }

    .search-box select{
        grid-column:1 / -1;
    }

    .search-box input,
    .search-box select{
        padding:12px;
        font-size:14px;
    }

    .search-box button{
        padding:12px;
        font-size:14px;
    }

}

.new-certification{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:linear-gradient(
        135deg,
        #FFD54F,
        #FFC107
    );
    color:#145624;
    padding:7px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
    box-shadow:0 3px 10px rgba(255,193,7,.3);
}

@media(max-width:768px){

    .place-card{
        display:flex;
        flex-direction:row;
        align-items:center;
        gap:15px;
    }

    .place-card img{
        width:80px;
        height:80px;
        border-radius:50%;
    }

    .details h3{
        font-size:17px;
    }

}
@media(max-width:768px){

.cert-hero{
    min-height:600px;
    height:auto;
    padding:120px 20px 60px;
}

}


@media(max-width:768px){

.search-box{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.search-box input,
.search-box select,
.search-box button{
    width:100%;
}

}

@media(max-width:768px){

footer{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:30px;
}

}

.products{
    margin-top:10px;
    color:#555;
    line-height:1.5;
    font-size:14px;
}

.products strong{
    color:#145624;
}

@media(max-width:768px){

    .place-card{
        flex-direction:row;
        align-items:flex-start;
        gap:12px;
        padding:15px;
    }

    .place-card img{
        width:70px;
        height:70px;
        border-radius:50%;
        flex-shrink:0;
    }

    .details h3{
        font-size:15px;
        line-height:1.3;
    }

    .products{
        font-size:13px;
    }

}
.search-card{
    max-width:700px;
    margin:0 auto 30px;
}

.search-card input{
    width:100%;
    padding:16px 20px;
    border:1px solid #ddd;
    border-radius:50px;
    font-size:16px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}
@media(max-width:768px){

.search-card{
    margin-bottom:20px;
}

.search-card input{
    padding:14px 18px;
    font-size:14px;
}

}

.restaurant-location,
.restaurant-phone{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;

    color:#666;
    font-size:14px;

    margin:8px 0;
}
.restaurant-location i,
.restaurant-phone i{
    color:#1b7d32;
}
.details{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}