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

body{
    font-family:Inter,sans-serif;
    background:#f6f8fb;
    color:#222;
    font-size: 14px;
}

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

/* ---------------- Header ---------------- */

header{
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:100;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:70px;
}

.logo{
    font-size:24px;
    font-weight:700;
    color:#00a86b;
}

nav ul{
    list-style:none;
    display:flex;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#444;
    font-weight:500;
}

.button{
    background:#00a86b;
    color:white;
    padding:10px 20px;
    border-radius:8px;
}

/* ---------------- Hero ---------------- */

.hero{
    padding:10px 0;
    text-align:left;
}

.hero h1{
    font-size:36px;
    margin-bottom:20px;
}

.hero p{
    color:#666;
    font-size:18px;
    margin-bottom:40px;
}

/* ---------------- Section ---------------- */

section{
    margin: 30px 0;
}

.section-title{
    font-size:24px;
    margin-bottom:30px;
}

/* ---------------- Grid ---------------- */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    transition:.25s;
}

.card-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

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

.card-image{
    height:160px;
    background:linear-gradient(135deg,#00a86b,#36d399);
}

.card-content{
    padding:20px;
}

.card h3{
    margin-bottom:10px;
}

.badge{
    display:inline-block;
    background:#e7fff4;
    color:#00a86b;
    padding:5px 12px;
    border-radius:30px;
    font-size:13px;
    margin-top:15px;
}

/* Categories */

.category{
    text-align:left;
    padding:40px 20px;
}

.category h3{
    margin-top:15px;
}

/* Footer */

 footer{
    background:#1b1f24;
    color:#ccc;
    margin-top:80px;
    padding:50px 0;
    text-align:left;
}

footer h3{
    color:white;
    margin-bottom:15px;
} 

/* Footer */
.main-footer {

    /* background: var(--surface-dark);
    border-top: 1px solid var(--glass-border); */
    padding: 4rem 0 2rem;
    margin-top: 8rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}


.footer-logo,
.footer-heading {
  
  font-size: 1.4em; 
  font-weight: 700;  
  margin: 0;
  padding: 0;
  color: var(--primary);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent;
  background-clip: text; */
  padding:2%;
  padding-left: 0;
}
.footer-heading {
  font-size: 1.4em; 
  font-weight: 700;  
  margin-bottom: 0px;
  /* padding: 0;   */
}
.footer-about {
  font-family: Verdana;
  font-size: 0.85em;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 20px;
  display: inline-block; /* Make it inline for row alignment */
  vertical-align: middle;
}

.footer-links {
  list-style-type: none;
  padding: 0;
}

.footer-links li {
  /* margin-bottom: 12px; */
  display: flex; /* Ensures icon and text are on same row */
  align-items: center;
}

.footer-links i {
  font-size: 0.7em;
  /* width: 20px; */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.footer-links a {
  display: inline-flex; 
  align-items: center;
  gap: 8px;
  color: var(--white);
  opacity: 0.8;
  font-family: Verdana;
  text-decoration: none;
  font-size: 0.95em;
  transition: opacity 0.3s ease;
   line-height: 1.6;
}

.footer-links a:hover {
  opacity: 1;
}


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.7;
  padding-top: 0.5%;
  position: absolute;
  left: 0;
  /* bottom: 1.4%; */
  width: 100%;
  font-size: 0.7em;
  text-align: center;
 
}

#id_version{
  position: absolute;
  font-family: Verdana;
  bottom: 0.5%;
 
  right: 5%;
}

@media(max-width:768px){

.hero h1{
    font-size:34px;
}

nav ul{
    display:none;
}

}
