*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
  }

/* part1 */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    overflow: hidden;
    opacity: 05px;
}
.navbar h1{
    
    color: #007FFF;
  text-decoration: none;
  padding: 14px 20px;
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;

}
.navbar a {
    color: #007FFF;
    text-decoration: none;
    padding: 14px 20px;
    display: block;
    font-size: 25px;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;

}
.navbar a:hover {

   background-color: #ddd; 
   color: black;
   border-radius: 50px;

   }
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color:#007FFF;
}
.links 
{ 
  display: flex; 

}
.links a { 
  padding: 14px 20px; 
}

.menu-toggle:hover{
  background-color: #ccc;
  color: black;
  border-radius: 100px;
}

/* part2 */

.mainabout {

    text-align: center;
    font-size: 40px;
    margin-top: 50px;
    color: #007FFF;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    
    }
    .mainabout p{
        font-size: 25px;
        margin-top: 50px;
        width: 80%;
        color: black;
        margin-left: 150px;
        font-family: "Roboto", sans-serif;
        font-weight: 300;
        
    }
    .mainabout h2{
        font-size: 30px;
        color: #007FFF;
        margin-top: 50px;
    }
 
    .maincards{
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 50PX;
    }
    .card {
      width: 300px;
      margin: 20px;
      padding: 20px;
      border: 1px solid #ddd;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      height: 340px;
      overflow: hidden;
    }
    
    .card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-radius: 10px 10px 0 0;
    }
    
    .card h2 {
      font-size: 30px;
      margin-top: 10px;
     text-align: center;
     margin-top: 20px;
      font-family: "Roboto", sans-serif;
    font-weight: 900;
    }
    
/* part3 */

.footer-container {
    background-color: #007FFF;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  .footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    color: #333;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  .footer-content div {
    margin: 20px;
    flex: 1;
  }
  .footer-content h3 {
    background-color: #007FFF;
    color:white ;
    margin-bottom: 15px;
    border-radius: 20px;
    font-size: 25px;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
  }
  .footer-content ul {
    list-style-type: none;
    padding: 0;
    font-size: 17px;
  }
  .footer-content ul li {
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;
  font-weight: 300;
  }
  .footer-content ul li a {
    text-decoration: none;
    color: #333;
  }
  .footer-content ul li a:hover {
    background-color: #33363D;
    color:white ;
    border-radius: 50px;
  }
  .footer-content .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
  }
  .footer-content .social-icons a {
    color: #fff;
    background-color: #007FFF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
  }
  .footer-content .social-icons a:hover {
    background-color: #a80f1b;
  }
  .footer-map {
    width: 100%;
    height: 200px;
    margin-top: 20px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
  }

/* media quree */

@media (max-width: 600px){

    .overlay h1 {
      font-size: 2em;
  }
  
  .overlay p {
      font-size: 1em;
  }
  
  .overlay {
      width: 90%;
      padding: 15px;
  }

/* part2 */

.mainabout p{
    text-align: start;
}
.maincards{
flex-direction: column;
width: 60%;
margin-left: 140px;
}

}

@media (max-width: 768px) {

    .links {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .links.active { display: flex; }
    .menu-toggle { display: block; }


/* part2 */

.mainabout p{
    margin-inline-start: 90px;
}

}
