*{
    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;
}
.ser-sec{
    height: 500px;
    width: 100%;
       background: linear-gradient(rgba(39, 46, 166, 0.3), rgba(28, 44, 160, 0.5)),
                url("services.png");
    background-size: cover;
    background-position:center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ser-sec h1{
    font-size: 35px;
    color: white;
}
.sec-3{
    width:auto;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sec-3 h1{
    font-size: 2rem;
    text-align: center;
    color: black;
    margin-top: 20px;
    cursor: default;
}
.projects{ 
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));   
    justify-items:center;   
    align-items:center; 
    column-gap: 5px; 
}
/* @keyframes fade-up{
    0%{
        opacity: 0;
        transform: translatex(30px) scale(0.9);
    }
    100%{
        opacity: 1;
        transform: translatex(0px) scale(1);
    }
} */
.pro-box{
    height: auto;
    width: 500px;
  box-shadow: 1px 1px 20px gray; 
  margin-top: 20px;
  cursor: pointer;
  text-align: center;
 
  /* margin-left: 100px; */
}
.pro-box i{
    color: rgb(9, 9, 46);
    font-size: 3rem;
    /* margin-left: 200px; */
    margin-top: 20px;
    
}
.pro-box h3{
    text-align: center;
    padding: 5px;
    /* font-size: 20px; */
    color: black;
}
.pro-box button{
    padding: 10px 15px;
    background-color: rgb(9,9,46);
    color: white;
    text-align: center;
    cursor: pointer;
    border: none;
    padding-top: 10px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.pro-box:hover button{
    background-color: rgb(255, 255, 255);
    color: black;
}
.pro-box button a{
    color: white;
}
.pro-box:hover button a{
    color: black;
}

.pro-box p{
    padding: 5px;
    text-align:center;
    font-size: 16px;
    color: black;
}
.pro-box:hover
{
    background-color: rgb(9, 9, 46);
    color: rgb(255, 255, 255);
}
.pro-box:hover i{
  color: #fff;
}
.pro-box  a{
    color: rgb(0, 0, 0);
    text-decoration: none;
}
.pro-box:hover p{
    color: rgb(255, 255, 255);
}
.pro-box:hover h3{
    color: rgb(255, 255, 255);
}
.ser-contact{
    height: 200px;
    width: 100%;
    background-color: rgb(9,9,46);
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ser-con{
    height: 100px;
    width: 60%;
    background-color: white;
    display: flex;
    justify-content:space-evenly;
}
.ser-con p{
    width: 100%;
    text-align: center;
    padding: 10px;
}
.ser-con h1{
    text-align: center;
    font-size: 20px;
    margin-top: 13px;
}
.ser-btn{
    display: flex;
    justify-content:center;
    align-items: center;
    width: 50%;
}
.ser-btn a{
    background-color:rgb(9,9,46);
    color: white;
    border: none;
    padding: 8px 12px;
    margin-right: 5px;
    text-decoration: none;
}
.ser-btn a:hover{
    background-color: rgb(42, 42, 124);
    
}
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 h3{
  padding-top: 30px;
}

.address p{
    text-align: center;
    display: inline;
    color:black;
}
.address{
    margin-bottom: 30px;
    height: auto;
    width: 300px;
}
.address i{
    color:black;
    margin-top: 15px;
}
.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;
  }
  .Items.active {
  display: block !important;
}

  .Items {
    display: none;
    width: 100%;
    background: white;
    margin: 0;
    padding: 10px 0;
    text-align:end;
    margin-left: 50px;
  }
  .Items ul {
    flex-direction: column;
  }
  .Items ul li a {
    margin: 10px 0;
    text-align: center;
  }

  /* Hero Section */
  .ser-sec {
    height: 250px;
    padding: 10px;
    text-align: center;
  }
  .ser-sec h1 {
    font-size: 22px;
    padding: 0 10px;
  }

  /* Our Services Section */
  .projects {
    grid-template-columns: 1fr; /* stack boxes */
    gap: 10px;
    padding: 10px;
  }
  .pro-box {
    width: 100%; /* full width */
    margin: 10px 0;
  }
  .pro-box i {
    font-size: 2.2rem;
  }
  .pro-box h3 {
    font-size: 18px;
  }
  .pro-box p {
    font-size: 14px;
    padding: 8px;
    line-height: 22px;
  }
  .pro-box button {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    margin-top: 10px;
  }

  /* Contact Section */
  .ser-contact {
    height: auto;
    padding: 20px 10px;
  }
  .ser-con {
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 10px;
    text-align: center;
  }
  .ser-con h1 {
    font-size: 18px;
    margin: 10px 0;
  }
  .ser-con p {
    font-size: 14px;
  }
  .ser-btn {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }
  .ser-btn a {
    width: 100%;
    margin: 5px 0;
    text-align: center;
  }

  /* 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%;
  }
}
@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:50px;
    padding: 0;
    margin: 0;
   
  }
  img{
    height: 300px;
    width: 320px;
    margin: 0;
    padding: 0;
  }
  

  /* Hero Section */
  .ser-sec {
    height: 350px;
    padding: 15px;
    text-align: center;
  }
  .ser-sec h1 {
    font-size: 28px;
    padding: 0 10px;
  }

  /* Our Services Section */
  .projects {
    grid-template-columns: 1fr; /* single column */
    gap: 15px;
    padding: 15px;
  }
  .pro-box {
    width: 90%; /* not full width, some margin */
    margin: 0 auto;
  }
  .pro-box i {
    font-size: 2.5rem;
  }
  .pro-box h3 {
    font-size: 20px;
  }
  .pro-box p {
    font-size: 15px;
    line-height: 24px;
    padding: 10px;
  }
  .pro-box button {
    width:150px;
    padding: 10px;
    font-size: 15px;
    margin-top: 10px;
  }

  /* Contact Section */
  .ser-contact {
    height: auto;
    padding: 20px;
  }
  .ser-con {
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 15px;
    text-align: center;
  }
  .ser-con h1 {
    font-size: 20px;
  }
  .ser-con p {
    font-size: 15px;
  }
  .ser-btn {
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
  }
  
  .ser-btn a {
    width: 150px;
    margin: 8px 0;
  }

  /* Footer */
  .footer-sec {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  .footer-sec img {
    width: 220px;
    height: auto;
    margin: 0 auto 20px auto;
  }
  .footer-project, .footer-list, .address {
    margin: 15px 0;
  }
  .footer-project a, .footer-sec li a {
    display: block;
    margin: 6px 0;
  }
  .address {
    width: 100%;
  }
}
