nav {
  width: 100%;
  background-color: white;
  box-shadow: 1px 1px 10px rgba(189, 190, 192, 0.386);
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  z-index: 1;
}

nav .nav-left img {
  width: 120px;
}

nav .nav-center ul {
  display: flex;
  list-style: none;
  gap: 50px;
}
nav .nav-center ul li a {
  text-decoration: none;
  color: black;
  font-size: 20px;
}

nav .nav-center ul li a:hover {
  color: rgb(5, 40, 106);
}

nav .nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}
nav .nav-right button {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: white;
  color: gray;
  padding: 0;
}
nav .nav-right button i {
  padding: 5px 10px;
  background-color: rgb(5, 40, 106);
  color: rgb(244, 243, 243);
}
nav .nav-right i {
  font-size: 24px;
  color: black;
}
nav .nav-right i:hover {
  color: rgb(5, 40, 106);
}

#active {
  color: rgb(5, 40, 106);
  border-bottom: 4px solid rgb(5, 40, 106);
  border-radius: 3px;
  padding: 0px 10px 27px 10px;
}

@media (max-width: 1023px) {
  nav {
    padding: 0px 20px;
    width: 100%;
  }
  nav .nav-center ul {
    gap: 20px;
  }
  nav .nav-right i:nth-child(1) {
    display: none;
  }
  .menu {
    grid-template-columns: repeat(3, 1fr);
    padding: 50px 30px;
  }
  .about .container .who {
    flex-direction: column;
    text-align: center;
  }
  .about .container .who img {
    width: 80%;
    margin: auto;
  }
  .features {
    align-items: center;
  }
  .team-members {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  nav {
    padding: 10px;
    width: 100%;
  }
  nav .nav-left img {
    width: 90px;
  }
  nav .nav-center ul {
    gap: 10px;
  }
  nav .nav-center ul li a {
    font-size: small;
  }
  nav .nav-right {
    display: none;
  }
  #active {
    border: none;
  }
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Hero */
.hero {
  background: linear-gradient(to right bottom, rgba(20, 18, 18, 0.842), rgba(39, 38, 38, 0.93)), url(../../img/image\ copy\ 33.png) center/cover no-repeat;
  text-align: center;
  color: #fff;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.5rem;
}

.hero-text .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: rgb(8, 8, 174);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.hero-text .btn:hover {
  background: rgb(4, 4, 106);
}

/* Layout */
.container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  padding: 30px;
}

@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }
}
/* Blog Posts */
.blog-post {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-post img {
  width: 50%;
  border-radius: 10px;
}

.post-content {
  padding: 20px;
}

.post-content h2 {
  margin: 10px 0;
}

.post-content .meta {
  font-size: 0.9rem;
  color: #888;
}

.post-content a {
  display: inline-block;
  margin-top: 10px;
  color: rgb(8, 8, 174);
  text-decoration: none;
  font-weight: bold;
}

.post-content a:hover {
  text-decoration: underline;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.sidebar-box h3 {
  margin-bottom: 10px;
}

.sidebar-box img {
  width: 100px;
  border-radius: 50%;
  margin: 10px auto;
  display: block;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
}

.sidebar-box ul li {
  margin: 8px 0;
}

.sidebar-box ul li a {
  text-decoration: none;
  color: #444;
}

.sidebar-box ul li a:hover {
  color: rgb(8, 8, 174);
}

/* Search */
.search-box {
  display: flex;
}

.search-box input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
}

.search-box button {
  padding: 8px 12px;
  border: none;
  background: rgb(8, 8, 174);
  color: #fff;
  font-weight: bold;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.search-box button:hover {
  background: rgb(8, 8, 174);
}

/* Newsletter */
.newsletter input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.newsletter button {
  width: 100%;
  padding: 10px;
  border: none;
  background: rgb(8, 8, 174);
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.newsletter button:hover {
  background: rgb(8, 8, 174);
}

/* Tags */
.tags a {
  display: inline-block;
  background: #eee;
  color: #444;
  padding: 5px 10px;
  margin: 5px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
}

.tags a:hover {
  background: rgb(8, 8, 174);
  color: #fff;
}

/* Blog Post Image Hover */
.blog-post img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Blog Post Box Hover */
.blog-post:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* Sidebar Box Hover */
.sidebar-box:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

/* Sidebar Image Hover */
.sidebar-box img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Tags Hover (already exists, enhanced) */
.tags a:hover {
  background: rgb(8, 8, 174);
  color: #fff;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* Hero Button Hover (already exists, enhanced) */
.hero-text .btn:hover {
  background: rgb(4, 4, 106);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* Search Button Hover (already exists, enhanced) */
.search-box button:hover {
  background: rgb(4, 4, 106);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* Newsletter Button Hover (enhanced) */
.newsletter button:hover {
  background: rgb(4, 4, 106);
  transform: scale(1.03);
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .hero-text h1 {
    font-size: 25px;
  }
  .hero-text .btn {
    margin-top: 30px;
    font-size: 10px;
  }
}
button {
  padding: 10px 20px;
  border-radius: 5px;
  background: #0d387c;
  border: 2px solid #0d387c;
  color: white;
}

/* Footer Styling */
.footer {
  background: #fff;
  padding: 50px 80px;
  font-family: Arial, sans-serif;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col {
  width: 22%;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer h2.logo {
  font-family: "Brush Script MT", cursive;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #0073e6;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #333;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0073e6;
}

.app-links img {
  width: 140px;
  margin: 5px 0;
  display: block;
}

.payments img {
  width: 50px;
  margin-right: 10px;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;
}

@media (max-width: 1023px) {
  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 200px;
         column-gap: 200px;
  }
  .footer-col {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 30px 20px;
  }
  .footer-container {
    gap: 10px;
  }
  .footer-container .footer-col ul li a {
    font-size: small;
  }
  .footer-container .footer-col .logo {
    font-size: 15px;
  }
  .footer-container .footer-col p {
    font-size: small;
  }
  .payments img {
    width: 40px;
  }
  .header h1 {
    font-size: 28px;
    text-align: center;
  }
}/*# sourceMappingURL=blag.css.map */