/* Header Styles */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    border-radius: 10px;
    background-color: rgb(252, 252, 252);
    width: 80%;
    padding: 0px 20px;
    position: fixed;
    left: 0;
    right: 0;
    top: 25px;
    z-index: 1000;
    animation: fadeIn 2s ease;
    transition: background-color 0.3s ease;
  }
  
  header .scrolled {
    background-color: rgba(252, 252, 252, 0.379);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    top: 0;
  }
  
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(-100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /*  Menu Styles */
  
  header .header-container .nav-menu {
    width: 100%;
    padding: 0;
  }
  
  .nav-menu li:first-child {
    margin-right: auto;
    width: 100px;
  }
  
  .nav-menu li:last-child {
    margin-left: auto;
  }
  
  header .nav-menu ul li a {
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--black);
    display: flex;
    align-items: center;
    padding: 0 15px;
  }
  
  header .nav-menu ul .nav-link a:hover {
    color: var(--green);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  header .nav-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0 1rem;
  }
  
  header .nav-menu ul .btn-getstarted a {
    background-color: transparent;
    border: 1px solid var(--black);
    border-radius: 10px;
    font-weight: 400;
    padding: 5px 10px;
    transition: all 0.3s ease;
  }
  
  
  
  header .nav-menu ul .btn-getstarted a:hover {
    color: var(--black);
    transform: translateY(-5px);
    background-color: var(--white);
    font-weight: 500;
  }
  
  
  
  /* Side Bar Menu Styles */
  header .side-bar-menu-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background-color: rgba(245, 245, 245, 0.376);
    z-index: 999;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.202);
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  .side-bar-menu li {
    width: 100%;
    list-style: none;
    text-align: start;
    padding-left: 10px;
    margin-bottom: 15px;
    font-weight: 400;
    }
  
  .side-bar-menu li .nav-link {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--black);
    
    margin-bottom: 10px;
  }
  
  .side-bar-menu li a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--black);
  }
  
  .side-bar-menu .nav-link:hover {
    font-weight: 600;
    color: var(--green);
  }
  
  .side-bar-menu li img {
    width: 80px;
    height: 80px;
  }
  
  .side-bar-menu .btn-getstarted a {
    background-color: var(--lightgreen);
    color: var(--black);
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 20px;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
  }
  
  .side-bar-menu .btn-getstarted a:hover {
    background-color: var(--white);
    color: var(--black);
  }
  
  /* Menu Toggle Button */
  .menu-toggle {
    display: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }
  
  
  /* Close Menu Button */
  .side-bar-menu .close-menu {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1001;
    margin: 10px;
    padding: 0;
    cursor: pointer;
  }
  
  .side-bar-menu .close-menu svg {
    width: 40px;
    height: 40px;
    fill: rgba(0, 0, 0, 1);
  }
  
  .menu-toggle svg {
    width: 30px;
    height: 30px;
    fill: rgba(0, 0, 0, 1);
  }

  /* Footer Styles */
  /* Footer Section Styles */
.footer-section {
    background-color: var(--white);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    margin: 1rem;
    border-radius: 10px;
    padding: 1rem 1rem 0 1rem;
    height: 100%;
  }
  
  .footer-section .footer-container {
    background-color: var(--black);
    text-align: center;
    border-radius: 5px;
    height: 100%;
    padding: 5rem 20rem;
  }
  
  .footer-section .footer-container h2 {
    font-size: 3.5rem;
    font-weight: 300;
    text-align: center;
    color: var(--white);
    margin-bottom: 1rem;
  }
  
  .footer-section .footer-container p {
    font-size: 1rem;
    font-weight: 200;
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
  }
  
  .footer-section .footer-container a {
    background-color: var(--white);
    border: 1px solid var(--black);
    text-decoration: none;
    color: var(--black);
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    margin: 0 auto;
  }
  
  .footer-section .footer-container a:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
  }
  
  .footer-section .footer-container svg {
    margin-right: 8px;
  }
  
  /* Footer Container 2 Styles */
  .footer-section .footer-container2 {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
    margin: 5rem 2rem 5rem 2rem;
  }
  
  .footer-section .footer-container2-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding-right: 25rem;
  }
  
  .footer-section .footer-container2-content2 {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 30%;
  }
  
  .footer-section .footer-menu-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: start;
    color: var(--black);
  }
  
  .footer-section .footer-menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    list-style: none;
  }
  
  .footer-section .footer-menu li {
    text-align: start;
    margin-bottom: 10px;
  }
  
  .footer-section .footer-container2-content a {
    width: 150px;
    height: 150px;
    margin-right: auto;
  }
  .footer-section .footer-container2-content2 a {
    text-decoration: none;
    color: var(--black);
  }
  
  .footer-section .footer-container2-content2 a:hover {
    color: var(--green);
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .footer-section .footer-container2-content p {
    font-size: 1rem;
    font-weight: 200;
    text-align: start;
    color: var(--black);
  }
  
  /* Social Media Icons */
  
  .footer-section .footer-container2-content2 i {
    font-size: 1.3rem;
    color: var(--black);
    margin-right: 10px;
  }
  
  /* footer copyright */
  .footer-section .footer-container3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    margin: 0 2rem;
    border-top: 1px solid rgba(177, 177, 177, 0.738);
  }
  
  .footer-section .footer-container3-content {
    font-size: .9rem;
    font-weight: 400;
    text-align: start;
    color: var(--black);
  }
  
  .footer-section .footer-container3-content2 {
    font-size: .9rem;
    font-weight: 400;
    text-align: start;
    color: var(--black);
  }
  
  .footer-section .footer-container3-content2 a {
    text-decoration: none;
    color: var(--black);
  }
  
  /*responsive*/
   /* Add media query for responsive menu */
   @media screen and (max-width: 1380px) {
    .footer-section .footer-container {
      padding: 5rem 10rem;
  }
  
    .footer-section .footer-container2-content2 {
      width: 50%;
  }
    .footer-section .footer-container2-content {
    padding-right: 15rem;
  }
  }
  
  @media screen and (max-width: 1135px) {
    .menu-toggle {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      margin-left: 100px;
      z-index: 900;
    }
    
    .menu-toggle box-icon {
      font-size: 1.5rem;
    }
  }
  @media screen and (max-width: 560px) {
    header .side-bar-menu-container {
      width: 100%;
    }
     /* Footer Section Responsive */
  .footer-section .footer-container {
    padding: 5rem 7rem;
}
  .footer-section .footer-container a {
    width: 50%;
}
  }


  @media screen and (max-width: 850px) {
  /* Footer Section Responsive */
  .footer-section .footer-container h2 {
    font-size: 2.5rem;
  }
  .footer-section .footer-container p {
    font-size: 1rem;
  }
  .footer-section .footer-container a {
    width: 30%;
  }

  /* Footer Container 2 Responsive */
  .footer-section .footer-container2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
  }
  .footer-section .footer-container2-content {
    padding-right: 0;
  }
  .footer-section .footer-container2-content2 {
    width: 100%;
  }
  .footer-section .footer-container2-content {
    padding: 0;
    margin: 0;

  }
  .footer-section .footer-container2-content p {
    text-align: center;
  }

  .footer-section .footer-container2-content a {
    margin: 0 auto;
  }
  
  .footer-section .footer-menu-title {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
  }
  .footer-section .footer-container2-content2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-section .footer-menu {
    align-items: center;
    justify-content: center;
  }
  /* copyright responsive */
  .footer-section .footer-container3-content {
    font-size: .8rem;
  }
  .footer-section .footer-container3-content2 {
    font-size: .8rem;
  }
  }

  @media screen and (max-width: 675px) {
    header .nav-menu ul {
      padding: 0;
    }
    /* Footer Section Responsive */
  .footer-section .footer-container h2 {
    font-size: 2rem;
  }
  .footer-section .footer-container p {
    font-size: .9rem;
  }
  .footer-section .footer-container a {
    width: 40%;
  }
  .footer-section .footer-container {
    padding: 5rem;
  }
  /* copyright responsive */
  .footer-section .footer-container3-content {
    font-size: .6rem;
  }
  .footer-section .footer-container3-content2 {
    font-size: .6rem;
  }
  }

  @media screen and (max-width: 560px) {
    .about-section .about-container2{
      margin: 50px 50px 0 50px;
    }
    
    /* Footer Section Responsive */
  .footer-section .footer-container h2 {
    font-size: 2rem;
  }
  .footer-section .footer-container p {
    font-size: .9rem;
  }
  .footer-section .footer-container a {
    width: 40%;
  }
  .footer-section .footer-container2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 1rem;
    gap: 50px;
  }

  .footer-section .footer-container2-content p {
    text-align: center;
  }

  .footer-section .footer-container2-content a {
    margin: 0 auto;
  }
  
  .footer-section .footer-menu-title {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
  }
  .footer-section .footer-container2-content2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-section .footer-menu {
    align-items: center;
    justify-content: center;
  }
  .footer-section .footer-menu-title {
    font-size: 1.5rem;
  }
  .footer-section .footer-container3-content {
    font-size: .5rem;
  }
  .footer-section .footer-container3-content2 {
    font-size: .5rem;
  }
  }

  @media screen and (max-width: 520px) {
    header .nav-menu ul li a {
      padding: 0;
    }
    /* Footer Section Responsive */
  .footer-section .footer-container h2 {
    font-size: 2rem;
  }
  .footer-section .footer-container p {
    font-size: .9rem;
  }
  .footer-section .footer-container a {
    width: 40%;
  }
  .footer-section .footer-container {
    padding: 3rem;
  }
/* copyright responsive */
.footer-section .footer-container3-content {
  font-size: .4rem;
}
.footer-section .footer-container3-content2 {
  font-size: .4rem;
}
  }

  @media screen and (max-width: 440px) {
    /* Footer Section Responsive */
.footer-section .footer-container h2 {
  font-size: 2rem;
}
.footer-section .footer-container p {
  font-size: .9rem;
}
.footer-section .footer-container a {
  width: 40%;
}
.footer-section .footer-container {
  padding: 2rem;
}
  }

/* SVG Styles */
.menu-toggle svg {
  width: 30px;
  height: 30px;
  fill: rgba(0, 0, 0, 1);
}

.close-menu svg {
  width: 40px;
  height: 40px;
  fill: rgba(0, 0, 0, 1);
}

/* Button reset for menu toggle and close */
.menu-toggle-btn,
button.close-menu {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  line-height: 1;
}

/* Footer SVG Styles */
.footer-container a svg {
  fill: rgba(0, 0, 0, 1);
}