/* blogs.css */
/* Reset and font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #eeeeee;
  color: #222;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}
/* Top Bar */
.topbar {
  background: #000;
  height:50px;
  color: white;
  font-size: 14px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 30px;
  z-index: 2;
}

.contact-info {
  display: flex;
  gap: 25px;
  align-items: center;
}
.mail1{
    padding-right: 50px;
}
.social-icons a{
  margin-left: 10px;
  
}
.fa {
  padding: 9px;
  font-size: 30px;
  width: 32px;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

/* Header and Navbar */
header {
    height: 150px;
    padding-bottom: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 30px;
    padding-top: 20px;
    position: relative;
    background-color: #000000;
}

.logo-img {
  height: 90px;       
  vertical-align: middle;
}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo,
.nav{
  position: relative;
  z-index: 1;
}
.nav-containerblog {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 20px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

.blogs-wrapper {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 20px;
}

.blogs-heading {
  text-align: center;
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit:contain;
}

.blog-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-tag {
  color: #ffa500;
  font-weight: bold;
  font-size: 0.9rem;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.blog-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.blog-meta {
  font-size: 0.85rem;
  color: #888;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  vertical-align: bottom;
}
.footer {
  background-color: #311919;
  color: #fff;
  padding: 60px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 220px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  font-size: 15px;
}

.signup-btn {
  margin-top: 15px;
  padding: 10px 18px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #ffc107;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.signup-btn:hover {
  background-color: #ffc107;
  color: #000;
}

.work-link {
  color: #ffc107;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background-color: #ffc107;
  padding: 6px 12px;
  border-radius: 6px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-links li {
  margin-bottom: 8px;
}

.legal-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 15px;
}

.legal-links a:hover {
  color: #fff;
}


/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section.gray {
  background: #f5f5f5;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Team Section */
.team-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.member {
  text-align: center;
}

.member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffcc00;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 1rem 0;
}
/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 20px 15px;
    text-align: center;
  }
  .topbar {
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  padding: 10px 15px;
  gap: 10px;
  text-align: center;
}

.contact-info {
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}


  .logo-img {
    height: 60px;
  }

  .logo {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    display: block;
    margin: 10px 0;
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  header, .topbar {
    flex-direction: column;
    text-align: center;
    padding: 10px 15px;
  }

  .logo-img {
    height: 60px !important;
    width: auto;
    margin-bottom: 10px;
  }
  h1, h2, h3 {
    font-size: 1.4em;
  }

  .topbar span {
    display: block;
    margin: 5px 0;
  }
}

