
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
.roboto-slab{
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/*---start Main_navbar---*/
:root {
  --primary-color: #ea761d;
  --primary-hover: #d87a1d;
  --muted-text: #64748b;
  --background: #ffffff;
  --border-color: #e5e7eb;
  --header-height: 4rem;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

/* General Styles */
body {
  overflow-x: hidden;
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fffafa;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
}

/* Enhanced Header Styles */
        /* Navigation Styles */
        .nav {
          background: white;
          padding: 1rem 2rem;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          position: fixed;
          width: 100%;
          top: 0;
          z-index: 1000;
      }

      .nav-container {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          justify-content: space-between;
          align-items: center;
      }

      .logo {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          text-decoration: none;
          color: #000;
          font-weight: bold;
          font-size: 1.5rem;
      }

      .logo img {
          height: 40px;
      }

      .logo span {
          color: #ff6b1a;
      }

      .nav-links {
          display: flex;
          gap: 2rem;
          align-items: center;
      }

      .nav-links a {
          text-decoration: none;
          color: #333;
          font-weight: 600;
          transition: color 0.2s;
      }

      .nav-links a:hover {
          color: #ff6b1a;
      }

      .contact-btn {
          background: #f66518;
          color: white;
          padding: 0.5rem 1.25rem;
          border-radius: 6px;
          border: none;
          font-weight: 650;
          cursor: pointer;
          transition: background-color 0.2s;
      }

      .contact-btn:hover {
          background: #e85d0c;
      }

      .menu-toggle {
          display: none;
          font-size: 1.5rem;
          cursor: pointer;
      }

/* Blog Section */
.blog-section {
  
  font-family: Roboto;
  padding: 2rem;
  background-color: #f2c5ad;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 5rem;
}

.blog-section h1 {
  text-align: center;
  text-decoration: underline;
  font-size: 50px;
  color: #1e1e2d;
  margin-bottom: 50px;
}
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}
.blog-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-image {
  width: 100%;
  height: 250px;
  object-fit: fill;
}
.blog-card h2 {
  margin: 10px;
  font-size: 20px;
  color: #1e1e2d;
}
.blog-card p {
  margin: 10px;
  color: #555;
}
.read-more {
  display: block;
  margin: 10px;
  color: #007bff;
  font-weight: bold;
}
.read-more:hover{
  color: #ea580c;
}

/* Footer */
.footer {
  background-color: #ffffff;
  color: #9f4a4a;
  padding: 20px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding-left: 40px;
}
.foot-brand .foot-logo {
  height: 50px;
}
.foot-description {
  margin-top: 10px;
  color: #0d0000;
}
.footer-heading {
  font-size: 18px;
  color: #ed6815;
  margin-bottom: 10px;
}
.footer-links,
footer address {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #000000;
}
.footer-link {
  color: #040000;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #ed6815;
}
.foot-social-links .social-icon {
  display: inline-block;
  margin-right: 10px;
  color: #100000;
  transition: color 0.3s ease;
}
.foot-social-links .social-icon:hover {
  color: #ed6815;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links.active {
    display: flex;
}

.menu-toggle {
    display: block;
}

  .blog-card{
    width: 80%;
  }
}
