*{
    margin: 0;
    padding: 0;
    font-family:'Times New Roman', Times, serif;
    font-size: 18px;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
     scroll-padding-top: 80px;
}
.logo img{
   height: 55px;
   width: 300px;
   margin: 10px 20px;
}
header{
    height: 70px;
    width: 100%;
    background-color: rgb(247, 243, 243);
     position:sticky;
    top:0px;
     z-index: 999; /* add this */
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 .menu-toggle {
  display: none;
  font-size: 1.8rem;
  /* margin-right: 20px; */
  cursor: pointer;
}
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;
}
.back-img{
    height: 550px;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
                url("bgi.png");
    background-position:center;
    background-size:cover;
    cursor:auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center; /* ensure consistent centering */
    padding: 20px; /* prevent text touching edges on smaller screens */
    box-sizing: border-box; /* consistent sizing across browsers */
}
.back-img h1,
.back-img h2,
.back-img p {
    margin: 10px 0; /* consistent vertical spacing */
    color: white;   /* ensure readability over dark background */
}

video{
    margin: 10px 0px 0px 0px;
    height: 600px;
    width: 100%;
}
.video h1{
    font-size:2rem ;
    text-align: center;
    cursor:default;
}
.button a{
  color: #172e7f;
}
.button a:hover{
 color: rgb(0, 0, 0);
}
.boxes{
    display: flex;
    width: 100%;
    height: auto;
    justify-content:space-evenly;
    align-items: center;
    margin-top: 50px;
    cursor:default;
}
.box{
    height:250px;
    width: 250px;
  box-shadow: 1px 1px 20px gray;
  margin-bottom: 20px;
}
.box:hover
{
    background-color: rgb(9, 9, 46);
    color: white;
}
.box:hover i {
  color: #fff;
}
.back-img h1{
    font-size: 3rem;
    color: white;
    text-align: center;
    cursor: default;
    width:70%;
}
.back-img p{
    color: white;
}
.back-img h2{
    text-align: center;
   color: white;
   padding: 10px;
   cursor:default;
}

 .button{
  display: flex;
  justify-content: center;
  align-items: center;
}
.button button ,a{
    padding: 5px 10px;
    margin: 10px;
    border: none;
    text-decoration: none;    
}
 
.box i{
    color: rgb(9, 9, 46);
    font-size: 3rem;
    margin-left: 80px;
    margin-top: 20px;
}
.box h3{
    text-align: center;
    padding: 15px;
    /* font-size: 20px; */
}
.box p{
    padding: 10px;
    text-align:center;
    font-size: 16px;
}
.vision-section{
    background-color:rgb(9,9,46);
    height:500px;
    width: 100%;
}
.vision-section h1{
color: white;
font-size: 30px;
text-align: start;
padding-left: 20px;
}
/* .vision-section h1{
    color: white;
    font-size: 30px;
    margin-left: 30px;
   padding-top: 30px;
} */
.vision-section img{
    height: 350px;
    width: 350px;
    border-radius: 50%;
    border: white;
    border-style: double;
    outline-offset: 10px;
    outline: 2px solid #ffffff;
}
.vision-sec{
    display: flex;
    justify-content:space-evenly;
    align-items: center;
}
.icons{
    border: 1px white;
    border-style:solid;
    height: 200px;
    width: 100%;
    margin: 10px;
    display: flex;
    justify-content:space-evenly;
    align-items:start;
    outline-offset: 5px;
    outline: 1px solid #ffffff;
    
}
.icons ul,i{
  color: white;
  margin: 20px;
}
.vision{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
   
}
.vision h1{
  padding-bottom: 50px;
  color: white;
  font-size: 1.5rem;
}
.vision-mission{
  width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;
    align-items: center;
}
.vision-mission i{
    color: rgb(9, 9,46);
    font-size: 2.5rem;
    background-color: white;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    padding-top: 12px;
    margin-left: 30px;;
}
  .copyright p{
    background-color: rgb(9,9,46);
    color: white;
 }

.values-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.values-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: rgb(9,9,46);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.value-box {
  background: linear-gradient(145deg, #f0f4ff, #d9e0ff);
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.value-box i {
  font-size: 2.5rem;
  color: rgb(9,9,46);
  margin-bottom: 15px;
}
.value-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: rgb(9,9,46);
}
.value-box p {
  font-size: 14px;
  color: #555;
}

.faq {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.accordion-item {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-label {
  display: block;
  padding: 15px;
  background-color: #09112e;
  color: white;
  cursor: pointer;
  font-weight: bold;
  /* transition: background 0.3s; */
}

.accordion-label:hover {
  background-color: #2a2a7c;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: #f4f4f4;
  transition: max-height 0.4s ease;
  padding: 0 15px;
}

.accordion-item input[type="checkbox"] {
  display: none;
}

.accordion-item input[type="checkbox"]:checked ~ .accordion-content {
  max-height: 200px; /* adjust height as needed */
  padding: 15px;
}
 
footer{
    height: auto;
    width: 100%;
    background-color: rgb(247, 243, 243);
}
.footer-sec{
    display: flex;
    justify-content: space-between;
    align-items: center;
     flex-wrap: wrap; /* Add this line */
}
.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;
}
.footer-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin: 5px 0;
}

.footer-list a {
  text-decoration: none;
  color: black;
}
.address p{
    text-align: center;
    display: inline;
    color:black;
}
.address h3{
  padding-top: 30px;
}
.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: 5px;
}
.copyright{
    text-align: center;
    font-size:1rem ;
    color:black;
}
 /* ✅ Mobile (up to 480px) */
@media (max-width: 480px) {

     .menu-toggle {
    display: block;
  }
 .menu-toggle i{
    color: black;
     
   }
  .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: 150px;
    height: auto;
  }
  .back-img {
    height: auto;
    padding: 0px 15px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
  }

  .back-img h1 {
    font-size: 20px;
    margin: 15px;
    padding: 0;
  }

  .back-img h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .button button, 
  .button a {
    font-size: 14px;
    padding: 6px 12px;
  }

.btns button a{
    font-size: 14px;
    margin: 0px;
    padding: 0px;
  }
  video {
    height: auto;
    margin-top: 0px;
  }
  .video h1 {
    font-size: 18px;
    margin: 5px 5px;
  }

  .boxes {
    margin-top: 10px;
    flex-direction: column;
    align-items: center;
  }

  .box {
    width: 90%;
    margin: 10px 0;
  }

  .about-sec {
    flex-direction: column;
  }
.sec-3 h1{
    font-size: 25px;
   }
  .about-image img {
    width: 250px;
    height: auto;
    padding: 0px;
  }
.Years h1{
    font-size: 25px;
    text-align: center;
}
.customers p{
    font-size: 12px;
}
  .about-content h2 {
    font-size: 22px;
    padding: 20px 10px;
  }

  .about-content p {
    font-size: 16px;
    padding: 10px 15px;
  }

  .projects {
    grid-template-columns: 1fr; /* 1 per row */
  }
    
  .pro-box {
    width: 90%;
    margin: 10px auto;
  }
    .vision-section {
    height: auto; /* remove fixed height */
    padding: 20px 10px;
    text-align: center;
  }
.vision-section h1{
  font-size: 19px;
  text-align: center;
}
  .vision-sec {
    flex-direction: column; /* stack image and text vertically */
    align-items: center;
  }

  .vision-section img {
    width: 180px;
    height: 180px;
    margin-bottom: 15px;
    margin-top: 30px;
  }

  .vision-mission {
    width: 100%;
    padding: 10px;
  }

  .icons {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    text-align: left; /* keep bullet points aligned */
  }

  .vision {
    flex-direction: row; /* icon + title side by side */
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
  }

  .vision h1 {
    font-size: 18px;
    padding-bottom: 0;
  }

  .vision-mission ul li {
    font-size: 14px;
    line-height: 1.4;
    margin: 5px 0;
  }

  .vision-mission i {
    font-size: 1.5rem;
    height: 40px;
    width: 40px;
    padding-top: 8px;
    margin-left: 0;
  }
     .footer-sec {
      height: auto;
    flex-direction: column;
    text-align: center;
  }

  .footer-sec img {
    margin: 10px auto;
  }
  .address{
    height: auto;
  }
  .address h3{
    margin: 0;

  }
  .footer-project{
    margin: 0;
  }
}
/* ✅ Tablet (481px to 1024px) */
@media (min-width: 481px) and (max-width: 1024px)  {
  
  Navbar
  .menu-toggle {
    display: block;
    font-size: 2rem;
    margin-right: 20px;
    cursor: pointer;
     
  }
.menu-toggle i{
  color: black;
}
  .Items {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 250px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }

  .Items.active {
    display: flex;
  }

  .Items ul {
    flex-direction: column;
    gap: 20px;
  }

  /* Hero Section */
  .back-img {
    height:600px;
    padding: 40px 20px;
    text-align: center;
  }

  .back-img h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .back-img h2 {
    font-size: 20px;
  }

  video {
    width: 100%;
    height: auto;
  }

  /* Boxes Section */
  .boxes {
     display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
  }

  .box {
    width: 250px;   /* two per row on tablets */
    height:250px;
  }

  /* Vision Section */
  .vision-section {
    height: auto;
    padding: 40px 20px;
  }

  .vision-sec {
    flex-direction: column;
    gap: 20px;
  }

  .vision-sec img{
    margin-top: 15px;
  }

  .vision-section img {
    width: 250px;
    height: 250px;
  }

  .vision-mission ul {
    width: 100%;
  }
 
  .icons ul{
    padding-right: 20px;
    margin: 0;
  }
  .vision {
    width: 100%;
    text-align: center;
  }
  .vision h1{
    margin: 0;
    padding: 0;
  }
.icons {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 5px;
    margin: 5px 0;
    text-align: left;
    justify-content: center; /* keep bullet points aligned */
  }

  /* Values Section */
  .values-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
    gap: 20px;
  }

  /* Footer */
  .footer-sec {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-project, .footer-list {
    margin: 10px 0;
  }

  .address {
    width: 90%;
  }
}
