  :root {
    --accent:#0b6efd;
    --muted:#555;
    --shadow:0 8px 24px rgba(0,0,0,0.1);
    --text:#071124;
    --bg:rgb(128, 125, 125);
  }

  *{box-sizing:border-box;margin:0;padding:0}
  body{
    font-family: Poppins, Arial, sans-serif;
    background:var(--bg);
    color:var(--text);
    padding:20px;
  }

/* Navbar */
.nav-bar {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  height: 50px;
  background-color: #fff;
  box-shadow: 3px 3px 10px lightslategray;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1;
  border: 3px solid black;
  margin-bottom: 3px;
}

.logo {
  flex: 1;
  font-size: 40px;
  margin-left: 50px;
  font-family: Satisfy;
}

ul.menu {
  flex: 1;
  display: flex;
  flex-flow: row wrap;
}

.menu li {
  flex: 1;
  list-style-type: none;
  font-size: 16px;
  font-family: "Barlow Condensed";
  text-align: center;
}

.menu li a {
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  font-size: 18px;
}

.menu li a:hover {
  color: rgb(69, 69, 225);
  text-decoration: underline;
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  position: absolute;
  bottom: auto;
  right: 40px;
  font-size: 26px;
  color: #000;
  cursor: pointer;
  z-index: 1100;
}
  
/* container */
  .container{
    max-width:1280px;
    margin:auto;
  }

  .site-header h1{
    width: 100%;
    font-size:32px;
    text-align:center;
    margin-bottom:12px;
    margin-bottom: 30px;
    border: 2px solid rgb(174, 169, 169);
    margin-bottom: 40px;
    background-color: #222831;
    color: white;
  }

.container .lead{
  font-size: 18px;
  padding: 20px;
}
  .lead{
    text-align:justify;
    color:#111;
    font-size:16px;
    line-height:1.48;
    max-width: 900px;
    margin:auto;
  }

  /* <!Phone and Whatsapp --> */
  .contact-icons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    gap: 20px;
    z-index: 999;
  }

  .contact-icons a img {
    width: 40px;
    height: 40px;
    background-color: black ;
    border-radius: 20%;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: bounce 1s ease-in-out 2s infinite;
  }

  .contact-icons a img:hover {
    transform: scale(1.1);
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);

    }
  }

  /* Grid */
  .grid{
    margin-top: 12px;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap:28px;
  }

  /* Card */
  .thing{
    margin-top: 50px;
    width: 400px;
    background:white;
    border-radius:16px;
    padding:18px;
    box-shadow:var(--shadow);
    transition:.4s;
    border:1.5px solid #000;
  }

  .thing:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 34px rgba(0,0,0,0.14);
    border-color:var(--accent);
    background-color: black;
    border: 5px solid rgb(79, 78, 78);
  }

  .thing:hover .img-wrap{
    outline: 5px solid rgb(79, 78, 78);
    outline-offset: 5px;
  }

  .thing li b{
    color: var(--accent);
  }

  /* Image */
  .img-wrap{
    width:100%;
    height:300px;
    border-radius:12px;
    overflow:hidden;
    background:#f4f4f4;
    outline: 5px solid rgb(218, 208, 208);
  }

  .img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  /* Text */
  .thing h3{
    margin-top:14px;
    font-size:20px;
  }
  .thing:hover{
    color: white;
  }

  .thing p{
    padding-top: 10px;
  }

  .sub{
    font-size:16px;
    margin-top:4px;
    color:var(--accent);
  }
  .list{
    margin-top:10px;
    margin-left:18px;
    line-height:1.55;
  }
  .inner{
    margin-left:16px;
    list-style:square;
  }

  /* Footer inside card */
  .meta-row{
    margin-top:16px;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
  }
  .badge{
    padding:4px 8px;
    font-size:13px;
    font-weight:600;
    background:var(--accent);
    color:white;
    border-radius:6px;
  }
  .small{
    font-size:15px;
    margin-top: 5px;
    color: red;
    font-weight: 600;
  }

  /* Footer */
      footer {
        margin-top: 30px;
        background: #111;
        color: #fff;
        text-align: center;
        padding: 20px 10px;
      }

      footer p {
        margin: 0;
        font-size: 14px;
        color: #ccc;
      }


  /* ===================== FULL RESPONSIVE DESIGN ===================== */

  /* 🔹 Large Laptop (Below 1200px) */
  @media (max-width: 1200px) {
    .container { padding: 0 20px; margin: 20px; }
    .container a { font-size: 17px; padding: 7px 14px; position: relative; top: -10px; right: 30xp;}
    .site-header h1 { font-size: 30px; }
    .thing { width: 100%; } /* card auto fit */
  }

  @media (max-width: 992px) {

    .lead {
      font-size: 17px;
      padding: 0 15px;
      align-items: justify;
    }

    .thing {
      width: 100%;
      padding: 14px;
    }

    .logo{
      font-size: 20px;
    }

    .menu-toggle {
      display: block;
      top: 10px;
      font-size: 20px;
    }

    .nav-bar {
      flex-direction: column;
      align-items: flex-start;
      padding: 10px 20px;
      height: auto;
    }

    ul.menu {
      width: 100%;
      display: none;
      flex-direction: row;
    }

    ul.menu.active {
      display: flex;
      flex-direction: column;
    }

    .menu li {
      text-align: left;
      padding: 10px 0;
      border-bottom: 1px solid #ddd;
    }

    .menu li a {
      font-size: 20px;
    }
}

  /* 🔹 Mobile Landscape / Small Tablets (Below 600px) */
  @media (max-width: 600px) {
    .logo { font-size: 28px; }
    
    .site-header h1 { font-size: 26px; }
    .lead { font-size: 15px; padding: 0 6px; }

    .grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .img-wrap { height: 220px; }
    .thing {
      padding: 16px;
      width: 100%;
    }
    .thing h3 { font-size: 17px; }
    .sub { font-size: 15px; }
  }
