/* -----Font-Link-Here----- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
/* -----Default-Css----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
.container {
  width: 85%;
  margin: 0 auto;
}
body {
  padding-top: 75px;
  /* overflow: hidden; */
}
/* -----Root-Starts-Here----- */
:root {
  --Background-Color: #F5F5F5;
  --Primary-Color: #0056B3;
  --Secondary-Color: #58A6FF;
  --Tertiary-Color: #003366;
  --Text-Color: #333333;
  --Second-Text-color: #fff;
}
/* -----Root-Ends-Here----- */

/* -----Header-Starts-Here----- */
.header {
  width: 100%;
  height: auto;
  background: var(--Background-Color);
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  color: var(--Text-color);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}
.navbar ul {
  display: flex;
  gap: 25px;
  align-items: center;
}
.navbar ul li a {
  color: var(--Text-color);
  font-size: 1rem;
  font-weight: 500;
}
.navbar ul li a:hover {
  color: var(--Secondary-Color);
  transition: 0.5s;
}
.navbar ul .active a {
  color: var(--Secondary-Color);
}
.navbar .menu i {
  font-size: 1.5rem;
  color: var(--Secondary-Color);
  cursor: pointer;
  display: none;
}
#openMenu{
  display: none;
}

/* -----Header-Ends-Here----- */

/* -----Main-Starts-Here----- */
.main {
  width: 100%;
  height: 90vh;
  position: relative;

}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.swiper-slide-content {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiper-slide-title {
  width: 900px;
  height: auto;
  padding: 20px;
}
.swiper-slide-title h2 {
  font-size: 40px;
  width: 100%;
  color: var(--Second-Text-color);
  margin-bottom: 10px;
  line-height: 40px;
}
.swiper-slide-title p {
  font-size: 16px;
  color: var(--Second-Text-color);
  margin-bottom: 20px;
}
.slider-btn {
  padding: 10px 20px;
  background: var(--Background-Color);
  color: var(--Text-Color);
  font-size: 16px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}
.slider-btn:hover{
  background: var(--Primary-Color);
  color: var(--Second-Text-color);
  transition: 0.5s;
}
.swiper-button-next,
.swiper-button-prev{
  color: var(--Background-Color) !important;
}
/* -----Main-Ends-Here----- */

/* -----Setting-Starts-Here----- */
.S-Container{
  width: 100%;
  height: auto;
  background: var(--Background-Color);
  padding: 50px 0;
}
.S-Flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.S-Text{
  width: 50%;
}
.S-Image{
  width: 50%;
  padding: 20px;
  position: relative;
}
.S-Image img{
  width: 100%;
}
.S-Text h6{
  font-size: 16px;
  color: var(--Primary-Color);
  margin-bottom: 10px;
}
.S-Text h2{
  font-size: 40px;
  color: var(--Tertiary-Color);
  margin-bottom: 20px;
}
.S-Text p{
  font-size: 16px;
  color: var(--Text-Color);
  margin-bottom: 20px;
  line-height: 23px;
}
.box{
   display: block;
   padding-top: 20px;
}
.box-text {
  display: flex;
  gap: 20px;
  padding-left: 20px;
}
.box-text i{
  font-size: 16px;
  color: var(--Primary-Color);
}
.box-text p{
  font-size: 16px;
  color: var(--Text-color);
}
.box-1{
  position: absolute;
  width: 600px;
  height: 200px;
  top: 50%;
  right: 30%;
  z-index: 111;
  display: flex;
  align-items: center;
  padding: 20px;
  justify-content: space-around;
}
.counter1{
  width: 250px;
  height: 150px;
  background: var(--Primary-Color);
  padding: 20px;
}
.counter2{
  width: 250px;
  height: 150px;
  background: var(--Secondary-Color);
  padding: 20px;
}
.counter1 h2, .counter2 h2{
  font-size: 50px;
  color: var(--Second-Text-color);
  text-align: center;
}
.counter1 p, .counter2 p{
  font-size: 16px;
  color: var(--Second-Text-color);
  text-align: center;
}
/* -----Setting-Ends-Here----- */

/* -----Our-Team-Starts-Here----- */
.our-team-Container{
  width: 100%;
  height: auto;
  background-color: var(--Background-Color);
  padding: 20px;
}
.our-team-grid{
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 30px;
}
.team-box{
  background-color: var(--Primary-Color);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}
.team-box h2{
  font-size: 40px;
  color: var(--Second-Text-color);
}
.team-box p{
  text-transform: uppercase;
  font-weight: 600;
  color: var(--Second-Text-color);
}
/* -----Our-Team-Ends-Here----- */

/* -----About-Starts-Here----- */
.about-container{
  width: 100%;
  height: auto;
  background: var(--Background-Color);
  padding: 50px 0;
}
.about-container h2{
  font-size: 40px;
  color: var(--Primary-Color);
  text-align: center;
  margin-bottom: 20px;
}
.about-container h2::after{
  content: "";
  width: 100px;
  height: 5px;
  background: var(--Primary-Color);
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  border-radius: 20px;
}
.about-box{
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.about-image, .about-contant{
  width: 50%;
  padding: 20px;
}
.about-image img{
  width: 100%;
}
.about-contant h3{
  font-size: 38px;
  color: var(--Tertiary-Color);
  margin-bottom: 20px;
}
.about-contant p{
  font-size: 16px;
  color: var(--Text-Color);
  line-height: 23px;
  margin-bottom: 20px;
}
.Vision h3 , .Mission h3{
  font-size: 38px;
  color: var(--Tertiary-Color);
  margin-bottom: 20px;
}
.Vision p{
  margin-bottom: 36px;
}
.btn {
  padding: 10px 20px;
  background: var(--Background-Color);
  color: var(--Tertiary-Color);
  font-size: 16px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--Tertiary-Color);
}
.btn:hover{
  background: var(--Tertiary-Color); 
  color: var(--Second-Text-color);
  transition: 0.5s;
  border: none;
}
/* -----About-Ends-Here----- */

/* -----Contact-Starts-Here----- */
.contact{
  width: 100%;
  height: auto;
  padding: 20px;
  background: var(--Background-Color);
}
.contact h2{
  text-align: center;
  font-size: 40px;
  color: var(--Primary-Color);
}
.contact h2::after{
  content: "";
  width: 100px;
  height: 5px;
  background: var(--Primary-Color);
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  border-radius: 20px;
}
.contact-container{
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.contact-content, .contact-Form{
  width: 50%;
  height: auto;
  background-color: #0056B3;
  border-radius: 10px;
  padding: 20px;
}
.c-text{
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px;
}
.c-text i{
  font-size: 30px;
  color: var(--Second-Text-color);
}
.c-text p{
  color: var(--Second-Text-color);
}
.form{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form input{
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
  background-color: var(--Secondary-Color);
  border-radius: 4px;
  color: var(--Second-Text-color);
}
.form input::placeholder{
  color: var(--Second-Text-color);
}
.form textarea{
  padding: 10px;
  background: var(--Secondary-Color);
  color: var(--Second-Text-color);
  outline: none;
  border: none;
  border-radius: 4px;
}
.form textarea::placeholder{
  color: var(--Second-Text-color);
  font-size: 16px;
}
.contact-Form button{
  border: none;
  outline: none;
  padding: 8px 24px;
  margin-top: 20px;
  border-radius:8px;
  background-color: transparent;
  border: 2px solid var(--Second-Text-color);
  cursor: pointer;
  font-weight: 500;
  font-style: 16px;
  color: var(--Second-Text-color);
}
.contact-Form button:hover{
  background-color: var(--Background-Color);
  color: var(--Primary-Color);
  transition: .5s;
}
/* -----Contact-Ends-Here----- */

/* -----Our-Clients-Starts-Here----- */
.our-clients{
  width: 100%;
  height: auto;
  background: var(--Tertiary-Color);
  padding: 60px 0;
  overflow: hidden;
  white-space: nowrap;
  overflow: hidden;
}
.our-clients:hover .clients-slide{
  animation-play-state: paused;
}
.clients-slide{
  display: inline-block;
  animation: 30s slide infinite linear;
  cursor: pointer;
}
.clients-slide img{
  height: 80px;
  padding: 0 40px;
  transition: .5s scale;
}
.clients-slide img:hover{
  scale: 1.1;
}
@keyframes slide{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-100%);
  }
}

/* -----Our-Clients-Ends-Here----- */

/* -----Our-Work-Starts-Here----- */
.our-work{
  width: 100%;
  height: auto;
  background: var(--Background-Color);
  padding: 20px;
}
.our-work h2{
  text-align: center;
  font-size: 40px;
  color: var(--Primary-Color);
}
.our-work h2::after{
  content: "";
  width: 100px;
  height: 5px;
  background: var(--Primary-Color);
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  border-radius: 20px;
}
.our-work-container img{
  width: 100%;
}

/* -----Our-Work-Ends-Here----- */

/* -----Footer-Starts-Here----- */
footer{
  width: 100%;
  height: auto;
  padding: 20px;
  background:var(--Background-Color);
}
.footere-container{
  border-top: 2px solid var(--Primary-Color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}
.footer-text{
  color: var(--Primary-Color);
}
.Footer-menu{
  display: flex;
  gap: 20px;
}
.Footer-menu a{
  color: var(--Primary-Color);
}
/* -----Footer-Ends-Here----- */

/* -----Responsive-Starts-Here----- */
/* Mobile styles */
@media (max-width: 600px) {
  .navbar ul {
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .navbar .menu i {
    display: block;
  }
  .swiper-slide-content{
    width: auto;
  }
  .swiper-slide-title h2{
    font-size: 20px;
  }
  .swiper-slide-title p{
    font-size: 14px;
  }
  .swiper-button-prev,.swiper-button-next{
    display: none !important;
  }
  .S-Flex{
    flex-direction: column;
  }
  .S-Text, .S-Image{
    width: 100%;
  }
  .our-team-grid{
    grid-template-columns: 1fr;
  }
  .about-box {
    flex-direction: column;
  }
  .about-image, .about-contant{
    width: 100%;
  }
  .about-contant h3{
    font-size: 24px;
  }
  .contact-container{
    flex-direction: column;
  }
  .contact-content, .contact-Form{
    width: 100%;
  }
  .box-1{
    display: none;
  }
  .footere-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .Footer-menu{
    display: flex;
    flex-direction: column;
  }
}

/* Tablet styles */
@media (min-width: 601px) and (max-width: 1024px) {
  .navbar ul {
    flex-direction: column;
    gap: 15px;
    display: none;
  }
  .navbar .menu i {
    display: block;
  }
  .S-Flex{
    flex-direction: column;
  }
  .S-Text, .S-Image{
    width: 100%;
  }
  .our-team-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .about-box {
    flex-direction: column;
  }
  .about-image, .about-contant{
    width: 100%;
  }
  .about-contant h3{
    font-size: 28px;
  }
  .contact-container{
    flex-direction: column;
  }
  .contact-content, .contact-Form{
    width: 100%;
  }
  .box-1{
    display: none;
  }
}

/* Desktop styles */
@media (min-width: 1025px) {
  .navbar ul {
    flex-direction: row;
    gap: 25px;
  }
  .navbar .menu i {
    display: none;
  }
  .S-Flex{
    flex-direction: row;
  }
  .S-Text, .S-Image{
    width: 50%;
  }
  .our-team-grid{
    grid-template-columns: repeat(5, 1fr);
  }
  .about-box {
    flex-direction: row;
  }
  .about-image, .about-contant{
    width: 50%;
  }
  .about-contant h3{
    font-size: 38px;
  }
  .contact-container{
    flex-direction: row;
  }
  .contact-content, .contact-Form{
    width: 50%;
  }
  .box-1{
    display: flex;
  }
}
/* -----Responsive-Ends-Here----- */


/* Navbar Responsive Styling */
@media (max-width:768px) {
  .menu {
    position: fixed;
    background: #fff;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 999;
    display: none;
}
#openMenu{
  display: block;
}
#closeMenu{
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: none;
}
}