/*
Theme Name: Sanviora Lifecare
Theme URI: https://sanvioralifecare.com
Author: Sanviora Lifecare
Author URI: https://sanvioralifecare.com
Description: A custom WordPress theme converted from HTML landing page
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: landing-page-theme
*/

/* Your existing CSS from styles.css goes below this comment */
:root{
  --primary:#0ea5a4;
  --primary-dark:#0f766e;
  --green:#16a34a;
  --light:#f8fafc;
  --dark:#0f172a;
}

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

body{
  font-family:'Inter',sans-serif;
  background:#ffffff;
  color:#1e293b;
  line-height:1.6;
}

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

/* Header */

header{
  position:sticky;
  top:0;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  z-index:1000;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
}

.logo{
  font-size:20px;
  font-weight:700;
  color:var(--primary-dark);
}

.nav-links{
  display:flex;
  gap:25px;
  align-items:center;
}

.nav-links a{
  text-decoration:none;
  color:#334155;
  font-weight:500;
}

.phone{
  font-weight:600;
  color:var(--primary-dark);
}

.btn{
  padding:10px 20px;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
  background:linear-gradient(135deg,var(--green),var(--primary));
  color:#fff;
  transition:0.3s;
}

.btn:hover{
  opacity:0.9;
}

/* Hero Section */

.hero{
  padding:90px 0;
  position:relative;
  background:
        url('https://sanvioralifecare.com/wp-content/uploads/2026/02/sanviora-banner.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.hero h1{
  font-size:38px;
  font-weight:700;
  margin-bottom:15px;
  color:var(--dark);
}

.hero p{
  margin-bottom:15px;
}

.hero ul{
  list-style:none;
  margin-bottom:20px;
}

.hero ul li{
  margin-bottom:8px;
}

.hero ul li::before{
  content:"✔";
  color:var(--green);
  margin-right:8px;
}

.hero img{
  width:100%;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* Sections */

.section{
  padding:70px 0;
}

.section h2{
  text-align:center;
  margin-bottom:20px;
  font-size:30px;
}

.section h2 i{
  color:var(--primary);
  margin-right:8px;
}

.section p.center{
  text-align:center;
  margin-bottom:40px;
  color:#64748b;
}

/* Cards */

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

.card{
  background:#fff;
  padding:25px;
  border-radius:16px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-6px);
}

.card h3{
  margin-bottom:10px;
  color:var(--primary-dark);
}

.card h3 i{
  color:var(--green);
  margin-right:8px;
}

/* Products */

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

.product-card{
  background:#f0fdfa;
  padding:20px;
  border-radius:16px;
  transition:0.3s;
}

.product-card:hover{
  background:#ccfbf1;
  transform:translateY(-6px);
}

.product-card h3 i{
  color:var(--primary);
  margin-right:8px;
}

/* Stats */

.stats{
  background:linear-gradient(135deg,#0ea5a4,#16a34a);
  color:#fff;
  text-align:center;
  padding:60px 0;
}

.stats-grid{
  display:flex;
  justify-content:space-around;
  margin-bottom:30px;
}

.progress{
  width:70%;
  height:12px;
  background:#ffffff55;
  border-radius:10px;
  margin:auto;
  overflow:hidden;
}

.progress-bar{
  width:95%;
  height:100%;
  background:#fff;
}

/* Testimonials */

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

.testimonial{
  background:#fff;
  padding:25px;
  border-radius:16px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  text-align:center;
}

.testimonial img{
  width:70px;
  height:70px;
  border-radius:50%;
  margin-bottom:10px;
}

/* Footer */

footer{
  background:linear-gradient(135deg,#0f766e,#115e59);
  color:#fff;
  padding:50px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:30px;
}

footer a{
  color:#fff;
  text-decoration:none;
}

.copyright{
  text-align:center;
  margin-top:30px;
  font-size:14px;
}

/* Responsive */

@media(max-width:992px){
  .hero-content,
  .cards,
  .products,
  .testimonials,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:768px){
  .hero-content,
  .cards,
  .products,
  .testimonials,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .stats-grid{
    flex-direction:column;
    gap:20px;
  }
  .nav-links{
    display:none;
  }
}