body {
  font-family: Georgia, serif;

  .logo-img {
    width: 280px;
    height: auto;
  }

  .header-top {
    margin-bottom: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .main-nav,
  .service-nav,
  .btn-dark-green {
    display: none !important;
  }

  .header-top .btn.d-lg-none {
    margin-left: auto;
    padding: 0.25rem 0.5rem;
  }

  #mobileMenu .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    text-align: left;
    border-radius: 6px;
  }

  #mobileMenu .nav-link:hover,
  #mobileMenu .nav-link.active {
    background-color: #f27b21;
    color: #fff !important;
  }

  .hero-video-section,
  .hero-video-section video {
    position: relative;
    z-index: 1;
  }
}
@media (min-width: 320px) and (max-width: 568px) {
  .main-header {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    position: sticky;
    top: 0;
    z-index: 1100;
    background: #fff;
    overflow-x: hidden;
  }

  /*  logo */
  .logo-img {
    width: 230px;
    height: auto;
  }

  .header-top {
    margin-bottom: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .main-nav,
  .service-nav,
  .btn-dark-green {
    display: none !important;
  }

  .header-top .btn.d-lg-none {
    margin-left: auto;
    padding: 0.25rem 0.5rem;
  }

  #mobileMenu .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    text-align: left;
    border-radius: 6px;
  }

  #mobileMenu .nav-link:hover,
  #mobileMenu .nav-link.active {
    background-color: #f27b21;
    color: #fff !important;
  }
}
/* hero section  */
/* .blog-hero {
  background-color: #1c2d59;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.blog-hero h1 {
  line-height: 1.3;
}

.blog-hero input[type="email"] {
  max-width: 300px;
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  border: none;
}

.blog-hero .btn {
  border-radius: 50px;
  height: 100%;
}

.blog-hero .form-control:focus {
  box-shadow: none;
  border-color: #0f305f;
}

.blog-hero::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}
.blog-hero form .form-control {
  min-width: 250px;
  flex: 1 1 auto;
}

@media (max-width: 576px) {
  .blog-hero form {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-hero form .form-control,
  .blog-hero form .btn {
    width: 100%;
  }
} */

/* .........................  */

/* blog  */

.blog-grid-section {
  background-color: #fff;
}

.blog-card img {
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

.blog-card h5 {
  font-size: 1.1rem;
  color: #1c2d59;
}

.blog-card p {
  font-size: 0.95rem;
}

.blog-tags .badge {
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.blog-tags .badge:hover {
  background-color: #f27b21;
  color: #fff;
  border-color: #f27b21;
}

.blog-grid-section .btn {
  font-weight: 500;
}

.blog-grid-section .btn:hover {
  background-color: #f27b21;
  color: #fff;
  border-color: #f27b21;
}

/* animate  */
.animated-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.05);
}
.blog-card .cover-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: block;

  background: transparent;
}

.blog-card .cover-link,
.blog-card .cover-link:visited,
.blog-card .cover-link:hover {
  color: inherit;
  text-decoration: none;
}
