*{
    margin: 0;
    padding: 0;
    font-family:'Times New Roman', Times, serif;
    font-size: 18px;
    box-sizing: border-box;
}
.logo img{
   height: 55px;
   width: 300px;
   margin: 10px 20px;
}
header{
    height: 70px;
    width: 100%;
    background-color: rgb(247, 243, 243);
     position:sticky;
    top:0px;

}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 .menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  margin-bottom: 20px;
}
ul li a{
    text-decoration: none;
    display: flex;
    color: black;
    margin: 10px 40px;
    text-align:center;
}
nav ul li a:hover{
   color:rgb(9, 9, 46);
   font-size: 1.1rem;
}
nav ul li a.active {
  color:rgb(88, 96, 206);
}
.Items{
    margin-right: 30%;
    
}
nav ul{
    display: flex;
    list-style-type:none;
    justify-content: space-evenly;
}
.about-hero{
    height: 500px;
    background: linear-gradient(rgba(39, 46, 166, 0.3), rgba(28, 44, 160, 0.5)),
    url("aboutimage.jpg");
    background-position:center;
    background-size: cover;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-hero h1{
color: white;
font-size: 45px;
text-align: center;
}
.about-sec{
    height: auto;
    width: 100%;
    display: flex;
    justify-content:space-evenly;
    align-items: center;
}
.about-content{
    width: 50%;
}
.about-content h2{
font-size: 25px;
margin-top: 20px;
}

.about-content p{
    line-height: 30px;
}
.about-image img{
    height: 400px;
    width: 450px;
    margin-top: 30px;
}
.btns{
    display: flex;
    justify-content: center;
}
.btns button{
    background-color: rgb(9, 9,46);
    padding: 8px 12px;
    border: none;
    margin: 15px 10px;
}
.btns button:hover{
    color: rgb(202, 196, 196);
    background-color: rgb(19, 19, 60);
}
.btns button a{
    color: white;
    text-decoration: none;
}
.Years{
    background-color: rgb(9,9,46);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    cursor: default;
    padding: 20px;
     box-shadow: 1px 1px 20px gray; 
     margin-bottom: 20px;
     color: white;
}
.Years h1{
    font-size: 2.5rem;
    color: rgb(255, 255, 255);
    text-align: center;
    padding-right: 30px;

}
.customers{
    height: auto;
    width: 200px;
    display: block;
    justify-content: center;
    align-items: center;
}
footer{
    height: auto;
    width: 100%;
    background-color: rgb(247, 243, 243);
}
.footer-sec{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-sec img{
  width: 280px;
  height: 100px;
  margin-bottom: 50px;
  margin-left: 30px;
}
.footer-sec li{
    list-style: none;
    margin: 10px;
}
.footer-sec h3{
    margin: 10px;
    color:black;
    text-align: center;
}
.footer-sec li a{
   text-decoration: none;
   margin-left:30px ;
   color:black;
}

.address p{
    text-align: center;
    display: inline;
    color:black;
}
.address{
    margin-bottom: 30px;
    height: auto;
    width: 300px;
}
.address i{
    color:black;
    margin-top: 15px;
}
.address h3{
  padding-top: 30px;
}
.footer-project{
    display: flex;
    flex-direction: column;
}
.footer-project a{
    /* margin-top: 10px; */
    color:black;
    margin-left:25px ;
    line-height: 28px;
    text-decoration: none;
}
.copyright{
    text-align: center;
    font-size:1rem ;
    color:black;
}
/* 📱 Mobile Responsive (max-width: 480px) */
@media (max-width: 480px) {

  /* Navbar */
  nav {
    flex-wrap: wrap;
    padding: 10px;
  }
  .logo img {
    width: 180px;
    height: auto;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
    color: black;
  }
  .Items {
    display: none;
    width: 100%;
    background: white;
    margin: 0;
    padding: 10px 0;
    text-align: center;
  }
  .Items ul {
    flex-direction: column;
  }
  .Items ul li a {
    margin: 10px 0;
  }
  .Items.active {
  display: block !important;
}


  /* Hero */
  .about-hero {
    height: 300px;
    padding: 20px;
  }
  .about-hero h1 {
    font-size: 28px;
  }

  /* About Section */
  .about-sec {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }
  .about-content {
    width: 100%;
  }
  .about-content h2 {
    font-size: 19px;
    text-align:center;
  }
  .about-content p {
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
  }
  .about-image img {
    width: 90%;
    height: auto;
    margin: 20px 0;
  }
  .btns {
    flex-direction: column;
  }
  .btns button {
    width: 100%;
    margin: 8px 0;
  }

  s
  .customers {
    width: 100%;
  }
  /* Footer */
  .footer-sec {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .footer-sec img {
    margin: 0 auto 20px auto;
    width: 200px;
    height: auto;
  }
  .footer-project, .footer-list, .address {
    margin: 15px 0;
  }
  .footer-project a, .footer-sec li a {
    margin: 5px 0;
    display: block;
  }
  .address {
    width: 100%;
  }
}



.fun-stats {
  padding: 60px 20px;
  background: #e2e7f4;
  /* background: #fff; */
  text-align: center;
}
.fun-stats h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: rgb(9,9,46);
}
.stats-grid {
  display: flex;
  justify-content:space-evenly;
  gap: 40px;
  flex-wrap: wrap;
}
.stat h3 {
  font-size: 40px;
  color: rgb(9,9,46);
  margin-bottom: 10px;
}
.stat p {
  font-size: 16px;
  color: #555;
}
  

.team-section {
  padding: 60px 20px;
  background-color: rgb(255, 255, 255);
  text-align: center;
}
.team-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: rgb(9,9,46);
}
.team-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.team-card {
  width: 220px;
  height: 300px;
  perspective: 1000px;
}
.card-front, .card-back {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: absolute;
  backface-visibility: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.6s;
}
.card-front {
  background: rgb(9,9,46);
  display: flex;
  color: wheat;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.card-front img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.card-back {
  background: rgb(9,9,46);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.team-card:hover .card-front {
  transform: rotateY(180deg);
}
.team-card:hover .card-back {
  transform: rotateY(0deg);
}
.pro-1{
    height:auto;
    width: 90%;
    background-color: rgb(9, 9, 46);
    margin:30px;
    display:flex; 
    cursor: default;   
}
.pro-1 h3{
    color: white;
    display: inline;
    width: 400px;

}
.pro-1 p{
    color: white;
    font-size: 18px;
    padding: 20px;
    display: block;
    align-items: center;
}
.choose-heading{
   color: rgb(0, 0, 0);
    text-align: center;
    font-size: 35px;
    margin-top: 20px;
}
.why-us{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-us h1{
    color: white;
    text-align:start;
    padding-top: 20px;
    font-size: 25px;
}
.why-us img{
 height: 150px;
 width: 150px;
 margin: 20px;
}


/* 📱 Mobile Responsive */
@media (max-width: 480px) {
  .mv-container, .team-container {
    flex-direction: column;
    align-items: center;
  }
  .mv-box, .team-member {
    width: 90%;
  }
  .why-us h1 {
    text-align: center;
    margin: 10px 0;
  }

  .pro-1 {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }
  
   .pro-1 img{
    height: 100px;
    width: 100px;
    margin: 10px;
   }
    .pro-1 h1{
        font-size: 25px;
    }
    .pro-1 p{
        font-size: 16px;
        padding: 5px;
        
    }
}
@media (min-width: 481px) and (max-width: 1024px) {
  /* Navbar */
  
   .menu-toggle {
    display: block;
  }
 .menu-toggle i{
    color: black;
    margin-right: 20px;
     
   }
  .Items {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 220px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  img{
    height: 300px;
    width: 320px;
    margin: 0;
    padding: 0;
  }

  .Items ul {
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
  }

  .Items ul li {
    margin: 0;
  }

  .Items.active {
    display: flex; /* Show menu when active */
  }
  .logo img {
    width: 220px;
    height: auto;
  }
   

  /* Hero */
  .about-hero {
    height: 350px;
  }
  .about-hero h1 {
    font-size: 34px;
  }

  /* About Section */
  .about-sec {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }
  .about-content {
    width: 100%;
  }
  .about-content h2 {
    font-size: 22px;
  }
  .about-content p {
    font-size: 17px;
    line-height: 26px;
  }
  .about-image img {
    width: 80%;
    height: auto;
    margin: 20px auto;
    display: block;
  }

  .btns {
    flex-direction: column;
  }
  .btns button {
    width: 100%;
    margin: 8px 0;
  }

  /* Why Us Section */
  .pro-1 {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 15px;
  }
  .pro-1 img {
    height: 120px;
    width: 120px;
    margin: 10px;
  }
  .pro-1 h1 {
    font-size: 22px;
  }
  .pro-1 p {
    font-size: 16px;
  }
  .why-us h1{
    text-align: center;
  }

  /* Fun Stats */
  .stats-grid {
    flex-direction: column;
    gap: 20px;
  }

  /* Footer */
  .footer-sec {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .footer-sec img {
    width: 220px;
    height: auto;
    margin-bottom: 20px;
  }
  .footer-project, .footer-list, .address {
    margin: 15px 0;
  }
  .footer-project a, .footer-sec li a {
    display: block;
    margin: 8px 0;
  }
}
