@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
margin:0;
font-family: "Poppins", sans-serif;
background:#f4f6f9;
}
* {
    box-sizing: border-box;
}

/* WRAPPER */

.wrapper{
max-width:1200px;
margin:auto;
}

/* HEADER */

.header{
background:white;
padding:15px 30px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.headermain{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:60px;
}

/* CALL DESIGN */

.contact{
display:flex;
align-items:center;
gap:12px;
background:#f5f7fb;
padding:10px 18px;
border-radius:8px;
}

.contact img{
width:26px;
}

.calltext span{
color:#ff9800;
font-weight:bold;
font-size:13px;
display:block;
}

.calltext a{
text-decoration:none;
color:#111;
font-weight:600;
font-size:15px;
}

/* MENU */

.menu{
background:#1b9db5;
}

.menu .wrapper{
display:flex;
gap:30px;
padding:12px 30px;
}

.menu a{
color:white;
text-decoration:none;
font-weight:bold;
}

/* HERO */

.hero{
position:relative;
background:url("https://images.unsplash.com/photo-1581595219315-a187dd40c322?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
border-radius:10px;
margin-top:25px;
overflow:hidden;
}

.hero::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:linear-gradient(90deg,#0e3c85cc,#1b9db5cc);
}

.hero-inner{
position:relative;
display:flex;
align-items:center;
justify-content:space-between;
padding:20px 60px;
color:white;
}

.hero-text{
max-width:520px;
}

.hero h1{
font-size:42px;
margin-bottom:15px;
}

.hero p{
font-size:16px;
line-height:1.6;
}

.hero-img img{
width:420px;
height: 500px;
  object-fit: contain;
}

.btn{
background:#ff9800;
padding:13px 28px;
display:inline-block;
margin-top:18px;
border-radius:6px;
color:white;
text-decoration:none;
font-weight:bold;
}

.btn svg {
    display: inline-block;
    vertical-align: middle;
}
/* CATEGORY */

.categories{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:20px;
margin:50px 0;
}

.cat{
background:white;
padding:25px 15px;
text-align:center;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.3s;
}

.cat:hover{
transform:translateY(-5px);
}

.cat img{
width:55px;
margin-bottom:10px;
}

/* PRODUCTS */

.products{
margin:60px 0;
}

.products h2{
font-size:28px;
margin-bottom:30px;
}

.grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
padding: 0 10px;
}

.product{
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 6px 18px rgba(0,0,0,.08);
text-align:center;
transition:.3s;
cursor:pointer;
}

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

.product img{
width:100%;
height:190px;
object-fit:cover;
border-radius:8px;
margin-bottom:10px;
transition:.4s;
}

.product:hover img{
transform:scale(1.05);
}

.product h3{
font-size:15px;
min-height:40px;
}

/* .call{
background:#0e3c85;
color:white;
padding:10px 20px;
text-decoration:none;
border-radius:6px;
display:inline-block;
font-size:14px;
} */


.call{
    background:#0e3c85;
    color:white;
    padding:10px 20px;
    text-decoration:none;
    border-radius:6px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    }

/* PROMO */

.promo{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
margin:60px 0;
}

.banner{
position:relative;
padding:60px;
border-radius:12px;
color:white;
overflow:hidden;
}

.banner::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(90deg,#0e3c85cc,#1b9db5cc);
}

.banner-content{
position:relative;
z-index:2;
}

.banner1{
background:url("https://images.unsplash.com/photo-1576091160550-2173dba999ef") center/cover;
}

.banner2{
background:url("https://images.unsplash.com/photo-1580281657527-47d2b40a4e18") center/cover;
}

/* CTA */

.cta{
background:#0e3c85;
color:white;
padding:60px;
text-align:center;
border-radius:8px;
margin:60px 0;
}

/* FOOTER */

.footer{
background:#111;
color:#ccc;
padding:40px 0px;
margin-top:40px;
}

.footer .wrapper{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.footer a{
color:#1b9db5;
text-decoration:none;
}




/* SHOP HERO */

.shop-hero{
    text-align:center;
    padding:0px 20px;
    }
    
    .shop-hero h1{
    font-size:36px;
    margin-bottom:10px;
    }
    
    .shop-filter{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:40px;
    flex-wrap:wrap;
    }
    .shop-filter br {
        display: none;
    }
    
    .shop-filter button{
    padding:10px 18px;
    border:none;
    background:#1b9db5;
    color:white;
    border-radius:6px;
    cursor:pointer;
    font-weight:600;font-family: "Poppins", sans-serif;
    }
    
    .shop-filter button:hover{
    background:#0e3c85;
    }



    .whatsapp-float{
        position:fixed;
        right:20px;
        bottom:100px;
        width: 45px;
        height: 45px;
        background:#fff;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        box-shadow:0 5px 15px rgba(0,0,0,.2);
        z-index:999;
        transition:.3s;
        }
        
        .whatsapp-float img{
        width:32px;
        }
        
        .whatsapp-float:hover{
        transform:scale(1.1);
        }


        /* CONTACT PAGE */

.contact-page{
    padding:60px 0;
    }
    
    .contact-page h1{
    font-size:36px;
    text-align:center;
    margin-bottom:10px;
    }
    
    .contact-sub{
    text-align:center;
    margin-bottom:40px;
    color:#666;
    }
    
    .contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    }
    
    .contact-info{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    font-family: "Poppins", sans-serif;
    }
    
    .contact-form{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    font-family: "Poppins", sans-serif;
    }
    
    .contact-form input,
    .contact-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:14px;
    font-family: "Poppins", sans-serif;
    }
    
    .contact-form button , .contact-form .wpcf7-submit {
    background:#1b9db5;
    border:none;
    padding:12px 25px;
    color:white;
    border-radius:6px;
    cursor:pointer;
    font-weight:bold;
    font-family: "Poppins", sans-serif;
    }
    
    .contact-form button:hover , .contact-form .wpcf7-submit:hover{
    background:#0e3c85;
    }
    
    .map{
    margin-top:50px;
    border-radius:10px;
    overflow:hidden;
    }

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

@media (max-width: 992px){

    .contact-grid{
    grid-template-columns:1fr;
    gap:25px;
    }
    
    .contact-page{
    padding:40px 20px;
    }

    .grid{
        grid-template-columns: repeat(3,1fr);
    }
    
    }
    
    /* ============================= */
    /* MOBILE RESPONSIVE */
    /* ============================= */
    
    @media (max-width: 600px){
    
    .contact-page h1{
    font-size:28px;
    }
    
    .contact-sub{
    font-size:14px;
    }
    
    .contact-info,
    .contact-form{
    padding:20px;
    }
    
    .contact-form input,
    .contact-form textarea{
    font-size:13px;
    }
    
    .contact-form button{
    width:100%;
    }
    
    .map iframe{
    height:250px;
    }


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

    .menu .wrapper {
        gap: 12px;
  padding: 12px 23px;
  justify-content: center;
    }
    .headermain {
        flex-direction: column;
        gap:10px;
    }
    .footer .wrapper {
        grid-template-columns: repeat(1,1fr);
    }
    
    }

    .custcopyright {
        width: 100%;
        text-align: center;
        padding: 10px;
        background: #0369c9;
    }
    .custcopyright p {
        color: #fff;
        font-size: 14px;
    }
    .physiocolsftr a {
        color: #fff;
        font-size: 14px;
    }
    .physiocolsftrnav {
        display: flex;
        flex-direction: column;
        padding: 0 0 0 15px;
    }

    .main-menu li {
list-style: none;
    }
    .menu-footer-container ul {
        padding-left: 0px;
    }
    .menu-footer-container ul li {
list-style: none;
    }
    .menu-footer-container ul li a {
        color: #fff;
    }
    .menu-footer-container ul li a:hover{
        color: #0369c9;
    }

    .call {

    }


    /* ABOUT PAGE */

.about-hero{
    text-align:center;
    padding:60px 20px;
    }
    
    .about-hero h1{
    font-size:38px;
    margin-bottom:10px;
    }
    
    .about-hero p{
    color:#666;
    }
    
    .about-content{
    margin:60px 0;
    }
    
    .about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    background: #fff;
  padding: 0px 20px;
  border-radius: 20px;
    }
    
    .about-text h2{
    margin-bottom:15px;
    }
    
    .about-img img{
    width:100%;
    border-radius:10px;
    }
    
    .why{
    text-align:center;
    margin:70px 10px;
    }
    
    .why h2{
    margin-bottom:40px;
    }
    
    .why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    }
    
    .why-box{
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    }
    
    .why-box h3{
    margin-bottom:10px;
    }
    
    /* RESPONSIVE */
    
    @media(max-width:900px){
    
    .about-grid{
    grid-template-columns:1fr;
    }
    
    .why-grid{
    grid-template-columns:repeat(2,1fr);
    }
    
    .promo {
        padding: 0 10px;
    }
    }
    
    @media(max-width:600px){
    
    .why-grid{
    grid-template-columns:1fr;
    }
    
    .about-hero h1{
    font-size:28px;
    }
    .footer .wrapper {
        padding: 0 10px;
    }
    .banner {
        padding: 20px;
    }
    .promo {
        padding: 0 10px;
        flex-direction: column;
  display: flex;
    }
    .hero-inner {
        flex-direction: column;
        padding: 10px 15px;
    }
    .hero-text {
        max-width: 100%;
      }
      .hero h1 {
        font-size: 32px;
        line-height: 36px;
    }
    .categories {
        grid-template-columns: repeat(2,1fr);
        gap:10px;
        padding: 0 10px;
    }
    .products h2 {
        padding: 0 10px;
    }
    }

    
/* ERROR FIELD BORDER */

.wpcf7-not-valid{
    border:1px solid #ff4d4f !important;
    }
    
    /* ERROR MESSAGE */
    
    .wpcf7-not-valid-tip{
    color:#ff4d4f;
    font-size:13px;
    margin-top:-8px;
    margin-bottom:10px;
    display:block;
    }
    
    /* SUCCESS MESSAGE */
    
    .wpcf7-mail-sent-ok{
    border:2px solid #28a745;
    background:#e9f9ee;
    color:#28a745;
    padding:12px;
    border-radius:6px;
    margin-top:15px;
    }
    
    /* ERROR MESSAGE (FORM NOT SENT) */
    
    .wpcf7-mail-sent-ng{
    border:2px solid #ff4d4f;
    background:#ffecec;
    color:#ff4d4f;
    padding:12px;
    border-radius:6px;
    margin-top:15px;
    }
    
    /* RESPONSE MESSAGE */
    
    .wpcf7-response-output{
    margin-top:15px;
    font-size:14px;
    text-align:center;
    }