* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Public Sans", sans-serif;
}

body {
  background: #f8f9ff;
  color: #222;
}

/* fallback */
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v332/kJEPBvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzBwG-RpA6RzaxHMPdY40KH8nGzv3fzfVJO1Q.woff2)
    format("woff2");
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.blog-hero {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero-img {
  position: absolute;
  inset: 0px;
  z-index: 0;
}

.blog-hero-img img {
  opacity: 0.1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}

.blog-hero-img .blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 1) 100%
  );
}

.blog-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 auto 1rem;
  z-index: 10;
  position: relative;
  /* max-width: 52rem; */
}

.blog-hero p {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.3rem;
  max-width: 42rem;
  margin: 0 auto 1rem;
  z-index: 10;
  position: relative;
}

@media (min-width: 480px) {
  .blog-hero p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 768px) {
  .blog-hero p {
    font-size: 1.125rem;
    line-height: 1.8rem;
    margin-bottom: 2.5rem;
  }
}

.featured {
  position: relative;
  z-index: 20;
  margin-top: -5rem;
}

.featured .featured-box {
  display: flex;
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.09);
  border: 1px solid transparent;
}

.featured .featured-box:hover {
  border-color: #005f9e4d;
}

.featured .featured-box:hover .featured-img img {
  transform: scale(1.05);
}

.featured .featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 700ms;
}

.featured .featured-img {
  width: 60%;
  overflow: hidden;
}

.featured .featured-content {
  padding: 30px;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .featured .featured-content {
    padding: 56px;
  }
}

.featured .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.featured .tag {
  padding: 4px 12px;
  background-color: #1392ec33;
  border: 1px solid #1392ec4d;
  color: #1392ec;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured .read-time {
  font-size: 12px;
  color: #777;
}

.featured .title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 900;
}

.featured .desc {
  font-size: 1.125rem;
  color: #666;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.625;
}

.featured .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.featured .author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.featured .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.featured .name {
  font-weight: bold;
  margin: 0px;
}

.featured .role {
  font-size: 12px;
  color: #777;
  margin: 0px;
}

.featured .arrow-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.featured .featured-box:hover .arrow-btn {
  transform: translateX(8px);
}

.featured .circle-btn {
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0078c6;
  color: white;
  border: none;
}

.category {
  text-align: center;
  margin: 4rem auto;
}

.category .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.category button {
  border-radius: 9999px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  font-weight: 700;
  padding: 0.75rem 2rem;
  color: #707883;
  border: 1px solid #e2e8f0;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.category button.active {
  background: #007bff;
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 95, 158, 0.2);
  transition: 0.3s ease;
  transform: translate(0, 0) rotate(0deg) scale(1.05);
}

.category button.active:hover {
  color: white;
}

.category button:hover {
  border-color: #007bff;
  color: #007bff;
  box-shadow: 0 25px 50px -12px rgba(0, 95, 158, 0.2);
  transition: 0.3s ease;
  transform: translate(0, 0) rotate(0deg) scale(1.05);
}

.blog {
  padding-bottom: 6rem;
}

.blog .blog-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog .blog-inner .card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog .blog-inner .card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.09);
  transform: translateY(-5px);
}

.blog .blog-inner .card .card-img {
  height: 14rem;
  overflow: hidden;
  position: relative;
}

.blog .blog-inner .card .card-img .top-text {
  top: 1rem;
  left: 1rem;
  position: absolute;
}

.top-text span {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  color: #005f9e;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog .blog-inner .card img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  max-width: 100%;
}

.blog .blog-inner .card-body {
  padding: 2rem;
}

.blog .blog-inner .card-body h3 {
  color: #181c21;
  margin-bottom: 1rem;
  font-size: 0.975rem;
  font-weight: 100;
}

.blog .blog-inner .card-body p {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  color: #707883;
  margin-bottom: 1.5rem;
}

.blog .blog-inner .card-body .btn-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.blog .blog-inner .card-body .btn-block span {
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #707883;
  font-weight: 700;
}

.blog .blog-inner .card-body .btn-block a {
  font-size: 0.875rem;
  line-height: 1.25rem;
  gap: 0.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #005f9e;
  text-decoration: none;
}

.blog .blog-inner .card-body .btn-block a span {
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
  color: #005f9e;
}

.blog .blog-inner .card-body .btn-block a:hover span {
  transform: translateX(0.25rem);
}

.blog .load-more {
  text-align: center;
  margin-top: 4rem;
}

.blog .load-more button {
  font-weight: 900;
  color: #007bff;
  padding: 1rem 2.5rem;
  border: 2px solid #007bff;
  border-radius: 9999px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  cursor: pointer;
}

.blog .load-more button:hover {
  color: #fff;
  background: #007bff;
}

@media (max-width: 768px) {
  .featured-box {
    flex-direction: column;
  }

  .featured .featured-img,
  .featured .featured-content {
    width: 100%;
  }

  .blog {
    grid-template-columns: 1fr;
  }
}

.newsletter-section {
  background: #64748b14;
  padding: 50px 0px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .newsletter-section {
    padding: 80px 0px;
  }
}

.newsletter-section .bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  opacity: 0.1;
}

.newsletter-section .bg-shape svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}

.newsletter-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.newsletter-section .newsletter-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1024px) {
  .newsletter-section .newsletter-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 50px 60px;
  }

  .newsletter-section .left {
    width: 50%;
  }

  .newsletter-section .right {
    width: 40%;
  }
}

.newsletter-section .left h2 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: bold;
}

.newsletter-section .left p {
  color: #666;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
}

.newsletter-section .form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-section .form .input-group {
  position: relative;
}

.newsletter-section .form .input-group input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border-radius: 12px !important;
  border: 1px solid #ddd;
  background: #f8fafc;
  outline: none;
  transition: 0.3s;
}

.newsletter-section .form .input-group input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.newsletter-section .icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.newsletter-section .form button {
  background: #007bff;
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.newsletter-section .form button:hover {
  background: #0056b3;
  transform: scale(1.02);
}

.newsletter-section .form button:active {
  transform: scale(0.95);
}

.newsletter-section .note {
  font-size: 10px;
  text-align: center;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.blog-hero .leadership-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.375rem 1rem;
  background-color: #1392ec33;
  border: 1px solid #1392ec4d;
  color: #1392ec;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .blog-hero .leadership-label {
    letter-spacing: 0.1em;
  }
}

.single-blog {
  padding: 60px 0;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  background: #e6f0ff;
  color: #2563eb;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

.single-blog h1 {
  font-size: 40px;
  font-weight: 800;
}

.desc {
  color: #6b7280;
  margin: 15px 0;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.content-area {
  line-height: 1.8;
}

.sidebar-box {
  background: #f9fafb;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.related-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.related-img img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.single-img img {
  border-radius: 1.5rem;
}
.author-meta img {
  border-radius: 50%;
}
