* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

.logo{
  cursor: pointer;
  display: grid;
  place-items: center;
}

/* Hamburger Menu Start */
.hamburger {
display: none;
flex-direction: column;
justify-content: space-between;
height: 20px;
width: 25px;
cursor: pointer;
}

.hamburger span {
display: block;
height: 3px;
width: 100%;
background-color: #0a2540;
transition: all 0.6s ease;
}

/* Mobile View */
@media (max-width: 768px) {
.nav-bar{
  justify-content: space-between !important;
  padding-inline: 30px;
}
.nav-link {
    display: none; /* Hide navigation links by default */
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    background-color: #fafafa;
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-link ul {
    flex-direction: column; /* Stack links vertically */
    gap: 1rem;
    align-items: center;
}

.nav-link ul li {
    width: 100%; /* Full width for each item */
    text-align: center;
}

.button {
  display: none;
  margin: 10px auto;
}

.hamburger {
    display: flex; /* Show hamburger menu */
}

/* Toggle Hamburger Menu */
.nav-bar.active .nav-link{
    display: flex; /* Show navigation links when active */
}
}

/* Hamburger Menu End */

.nav-bar{
  background-color: #fafafa;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.nav-link ul{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.4rem;
}

.nav-link ul li{
  list-style: none;
  position: relative;
}

.nav-link ul li a{
  text-decoration: none;
  color: #0a2540;
}

ul li:after {
  content: "";
  position: absolute;
  background-color: #0a2540;
  height: 3px;
  width: 0;
  left: 0;
  top: 22px;
  transition: all ease-in-out .3s;
}

ul li:hover:after{
  width: 100%;
}

.nav-link ul li a:hover{
  color: #084179;
}

.button{
  padding-inline: 20px;
  padding-block: 8px;
  border: 2px solid #0a2540;
  border-radius: 18px;
  background-color: transparent;
  color: #0a2540;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button a{
  text-decoration: none;
  color: #0a2540;

}

.button:hover{
  background-color: #0a2540;
  color: #fafafa;
}

/* Styling for the product banner */
.product {
  background-image: url(images/sdgfsdgf.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh; /* Use viewport height */
  display: grid;
  place-items: center;
}

.product h1 {
  font-size: 3rem; /* Responsive font size */
  text-align: center;
}

/* Container for all items */
.items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 20px;
  width: 100%;
}

/* Each product container */
.container {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap on small screens */
  gap: 2rem;
  align-items: center;
  justify-content: center; /* Center content horizontally */
  width: 100%;
  max-width: 1200px; /* Limit width for better readability */
  margin: 0 auto; /* Center containers on page */
}

/* Image styling */
.image-text{
  display: grid;
  place-items: center;
}

.image-text img {
  width: 100%; /* Make images responsive */
  max-width: 400px; /* Prevent images from being too large */
  height: auto; /* Maintain aspect ratio */
  border: 4px solid #3622cc;
  border-radius: 12px;
}

/* Image Title Styling */
.title{
  text-align: center;
  font-size: 1.2rem;
}

/* Text container */
.para {
  width: 100%; /* Full width by default */
  max-width: 600px; /* Limit text width for readability */
  padding: 20px;
  text-align: justify; /* Center-align text */
  font-size: 1rem; /* Responsive font size */
  line-height: 1.5; /* Improve readability */
  background-color: #f9f9f9; /* Subtle background for contrast */
  border-radius: 8px; /* Smooth corners */
}

/* Media queries for responsiveness */
@media (min-width: 768px) {
  .container {
      flex-direction: row; /* Display items side by side on larger screens */
  }

  .image-text, .para {
      flex: 1; /* Allow equal spacing between image and text */
      max-width: 50%; /* Restrict each to half the container width */
  }

  .para {
      text-align: left; /* Align text to the left on larger screens */
  }
}

@media (min-width: 1200px) {
  .heading {
      font-size: 4rem; /* Larger font size for bigger screens */
  }

  .para {
      font-size: 1.25rem; /* Increase text size for better readability */
  }
}



/* Footer Styling */
footer {
  background-color: #0a2540;
  width: 100%;
  bottom: 0;
  left: 0;
}
footer .content {
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px 40px;
}
footer .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.content .top .logo-details {
  color: #fff;
  font-size: 30px;
}
.content .top .media-icons {
  display: flex;
}
.content .top .media-icons a {
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1) {
  background: #4267b2;
}
.top .media-icons a:nth-child(1):hover {
  color: #4267b2;
  background: #fff;
}
.top .media-icons a:nth-child(2) {
  background: #e1306c;
}
.top .media-icons a:nth-child(2):hover {
  color: #e1306c;
  background: #fff;
}
.top .media-icons a:nth-child(3) {
  background: #0077b5;
}
.top .media-icons a:nth-child(3):hover {
  color: #0077b5;
  background: #fff;
}

footer .content {
  border-bottom: 1px solid white;
}
footer .content .link-boxes {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

footer .content .link-boxes .box {
  width: calc(100% / 5 - 10px);
}

.content .link-boxes .box .link_name {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}
.content .link-boxes .box li {
  margin: 6px 0;
  list-style: none;
  width: fit-content;
}
.content .link-boxes .box li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease;
}

.MBO{
  color: #fff;
}

.content .link-boxes .box li a:hover {
  opacity: 1;
  text-decoration: underline;
}
.content .link-boxes .input-box {
  margin-right: 55px;
}
footer .bottom-details {
  width: 100%;
  background: #0a2540;
}
footer .bottom-details .bottom_text {
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover {
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a {
  margin-right: 10px;
}
@media (max-width: 900px) {
  footer .content .link-boxes {
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box {
    width: 40%;
    margin-top: 10px;
  }
}
@media (max-width: 700px) {
  footer {
    position: relative;
  }
  .content .top .logo-details {
    font-size: 26px;
  }
  .content .top .media-icons a {
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box {
    width: calc(100% / 3 - 10px);
  }
  footer .content .link-boxes .input-box {
    width: 60%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 12px;
  }
}
@media (max-width: 520px) {
  footer::before {
    top: 145px;
  }
  footer .content .top {
    flex-direction: column;
  }
  .content .top .media-icons {
    margin-top: 16px;
  }
  footer .content .link-boxes .box {
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box {
    width: 100%;
  }
  .text-wrapper{
      padding: 1rem !important;
  }
  .awesome{
      max-width: 250px !important;
  }
}
