@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --darkgreen: #344e41;
  --green: #3a5a40;
  --lightgreen: #588157;
  --white: whitesmoke;
  --black: #000;
  --pastelgreen: #a3b18a;
  --black-opacity: rgba(0, 0, 0, 0.8);
  --green-opacity: rgba(58, 90, 64, 0.8);
  --gradient-1: linear-gradient(50deg, #fefffe, #3a5a40);
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  background-color: rgb(250, 255, 250);
  color: var(--white);
}


/* Hero Section Styles */
.hero-section {
  background-image: linear-gradient(rgba(16, 94, 16, 0.582), rgba(0, 0, 0, 0.45)), url('../assets/images/VAs.webp');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin: 10px;
}

.hero-container {
  padding: 250px 50px 100px 50px;
  text-align: center;
  line-height: 1.1;
  position: relative;
}

.hero-container h1, .hero-container h2 {
  color: var(--white);
  margin: 10px;
  padding: 0 200px;
  text-shadow: 0 0 2px;
  animation: fadeIn 2s ease;
  opacity: .9;
}

.hero-container p {
  font-size: 1.2rem;
  padding: 0 300px;
  opacity: .8;
  
}

h1 {
  font-size: 4rem;
}


h2 {
  font-size: 1.5rem;
  font-weight: 600;
  width: 100%;
  text-align: end;
}

/* Hero Section Buttons Style */
.btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0 175px 0;
}

.btn-herosection, .btn2-herosection {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-herosection svg, .btn2-herosection svg {
  width: 20px;
  margin-left: 5px;
}

.btn-herosection {
  background: var(--lightgreen);
  color: var(--white);
}

.btn2-herosection {
  background: var(--white);
  color: var(--black);
}

.btn-herosection:hover, .btn2-herosection:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(255, 254, 254, 0.993);
}

/* Clients Logo */
.wrapper {
  width: 90%;
  max-width: 1536px;
  margin-inline: auto;
  position: relative;
  height: 100px;
  margin-top: 1rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

@keyframes scrollLeft {
  to {
    left: -200px;
  }
}

.item {
  width: 200px;
  height: 100px;
  position: absolute;
  left: max(calc(200px * 11), 100%);
  animation-name: scrollLeft;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.item1 { animation-delay: calc(30s / 11 * (11 - 1) * -1); }
.item2 { animation-delay: calc(30s / 11 * (11 - 2) * -1); }
.item3 { animation-delay: calc(30s / 11 * (11 - 3) * -1); }
.item4 { animation-delay: calc(30s / 11 * (11 - 4) * -1); }
.item5 { animation-delay: calc(30s / 11 * (11 - 5) * -1); }
.item6 { animation-delay: calc(30s / 11 * (11 - 6) * -1); }
.item7 { animation-delay: calc(30s / 11 * (11 - 7) * -1); }
.item8 { animation-delay: calc(30s / 11 * (11 - 8) * -1); }
.item9 { animation-delay: calc(30s / 11 * (11 - 9) * -1); }
.item10 { animation-delay: calc(30s / 11 * (11 - 10) * -1); }
.item11 { animation-delay: calc(30s / 11 * (11 - 11) * -1); }

section .wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.vas-img {
  height: 100%;
  margin: 1rem;
}

.vas-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}



/* About Section Styles */
.about-section .about-container p span {
  font-weight: 700;
}

.about-section .about-container2-content h2 {
  font-size: 2.5rem;
  margin-right: 30px;
  font-weight: 300;
  text-align: start;
  color: var(--black);
}

.about-section .about-container2-content h2 span {
  font-size: 1rem;
  font-weight: 200;
  text-align: start;
  color: rgba(80, 80, 80, 0.563);
}

.about-section .about-container {
  display: flex;
  align-items: start;
  justify-content: center;
  margin: 100px;
}

.about-section .about-container h2 {
  font-size: 3rem;
  font-weight: 500;
  text-align: start;
  color: var(--black);
}

.about-section .about-container p {
  font-size: 1rem;
  font-weight: 200;
  text-align: start;
  color: var(--black);
}

.about-section .about-container2 {
  height: 250px;
  border-bottom: 1px solid rgb(150, 150, 150);
  margin: 150px 100px 0 100px;
  display: flex;
  flex-wrap: nowrap;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}

.about-section .container {
  width: 100%;
  border-top: 5px solid var(--lightgreen);
  background-color: whitesmoke;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.about-section .about-container2-content .container.c1 {
  height: 250px;
}
.about-section .about-container2-content .container.c2 {
  height: 140px;
}

.about-section .about-container2-content .container.c3 {
  height: 200px;
}

.about-section .about-container2-content .container.c4 {
  height: 190px;
}

.about-section .about-container2-content .container.c5 {
  height: 160px;
}

.about-section .about-container3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 100px 100px 100px;
  gap: 15px;
  padding: 15px;
}

.about-section .about-container3 .about-content h3 {
  font-size: .9rem;
  font-weight: 400;
  text-align: center;
  color: var(--black);
}

.about-section .about-container3 .about-content {
  height: 100%;
  width: 120px;
  text-align: center;
}

/* Services Section Styles */
.services-section {
  background: linear-gradient(130deg, var(--black), var(--darkgreen));
  padding: 50px 80px 25px 80px;
  margin: 1rem;
  border-radius: 10px;
}

.services-container {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
}

.services-container-content h2 {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  color: var(--white);
  text-align: start;
}

.services-container-content p {
  font-size: 1rem;
  font-weight: 200;
  text-align: center;
  color: var(--white);
}

.services-container-content2 a{
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  background-color: transparent;
  border: none;
  box-shadow: 0 0 1px rgba(236, 236, 236, 0.9);
  padding: 5px 10px;
  border-radius: 5px;
}

.services-container-content2 a:hover {
  background-color: var(--white);
  color: var(--black);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  font-weight: 600;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}
.services-container-content2 a svg {
  width: 25px;
}


.services-container2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 10px 0px 50px 0px;
}

.services-container2-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  background-color: transparent;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  color: var(--white);
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.services-container2-content:hover {
  background-color: rgba(255, 255, 255, 0.768);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  color: var(--black);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  font-weight: 600;
}

.services-container2-content svg {
  width: 30px;
  height: 30px;
  margin-right: auto;
  margin-bottom: 10px;
}

.services-container2-content h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-right: auto;
  margin-bottom: 10px;
}

.services-container2-content ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  margin-left: 20px;
  margin-bottom: 20px;
}

.services-container2-content li {
  font-size: 1rem;
  font-weight: 200;
}

.services-container2-content span {
  font-size: .8rem;
  font-weight: 200;
  margin-right: auto;
  margin-bottom: 20px;
  margin-top: auto;
}

.services-container2-content a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  text-decoration: none;
  color: var(--black);
  font-size: .8rem;
  font-weight: 500;
  text-align: center;
  background-color: var(--green);
  border: none;
  box-shadow: 0 0 2px rgba(236, 236, 236, 0.9);
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--white);
}

.services-container2-content a:hover {
  background-color: var(--white);
  color: var(--black);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  font-weight: 600;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* OurWork Section Styles */
.ourwork-section {
  background: white;
  padding: 50px 80px 25px 80px;
  margin: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.ourwork-section .ourwork-container-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}

.ourwork-section .ourwork-container h2 {
  font-size: 3rem;
  font-weight: 500;
  text-align: start;
  color: var(--black);
}

.ourwork-section .ourwork-container p {
  font-size: 1rem;
  font-weight: 200;
  text-align: start;
  color: var(--black);
}

.ourwork-section .ourwork-container2 a {
  text-decoration: none;
  color: var(--black);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  background-color: transparent;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 0 2px rgba(113, 113, 113, 0.9);
}

.ourwork-section .ourwork-container2 a:hover {
  background-color: var(--white);
  color: var(--black);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.ourwork-section .ourwork-container-content2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(177, 177, 177, 0.738);
  padding: 40px 0;
  height: 100%;
  gap: 50px;
}

.ourwork-container-content2 .ourwork-container3{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  height: 100%;
}

.ourwork-container-content2 .ourwork-container3 h3{
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--black);
}
.ourwork-container-content2 .ourwork-container3 p{
  font-size: 1rem;
  font-weight: 200;
  color: var(--black);
}

.ourwork-container-content2 .ourwork-container4 img{
  width: 85%;
  border-radius: 10px;
}

.ourwork-container-content2 .ourwork-container4 .ratio{
  position: absolute;
  top: 80px;
  left: 0;
  color: var(--black);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  background-color: var(--white);
  border-radius: 10px;
  z-index: 900;
  padding: 5px 10px;
  width: 120px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.ourwork-container-content2 .ourwork-container4 .ratio h3{
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--black);
}

.ourwork-container-content2 .ourwork-container4 .ratio p{
  font-size: 1rem;
  font-weight: 200;
  color: var(--black);
}

.ourwork-container3, .ourwork-container4 {
  width: 100%;
}

.ourwork-container-content2 .ourwork-container4 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  position: relative;
}

.ourwork-container-content3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  height: 100%;
  gap: 50px;
  padding: 40px 0;
  border-top: 1px solid rgba(177, 177, 177, 0.738);
}

.ourwork-container-content3 .ourwork-container5{
  position: relative;
}
.ourwork-container5, .ourwork-container6 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.ourwork-container-content3 .ourwork-container5 .ratio2 {
  position: absolute;
  top: 80px;
  right: 0;
  color: var(--black);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  background-color: var(--white);
  border-radius: 10px;
  z-index: 900;
  padding: 5px 10px;
  width: 120px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.ourwork-container-content3 .ourwork-container5 .ratio2 h3{
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--black);
}

.ourwork-container-content3 .ourwork-container5 .ratio2 p{
  font-size: 1rem;
  font-weight: 200;
  color: var(--black);
}

.ourwork-container-content3 .ourwork-container5 img{
  width: 85%;
  border-radius: 10px;
}

.ourwork-container-content3 .ourwork-container6 h3{
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--black);
}
.ourwork-container-content3 .ourwork-container6 p{
  font-size: 1rem;
  font-weight: 200;
  color: var(--black);
}

/* Testimonials Section Styles */
.testimonials-section {
  margin: 5rem 1rem 5rem 1rem;
}

h2.title {
  text-align: center;
  font-size: 30px;
  margin: 32px 0;
  text-transform: uppercase;
  font-weight: 900;
  position: relative;
  color: var(--darkgreen);
}

h2.title::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  background: var(--darkgreen);
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonials-widget {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding: 0 24px;
}

/* FAQ Section Styles */

.faq-section .container{
  padding: 20px;
  margin: 50px;
}

.faq-section .faq-section-p {
  color: #000;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  padding-bottom: 20px;
}

.faq-section .container details p {
  font-size: 1rem;
  font-weight: 300;
  padding: 20px;
}

.container h2{
  color: var(--darkgreen);
  text-align: center;
  font-size: 30px;
}

details{
  background-color: var(--white);
  color: var(--black);
  font-size: 1.5rem;
  max-width: 800px;
  margin: 10px auto;
  border-radius: 10px;
  box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.1);
}

summary {
  padding: .5em 1.3rem;
  list-style: none;
  display: flex;
  justify-content: space-between;  
  transition: height 1s ease;
  font-size: 1.3rem;
  font-weight: 400;
}

summary::-webkit-details-marker {
  display: none;
}

summary:after{
  content: "\002B";
}


details[open] summary {
    border-bottom: 1px solid #aaa;
    margin-bottom: .5em;
}

details[open] summary:after{
  content: "\00D7";
}

details[open] div{
  padding: .5em 1em;
}


/* Responsive Design */

@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) {
  .hero-container h1 {
    padding: 0;
  }
  .hero-container p {
    padding: 0;
  }
  header .nav-menu .nav-link {
    display: none;
  }
  header .header-container {
    width: 90%;
  }

  .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;
  }
  .nav-menu ul li:first-child {
    margin-right: auto;
  }
  .nav-menu ul li:last-child {
    margin-left: 0;
  }
  header .side-bar-menu-container {
    width: 350px;
  }
  /* AboutUs Responsive */
  .about-section .container {
    width: 100%;
  }

  .about-section .about-container2-content h2 {
    margin-right: 0;
  }
  .about-section .about-container3 {
    padding: 0;
  }
  /* Services Section Responsive */


  .services-section .services-container h2 {
    text-align: start;
  }
  .services-section .services-container p {
    text-align: start;
  }

  /* Footer Section Responsive */
  .footer-section .footer-container {
    padding: 5rem 7rem;
}
  .footer-section .footer-container a {
    width: 50%;
}

}

@media screen and (max-width: 960px) {
  .footer-section .footer-container2-content {
    padding-right: 0;
}
.footer-section .footer-container a {
  width: 70%;
}
/* OurWork Section Responsive */
.ourwork-section .ourwork-container-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.ourwork-section .ourwork-container-content2 {
  display: flex;
  flex-direction: column-reverse;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.ourwork-container-content3 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.ourwork-container-content2 .ourwork-container4 .ratio {
  width: 90px;
}

.ourwork-section {
  padding: 1rem;
}

}

@media screen and (max-width: 850px) {
  .services-container {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  
  .services-container h2 {
    text-align: center;
    margin-top: 50px;
  }
  
  .list-services li {
    width: 100%;
    text-align: center;
  }
  header .side-bar-menu-container {
    width: 300px;
  }
  /* AboutUs Responsive */
  .about-section .about-container {
    display: flex;
    flex-direction: column;
    margin: 25px 50px;
  }
  .about-section .about-container2 {
    margin: 25px 50px;
  }
  .about-section .about-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .about-section .about-container p {
    font-size: 1.2rem;
  }

  .about-section .about-container2-content h2 {
    font-size: 2rem;
  }

  .about-section .about-container3 {
    margin: 10px 50px 50px 50px;
  }
  .list-services .txt li {
    width: 100%;
    text-align: center;
    
  }

  /* Services Section Responsive */
  .services-section .services-container {
    display: flex;
    justify-content:end;
    align-items: end;
    margin: 0 auto;
    width: 100%;
  }
.services-section { 
  padding: 50px 20px 25px 20px;
}

  .services-section .services-container h2 {
    text-align: start;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .services-section .services-container p {
    text-align: start;
    font-size: 1.2rem;
  }
  .services-section .services-container-content2 a {
    display: none;
  }
  .services-section .services-container2 {
    display: grid ;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* FAQ Section Responsive */
  summary {
    font-size: 1rem;
    font-weight: 400;
  }
  .faq-section .container p {
    font-size: 1rem;
    font-weight: 300;
    padding: 20px;
  }
  .faq-section .container {
    margin: 0;
  }

  /* 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) {
  
  .hero-section .hero-container h1 {
    font-size: 2.5rem;
  }
  .hero-section .hero-container h1 .h1-gtv {
    font-size: 3.5rem;
  }
  .hero-section .hero-container h2 {
    font-size: 1.2rem;
  }
  .nav-menu ul .btn-getstarted {
    display: none;
  }
  header .header-container {
    margin: 0 auto;
    width: 85%;
  }
.btns {
  margin: 20px 0 100px 0;
}

  /* AboutUs Responsive */
  .about-section .about-container2-content h2 {
    font-size: 1.2rem;
  }

  .about-section .about-container3 {
    margin: 10px 50px 50px 50px;
  }

  /* Services Section Responsive */

  section .services-section {
    padding: 50px 20px 25px 20px;
  }
  .services-section .services-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
  .services-section .services-container2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  header .nav-menu ul {
    padding: 0;
  }
  header .nav-menu ul li a {
    padding: 0px;
  }
  header .nav-menu ul li .logo-img {
    height: 50px;
    width: 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-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) {
  
  .hero-section .hero-container h1 {
    font-size: 2rem;
  }
  .hero-section .hero-container h1 .h1-gtv {
    font-size: 3rem;
  }
  .hero-section .hero-container h2 {
    font-size: 1.2rem;
  }

  
  /* AboutUs Responsive */
  .about-section .about-container2-content h2 {
    font-size: 1rem;
  }
  .about-section .about-container2-content h2 span {
    font-size: .8rem;
  }
  .about-section .about-container3 .about-content h3 {
    font-size: .8rem;
  }
  /* 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 .side-bar-menu ul {
    width: 100%;
    margin-left: 10px;
  }
  .hero-section .hero-container h1 {
    font-size: 1.5rem;
  }
  .hero-section .hero-container h1 .h1-gtv {
    font-size: 2.5rem;
  }
  .hero-section .hero-container h2 {
    font-size: .8rem;
  }
  .side-bar-menu .nav-link {
    font-size: 1.3rem;
  }
  .side-bar-menu .btn-getstarted {
    font-size: 1rem;
  }
  /* about Section Responsive */
 .about-container {
    margin: 0px;
  }
  .about-section .about-container2-content h2 {
    font-size: .9rem;
  }
  .about-section .about-container2-content h2 span {
    font-size: .7rem;
  }

  .about-section {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-section .about-container3 {
    margin: 50px 50px 10px 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-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) {
  .hero-section .hero-container h1 {
    font-size: 2rem;
  }
  .hero-section .hero-container h1 .h1-gtv {
    font-size: 2.5rem;
  }

  .hero-section .hero-container {
    width: 100%;
    box-sizing: border-box;
    padding: 150px 10px 70px 10px;
  }
  header .header-container {
    margin: 0 auto;
    width: 80%;
  }
.services-container {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.services-container h2 {
  text-align: center;
  margin-top: 50px;
}

.list-services li {
  width: 100%;
  text-align: center;
}
.btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section .wrapper img {
  width: 80%;
}
/* about us Responsive */
.about-section .about-container2-content h2 {
  font-size: .8rem;
}
.about-section .about-container2-content h2 span {
  font-size: .7rem;
}
.about-section .about-container3 .about-content h3 {
  font-size: .7rem;
}
/* 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;
}

}

@media screen and (max-width: 400px) {
  .hero-section .hero-container h1 {
    font-size: 2rem;
  }
  .hero-section .hero-container h1 .h1-gtv {
    font-size: 2.5rem;
  }

  .hero-section .hero-container {
    width: 100%;
    box-sizing: border-box;
    padding: 120px 10px 70px 10px;
  }
  header .header-container {
    margin: 0 auto;
    width: 80%;
  }

.services-container {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.services-container h2 {
  text-align: center;
  margin-top: 50px;
}

.list-services li {
  width: 100%;
  text-align: center;
}
.btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section .wrapper img {
  width: 80%;
}
header .side-bar-menu .btn-getstarted {
  width: 100%;
}

/* about us Responsive */
.about-section .about-container h2 {
  font-size: 1.5rem;
}
section .about-section .about-container p {
  font-size: 1rem;
}

.about-section .about-container2-content h2 {
  font-size: .7rem;
}
.about-section .about-container2-content h2 span {
  font-size: .6rem;
}
.about-section .about-container3 .about-content h3 {
  font-size: .6rem;
}
}

/* 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);
}

.btn-getstarted svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

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

/* Skip Navigation Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--darkgreen);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* Focus-Visible Styles */
*:focus-visible {
  outline: 3px solid var(--lightgreen);
  outline-offset: 2px;
}