
/* giving some default value */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}
body{
  background-color: 180161;
  height: max-content;
  width: 100%;
}
/* main starts here */
.page-1 {
  height: max-content;
  width: 100vw;
  position: relative;
  background-color: 180161;
}

.main {
  background-color: rgb(5, 5, 75);
  height: max-content;
  width: 100%;
  overflow:hidden;
}

/* main image background */
.page-1 img {
  height: 85vh;
  width: 100vw;
  object-fit: cover;
}

.background {
  position: relative;
  width: 100%;
  height: 85vh; /* Full height of the viewport */
  overflow: hidden; /* Ensures content doesn't overflow the container */
}
.background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the container */
  transform: translate(-50%, -50%); /* Centers the video */
}
/* navbar start here */
.navbar {
  height: 15vh;
  width: 100vw;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: white; */
  top: 0;
}

/* left sode of navbar */
.l-side {
  height: 10vh;
  width: 24%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* right side of navbar */
.r-side {
  height: 10vh;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  z-index: 9;
}

/* button styles */
.r-side button {
  background-color: white;
  color: rgb(5, 5, 75);
  height: 4vh;
  width: 6vw;
  /* padding: .5vw 1.5vw; */
  border: none;
  border-radius: 50px;
  font-size: .8vw;
  cursor: pointer;
  font-weight: 700;
}

.r-side button:hover {
  background-color: #CEAB5A;
  color: white;
  transition: .2s all ease-in-out;
}

/* image size of logo in navbar */
.l-side img {
  height: 7vh;
  width: auto;
  object-fit: contain;
}

/* text work starts here */
.txt-1 {
  position: absolute;
  color: white;
  font-size: 4vw;
  top: 0;
  font-family: Ani;
  font-weight: 500;
  height: 80vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.txt-2 {
  position: absolute;
  color: white;
  font-size: 1.5vw;
  top: 10vh;
  font-family: Ani;
  font-weight: 400;
  height: 80vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
}

.popup {
  display: none;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -20%);
  background-color: #180161;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  width: 80%;
  max-width: 400px;
}

.popup.show {
  display: block;
  transform: translate(-50%, -20%) scale(1);
  opacity: 1;
}

.popup a {
  display: block;
  margin: 15px 0;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.popup-overlay.show {
  display: block;
  opacity: 1;
}

@media (max-width: 1400px) {
  .r-side {
    display: none;
  }

  .hamburger {
    display: flex;
    padding: 7vw;
  }
}
/* button of first page mid */
#get-started {
  position: absolute;
  top: 53vh;
  left: 13vw;
  padding: 1vw 3vw;
  border: none;
  border-radius: 10px;
  background-color: rgb(0, 102, 255);
  color: white;
  font-size: .8vw;
}

#get-started:hover {
  background-color: #F68712;
  color: white;
  transition: .5s all ease-in-out;
}

/* page2 starts here */
.page-2 {
  background-color: #180161 ;
  height: 15vh;
  width: 100vw;
  display: flex;
  align-items: center;
}

/* moving text in page2 */
.moving-text {
  overflow-x: auto;
  white-space: nowrap;
}

.moving-text::-webkit-scrollbar {
  display: none;
}

.con {
  white-space: nowrap;
  display: inline-block;
  animation: move;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.moving-text h1 {
  font-size: 4vw;
  display: inline-block;
  color: white;
}

.gola {
  height: 1vw;
  width: 1vw;
  display: inline-block;
  margin: 1vw 1vw;
  background-color: #CEAB5A;
  border-radius: 50%;
}

@keyframes move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/*page-3 starts here  */
.page-3 {
  background:  white;

  height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* page3 core past headline css starts here */
.core {
  height: 12vh;
  width: 100vw;
  display: flex;
  align-items: center;
  color: #180161;
  position: relative;
}

.core p {
  font-size: 3.3vw;
  position: absolute;
  left: 13vw;
  font-weight: 500;
  bottom: 0;
}

/* the threee images of the page3  */
.the-three-images {
  height: 70vh;
  width: 80vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.image1 {
  height: 60vh;
  width: 26vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  
}

.image1 img {
  height: 60vh;
  width: 23vw;
  object-fit: cover;
  position: absolute;
  top: 0;
  border-radius: 20px;
  z-index: 1;
  box-shadow: 10px 10px 15px 5px rgba(0, 0, 0, 0.3);
}

.img-txt {
  z-index: 9;
  color: white;
  background-color: rgba(0, 0, 0, 0.445);
  position: absolute;
  bottom: 0;
  height: 15vh;
  width: 23vw;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 2vw 2vw;
  font-size: 0.7rem;
}

.img-txt p {
  font-weight: 200;
}

/* page4 starts here */
.page-4 {
  height: 100vh;
  width: 100vw;
  background:  #180161;
display: flex;
align-items: center;
justify-content: center;
}
/* left side starthere */
.left {
  height: 100vh;
  width: 50vw;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 7vw;
}
.left img{
  height: 80vh;
  width: 40vw;
  object-fit: cover;
  border-radius: 30px;
}
/* the rightside starts here */
.right {
  height: max-content;
  width: 40vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  color: white;
  padding: 15vw 0vw;
  /* padding-right: 13vw; */
  gap: 2vw;
}
.r-txt-1{
  font-size: 2vw;
}
.r-txt-2{
  font-weight: 200;
  font-size: 1vw;
}
.r-txt-3{
  font-weight: 200;
  font-size: 1vw;
}
.right button{
  padding: 1vw 3vw;
  background-color: rgb(0, 102, 255);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: .8vw;
}
.right button:hover {
  background-color: #F68712;
  color: white;
  transition: .5s all ease-in-out;
}
/* page5 starts here */
.page-5{
  height: 95vh;
  width: 100vw;
  background:  #180161;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.glimps{
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3vw;
  color: white;
  font-size: 3.2vw;
  font-weight: 500;
}

.glim-container{
  width: 100vw;
  height: 80vh;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1vw;
}
.glim-card{
  height: 35vh;
  width: 25vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glim-card img{
  height: 27vh;
  width: 22vw;
  object-fit: cover;
  border-radius: 0.7vw;
}
/* page-6 starts here */
.page-6 {
  height: 100vh;
  width: 100vw;
  background-color: rgb(0, 0, 34);
  display: flex;
  align-items: center;
  position: relative;
}
.p-left{
  height: 100%;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: white;
  padding: 15vh 13vw;
  position: absolute;
  top: 0;
  left: 0;
}
.reach{
  width: 100%;
  font-size: 1vw;
}
.this-form{
  width: 100%;
  font-weight: 200;
  font-size: .9vw;
}
.p-right{
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
}


/* footer */
.blackbar{
  height: 5vh;
  width: 100vw;
  background-color: black;
  position: absolute;
  bottom: 0;
}

/* for ipad */
@media (max-width:1400px) {
  .navbar{
    height: 8vh;
  }
  .l-side img{
    height: 5vh;
  }
  .l-side{
    height: 5vh;
  }
  .r-side{
    height:5vh;
    width: max-content;
    padding-right: 2vw;
  }
  .r-side button {
    padding: 2vw 6vw;
    font-size: 2.5vw;
}
  .page-1 {
    width: 100vw;
    position: relative;
    background-color: rgb(5, 5, 75);
}
.background img {
  height: 40vh;
}
.txt{
  top: 17vh;
  left: 23vw;
  font-size: 5vw;
}
.txt-2{
  top: 22vh;
  left: 0vw;
  font-size: 4vw;
  text-align: center;
}
#get-started {
  position: absolute;
  top: 30vh;
  left: 30vw;
  padding: 4vw 11vw;
  border: none;
  border-radius: 10px;
  background-color: rgb(0, 102, 255);
  color: white;
  font-size: 3vw;
}
.page-2{
  height: 10vh;
}
.page-3{
  height: max-content;
  display: block;
}

.core{
  height: 7vh;
}
.core p{
  font-size: 6vw;
}
.the-three-images{
  flex-wrap: wrap;
  margin-top: 2.5vh;
  width: 100vw;
  height: max-content;
  display: flex;
  justify-content: center;
  padding-bottom: 3vh;
}
.image1{
  width: 80vw;
  height: 40vh;
  margin: 2vw 2vw;
}
.image1 img{
  width: 80vw;
  height: 40vh;
}
.img-txt{
  width: 80vw;
  font-size: 2.5vw;
  padding: 3vw 3vw;
}
/* page4 starts here */
.page-4 {
  height: max-content;
  width: 100vw;
  background-color: rgb(0, 0, 34);
  position: relative;
  display: flex;
  flex-wrap: wrap; 
  padding: 5vw 0vw;

}
/* left side starthere */
.left {
  height: 40vh;
  width: 100vw;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.left img{
  height: 40vh;
  width: 80vw;
  object-fit: cover;
  border-radius: 30px;
}
/* the rightside starts here */
.right {
  height: max-content;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  color: white;
  padding: 5vw 5vw;
  bottom: 2vh;
}
.r-txt-1{
  font-size: 3vw;
}
.r-txt-2{
  font-weight: 200;
  font-size: 2.5vw;
}
.r-txt-3{
  font-weight: 200;
  font-size: 2.5vw;
}
.page-5{
  height: 45vh;
}
.glimps{
  font-size: 5vw;
}
.swiper {
  width: 90vw;
  height: 30vh;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 95%;
  height: 80%;
  object-fit: cover;
  border-radius: 10px;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}


.page-6{
  height: 70vh;
  width: 100vw;
  background-color: rgb(0, 0, 34);
  display: flex;
  position: relative;
  flex-wrap: wrap;
}
.p-left{
  height: 20vh;
  position: absolute;
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
  color: white;
  padding:0;
  top: 0;
  left: 0;
  padding: 5vw 5vw;
}
.reach{
  width: 100%;
  font-size: 3vw;
}
.this-form{
  width: 100%;
  font-weight: 200;
  font-size: 4vw;
}
.p-right{
  height: 50vh;
  width: 100vw;
  position: absolute;
  bottom: 0vw;
  top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* form css starts here */
.first-1
{display: flex;
align-items: center;
justify-content: center;
right: 0;
top: 10vh;
position: absolute;
gap: 3vw;
flex-wrap: wrap;
}
.first-1 input{
  background-color: white;
  outline: none;
  border: none;
  height: 5vh;
  width: 80vw;
  border-radius: 5px;
  color: black;
    padding: 1vw 1vw;
  color: black;
  font-size: 3vw;
}
.first-2{
  display: flex;
  width: 100vw;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0vw;
}
.first-2 textarea{
  background-color: white;
  outline: none;
  border: none;
  height: 15vh;
  width: 80vw;
  border-radius: 5px;
  color: black;
  resize: none;
  padding: 1vw 1vw;
  color: black;
  font-size: 3vw;
}

.p-right button{
  padding: 2vw 15vw;
  background-color: rgb(0, 102, 255);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 4vw;
  right: 28vw;
  bottom: 0vh;
}
.p-right button:hover {
  background-color: #F68712;
  color: white;
  transition: .5s all ease-in-out;
}

}
.form-container {
  width: 40vw;
  margin: 100px auto;
  background-color: transparent;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: white;
}

h1 {
  text-align: center;
  
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-;
}
form button {
background-color: #28a745;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
padding: 1vw;
}
form button:hover {
  background-color: #218838;
}

/* page 7  */
.page-7{
  height: max-content;
  width: 100vw;
  background:  #180161;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.pg7txt{
  height: 5vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3vw;
  padding: 5vw;
}
.page-7main{
  height: max-content;
  width: 80vw;
}
.insta{
  height: 50vh;
  width: 80vw;
  display: flex;
  color: white;
}
.instaleft{
  height: 50vh;
  width: 40vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.instaright{
  height: 50vh;
  width: 40vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.instaright img{
  height: 40vh;
  object-fit: cover;
}
.instatop{
  height: 25vh;
  width: 40vw;
  display: flex;
  align-items: end;
  justify-content: start;
  font-size: 2vw;
}
.instatop img{
  height: 6vh;
  margin: 1.7vw;
}
.instabottom{
  height: 25vh;
  width: 40vw;
  display: flex;
  align-items: start;
  justify-content: start;
  font-size: 1vw;
  flex-wrap: wrap;
  padding: 1.5vw;
}


/* Button Style */
.button {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background-size: 400% 400%;
  color: white;
  border: none;
  padding: 0.7vw 1.7vw;
  font-size: 1vw;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  animation: gradientAnimation 3s ease infinite;
  border-radius: 0.5vw;
}

/* Hover Effect with Scale Up */
.button:hover {
  transform: scale(1.05);
}

/* Gradient Animation */
@keyframes gradientAnimation {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}



@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: running;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 10vh;
  margin: 0 40px;
}

.our-happy-clients{
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10vh;
}
.page-8{
  background-color: white;
}





:root {
  --primary-color: white;
  --secondary-color: #1a2c50;
  --text-dark: #333333;
  --text-light: #767268;
  --extra-light: #ffffff;
}

.section__container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  text-align: center;
  color: white;
}

.header {
  margin-bottom: 2rem;
}

.header p {
  letter-spacing: 2px;
  font-size: 1rem;
  font-weight: 500;
}

.header h1 {
  font-size: 2rem;
  font-weight: 900;
}

.testimonials__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  padding: 2rem;
  display: grid;
  gap: 1rem;
  background-color: var(--extra-light);
  border-radius: 5px;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: #1a2c50;
}

.card i {
  font-size: 2.5rem;
  color: gold;
}

.card p {
  font-size: 1rem;
  font-weight: 500;
}

.card hr {
  width: 40px;
  margin: auto;
  color: var(--text-light);
}

.card img {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 100%;
  border: 1px solid var(--primary-color);
  object-fit: cover;
}

.card .name {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
  transition: 0.3s;
}

.card .name:hover {
  color: var(--primary-color);
}

.footer h4 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.footer p {
  max-width: 450px;
  margin: auto;
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin-bottom: 2rem;
}

.footer button {
  padding: 1rem 2rem;
  outline: none;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a2c50;
  background-color: var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
}


.page-9{
  background-color: #180161 ;
}

/* page10 */
.page-10{
  background-color: white;
}
.client-wrap{
  width: 100vw;
  height: auto;
  text-align: center;
}
.client-wrap h1 {
  font-size: 3vw;
  padding-top: 5vh;
  color: #180161;
}

.client-wrap hr{
  width: 15%;
  height: 5px;
  border: none;
  background:#180161 ;
  margin:auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
.client-in{
  width: 100%;
  height: auto;
}
.client-in ul{
  padding: 0;
  margin: 0;
}

.client-in ul li {
  list-style: none;
  display: inline-block;
  width: 16vh;
  height: 16vh;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin: 40px;
  box-shadow: 0px 0px 0px -7px #555;
  transition: .3s;
}
.client-in ul li img{
  height: 100%;
  width: 100%;
}
.client-in ul li img:nth-child(1){
  transform: translateY(0);
  transition: .3s;
}
.client-in ul li img:nth-child(2){
  transform: translateY(0);
  transition: .3s;
}
/* hover */
.client-in ul li:hover img:nth-child(1){
  transform: translateY(-100%);
  transition: .3s;
}
.client-in ul li:hover img:nth-child(2){
  transform: translateY(-104%);
  transition: .3s;
}

  @media (max-width:1400px){
    .page-7{
      height: max-content;
      width: 100vw;
      background:  #180161;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }
    .pg7txt {
      margin-top: 0vw;
      height: 5vh;
      width: 100vw;
      display: flex
;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 5vw;
      padding: 0vw 0vw;
      margin: 0vw 0vw;
      margin-top: 8vw;
      font-weight: 600;
  }
    .page-7main{
      height: max-content;
      width: 100%;
    }
    .insta {
      height: max-content;
      width: 100%;
      display: flex
;
      color: white;
      flex-wrap: wrap;
      padding: 4vw 0vw;
  }
  .instaleft {
    height: max-content;
    width: 100%;
    display: flex
;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 3vw 0vw;
}
    .instaright{
      height: max-content;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .instaright img{
      height: 25vh;
      object-fit: cover;
    }
    .instatop{
      height: max-content;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2vw;
    }
    .instatop img {
      height: 2.5vh;
      margin: 1.7vw;
    }
    .instabottom {
      height: max-content;
      width: 74%;
      display: flex
    ;
      align-items: center;
      justify-content: center;
      font-size: 3vw;
      flex-wrap: wrap;
      padding: 1.5vw;
      text-align: center;
    }
    .button {
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
      background-size: 400% 400%;
      color: white;
      border: none;
      padding: 1.7vw 2.7vw;
      font-size: 3vw;
      cursor: pointer;
      transition: transform 0.3s ease-in-out;
      animation: gradientAnimation 3s ease infinite;
      border-radius: 0.5vw;
      margin: 2vw;
  }    
  .page-10{
    background-color: white;
  }
  .client-wrap{
    width: 100vw;
    height: auto;
    text-align: center;
  }
  .client-wrap h1 {
    font-size: 7vw;
    padding-top: 5vh;
    color: #180161;
  }
  
  .client-wrap hr{
    width: 15%;
    height: 5px;
    border: none;
    background:#180161 ;
    margin:auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .client-in{
    width: 100%;
    height: auto;
  }
  .client-in ul{
    padding: 0;
    margin: 0;
  }
  
  .client-in ul li {
    list-style: none;
    display: inline-block;
    width: 10vh;
    height: 10vh;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 15px;
    box-shadow: 0px 0px 0px -7px #555;
    transition: .3s;
  }
  .client-in ul li img{
    height: 100%;
    width: 100%;
  }
  .client-in ul li img:nth-child(1){
    transform: translateY(0);
    transition: .3s;
  }
  .client-in ul li img:nth-child(2){
    transform: translateY(0);
    transition: .3s;
  }
  /* hover */
  .client-in ul li:hover img:nth-child(1){
    transform: translateY(-100%);
    transition: .3s;
  }
  .client-in ul li:hover img:nth-child(2){
    transform: translateY(-104%);
    transition: .3s;
  }
  .this-form {
    width: 100%;
    font-weight: 200;
    font-size: 3vw;
    text-align: center;
}
.form-container {
  width: 90vw;
  margin: 100px auto;
  background-color: transparent;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: white;
}
.p-right {
  height: max-content;
  width: 100vw;
  position: relative;
  bottom: 0vw;
  top: auto;
  display: flex
;
  align-items: center;
  justify-content: center;
}
.p-left {
  height: max-content;
  position: relative;
  width: 100vw;
  display: flex
;
  flex-wrap: wrap;
  color: white;
  padding: 0;
  top: 0;
  left: 0;
  padding: 5vw 5vw;
}
.page-6 {
  height: max-content;
  width: 100vw;
  background-color: rgb(0, 0, 34);
  display: flex
;
  position: relative;
  flex-wrap: wrap;
}
.p-right button {
  padding: 2vw 15vw;
  background-color: rgb(0, 102, 255);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 4vw;
  right: 19vw;
  bottom: 0vh;
}
.form-container {
  width: 90vw;
  margin: 0px 0px;
  background-color: transparent;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 3. 5vw;
  height: max-content ;
} 
  }

  /* for tablets */
  @media (max-width:1024px){
    .background {
      position: relative;
      width: 100%;
      height: 27vh;
      overflow: hidden;
  }
  
  }
  
 /* Footer */
 footer {
  font-size: 0.9rem;
  color: #777;
}

footer a {
  text-decoration: none;
  color: #e74c3c;
}

footer a:hover {
  text-decoration: underline;
}

/* Footer Styling */
.footer {
  background-color: black;
  color: white;
  padding: 20px 10px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* Make items stack on smaller screens */
  justify-content: space-between;
  gap: 20px;
}

.footer-section {
  flex: 1; /* Equal width for all sections */
  min-width: 250px; /* Ensures each section has a minimum size */
}

.footer-section h4 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column; /* Stack sections vertically */
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 20px;
  }
}
