
      @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
      }

      body {
        background: #f4f7fc;
        padding: 40px 0;
      }

      .navbar {
        width: 1240px;
        height: 80px;
        padding: 0px 30px;
        margin: auto;
        background: #fff;
        color: #1c222b;
        border-radius: 16px;
        /* margin-top: 20px; */
        display: flex;
        align-items: center;
        justify-content: space-between;
        opacity: 1;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
      }

      .logo {
        font-weight: 700;
        width: 162px;
      }

      .nav-links {
        list-style: none;
        display: flex;
        gap: 22px;
      }

      .nav-links li {
        position: relative;
      }

      .nav-links a {
        text-decoration: none;
        color: #111;
        font-size: 18px;
        font-weight: 500;
        line-height: 28px;
      }

      .nav-links a:hover {
        color: #0fb9e2;
      }

      .navbar button {
        background: #111;
        color: white;
        border: none;
        padding: 10px 18px;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .navbar button:hover {
        background: #0fb9e2;
        font-size: 13.5px;
      }

      .dropdown {
        position: relative;
        display: inline-block;
      }

      .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #ffffff;
        min-width: 250px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 10px 0;
        z-index: 1000;
        list-style: none;
        text-align: left;
        transition: all 0.3s ease-in;
      }

      .dropdown-content li a {
        color: #333;
        padding: 12px 20px;
        text-decoration: none;
        display: block;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.3s ease-in;
        white-space: nowrap;
      }

      .dropdown-content li a:hover {
        background-color: #f0f6fa;
        color: #0da8d1;
      }

      .dropdown:hover .dropdown-content {
        display: block;
      }

  


      #main-footer {
        background: #f9fbfd;
        padding: 70px 9% 30px;
        color: #111;
        /*margin-top: 160px;*/
        margin-bottom: 0;
      }

      .footer-container {
        display: grid;
        grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
        gap: 60px;
        margin-bottom: 40px;
      }

      .footer-col h4 {
        font-size: 20px;
        line-height: 28px;
        font-weight: 600;
        margin-bottom: 16px;
      }

      .footer-col li:hover {
        color: #0fb9e2;
      }

      .footer-col p,
      .footer-col li {
        font-size: 16px;
        line-height: 26px;
        color: #000000;
      }

      .footer-col ul {
        list-style: none;
        padding: 0;
      }

      .footer-col li {
        margin-bottom: 8px;
        cursor: pointer;
      }

      .footer-logo {
        width: 160px;
        margin-bottom: 16px;
      }

      .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
      }

      .contact-item p:hover {
        color: #0fb9e2;
      }

      .social-links {
        display: flex;
        gap: 10px;
        margin-top: 16px;
      }

      .social-links img {
        width: 34px;
        height: 34px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
      }

      .social-links img:hover {
        width: 36px;
        height: 36px;
      }

      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 16px;
        text-align: center;
        font-size: 13px;
        color: #252525;
      }

      @media (max-width: 900px) {
        .projects-grid {
          grid-template-columns: 1fr;
        }
      }

     
    /* ===== BLOG HERO ===== */
.blog-hero {
  max-width: 1380px; 
  margin: 70px auto 10px;
  text-align: center;
  position: relative;
  padding: 50px 30px;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #dff4ff, transparent 65%);
  z-index: -1;
}

.blog-hero h1 {
  font-size: 40px;
  font-weight: 800;
  max-width: 1100px;
  margin: auto;
  color: #1c222b;
}

.blog-meta-top {
  margin-top: 12px;
  font-size: 15px;
  color: #666;
}

.author-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 35px;
  max-width: 1100px;
  margin-inline: auto;
}

.author {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.author span {
  font-size: 14px;
  color: #777;
}

.share i {
  margin-left: 14px;
  cursor: pointer;
  color: #555;
}

/* ===== HERO IMAGE ===== */
.blog-hero-img {
  width: 100%;
  max-width: 1100px; 
  height: 500px;
  object-fit: cover;
  display: block;
  margin: 40px auto 70px;
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* ===== BLOG CONTENT ===== */
.blog-container {
  max-width: 1100px; 
  margin: auto;
  margin-bottom: 40px;
  /* background: #ffffff; */
  padding: 70px 90px;
  border-radius: 26px;

  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.08);
}

.blog-container::before{
   background: radial-gradient(circle at top left, #dff4ff, transparent 65%);
}

.blog-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 35px;
}

.blog-container p {
  font-size: 17.5px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 22px;
}

.blog-container h2 {
  font-size: 28px;
  margin-top: 55px;
  margin-bottom: 18px;
}

.blog-container h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 10px;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  border-left: 6px solid #0056b3;
  padding: 24px 30px;
  border-radius: 16px;
  margin: 40px 0;
}

/* ===== RELATED SECTION ===== */
.related-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 30px;
}

.related-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.related-header .dot {
  width: 7px;
  height: 7px;
  background: #00a8ff;
  border-radius: 50%;
}

.related-header h3 {
  font-size: 16px;
  font-weight: 500;
  color: #444;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.related-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s ease;
  padding:20px;
}

.related-card:hover {
  transform: translateY(-8px);
}

.related-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}

.related-card h4 {
  font-size: 19px;
  font-weight: 700;
  margin: 18px 0 10px;
  color: #1c222b;
  line-height: 1.45;
}

.related-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.related-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
}

.related-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.related-author span {
  font-weight: 500;
}

.related-author small {
  color: #888;
}




/*media query*/

/* ≤768px — Tablet / Mobile */
@media (max-width: 768px) {
  .blog-hero-img {
  width: 100%;
  max-width: 768px; 
  height: 300px;
  object-fit: cover;
  display: block;
  margin: 10px auto 20px;

}
.blog-hero{
  max-width: 768px;
  margin:20px auto 10px;
  padding:8px 12px;  
}
.blog-container {
  max-width: 1100px; 
  margin: auto;
  /* background: #ffffff; */
  padding: 20px 30px;

}
/*
#main-footer{
  margin-top: 40px;
}*/
}

/* ≤576px — Small Mobile */
@media (max-width: 576px) {
  .blog-hero-img {
  width: 100%;
  max-width: 576px; 
  height: 200px;
  object-fit: cover;
  display: block;
  margin: 10px auto 20px;

}
.blog-hero{
  max-width: 768px;
  margin:20px auto 10px;
  padding:8px 12px;  
}
.blog-container {
  max-width: 576px; 
  margin: auto;
  /* background: #ffffff; */
  padding: 20px 30px;

}
.blog-hero h1 {
    font-size: 20px;
    font-weight: 800;
    max-width: 576px;
    margin: auto;
    color: #1c222b;
}
.blog-title {
  font-size: 20px;

}

}
