/* style.css - Fully New Clean Modern Navbar + Blog Layout */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* NEW Navbar */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  flex-wrap: wrap;
}
.nav-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #00adb5;
  color: #00adb5;
}
.nav-toggle {
  display: none;
  font-size: 1.8rem;
  color: #00adb5;
  cursor: pointer;
  /* display: flex;
  align-items: center;
  justify-content: center;
  align-self: center; */
  margin-left: 20px;
}
.nav-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
margin-left: 20px;
}
.nav-menu li a {
  padding: 8px 12px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}
.nav-menu li a:hover {
  background: #f0f0f0;
  color: #00adb5;
  border-radius: 4px;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
     font-size: 19px;
  }
  .nav-logo {
  font-size: 20px;
  font-weight: bold;
  color: #00adb5;
}
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding: 10px 0;
    border-top: 1px solid #ddd;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu li {
    text-align: center;
    padding: 10px 0;
  }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}
.btn-primary {
  background: #00adb5;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #02888f;
}

/* Blog Section */
.blog-section {
  padding: 60px 20px;
}
.blog-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #00adb5;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.blog-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card-content {
  padding: 15px;
}
.card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}
.card-content p {
  font-size: 0.95rem;
  color: #555;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}
.float-btn {
  background: #00adb5;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: background 0.3s;
}
.float-btn:hover {
  background: #02888f;
}

/* Footer */
.footer {
  background: #f5f5f5;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
  margin-top: 40px;
}