   * {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
  background-image: url("../images/background.png");
  background-repeat: no-repeat;
  background-size: cover;         /* makes it cover full screen */
  background-attachment: fixed;   /* optional: makes it scroll with you */
  background-position: center;    /* center the image */
  min-height: 100vh;
  height: 100%;
    padding-top: 80px;

}
.main-container{
  width: 50%;
  margin: 0 auto;
}


header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 50px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

#nav-title {
  margin-right: auto;
  font-size: 1.5em;
}

nav {
  margin-right: 80px;
}

nav ul {
  display: flex;
  gap: 20px;
}

header li {
  list-style: none;
}

header a {
  text-decoration: none;
  color: #555;
  transition: all 0.3s ease;
}

header a:hover {
  color: #b2dfdb;
}
img.logo {
  width: 50px;
  height: auto;
}


/* end header */

   /* contactpage css*/
   #contact {
     text-align: justify;
     margin: 50px 0 10px 0;
   }

   .container {
     box-sizing: border-box;
     border-radius: 5px;
     background-color: #fff;
     padding: 20px;
     width: 100%;
     max-width: 500px;
     margin: 0 auto 50px;

   }

   input[type=text],
   textarea,
   input[type=email] {
     width: 100%;
     padding: 12px;
     border: 1px solid #ccc;
     border-radius: 4px;
     box-sizing: border-box;
     margin-top: 26px;
     margin-bottom: 12px;
     resize: vertical;
   }

   input[type=submit] {
     background-color: #1255a2;
     color: white;
     padding: 12px 20px;
     border: none;
     border-radius: 4px;
     cursor: pointer;
   }

   input[type=submit]:hover {
     background-color: #1872D9;
   }

   h1 {
     color: #0a0800;
     width: 100%;

     margin-bottom: 20px;
   }

   h2 {
     text-align: center;
     color: #333;
     margin-bottom: 20px;
   }

   /* contactpage css - end*/


/* --- FOOTER --- */
footer {
  background-color: #ad77cc;

  color: #080000;
  padding: 40px 20px;
}
.footer-section {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.footer-col {
  flex: 1 1 30%;
  margin: 10px;
 
}
.footer-col h4 {
  margin-bottom: 15px;
}
.footer-col a{
  text-decoration: none;
  color: #060000;
  
}
.footer-col p{
  line-height: 20px;
  margin-top: 15px;

}
.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icons li a {
  color: white;
  font-size: 24px;
  display: inline-block;
  transition: transform 0.3s, color 0.3s;
}

.social-icons li a:hover {
  transform: scale(1.2);
  color: #000;
}


.social-icons li a {
 color: white;
  font-size: 24px;
  display: inline-block;
  transition: transform 0.3s, color 0.3s;
}


.social-icons li a:hover {
   transform: scale(1.2);
  color: #000;
}
/* end footer */


@media (max-width: 760px) {
  .main-container {
    width: 90%;
  }
  header {
    flex-direction: column;
    text-align: center;
     padding: 10px;
    height: auto;
  }

  header li {
    padding: 10px 0;
  }

 


  /* Hides the menu and shows toggle icon on small screens */
  .menu-toggle {
    display: block;
    position: absolute;
    right: 30px;
    top: 15px;
    z-index: 1001;
  }

  nav {
     display: block !important;
    width: 100%;
    background-color: white;
  }

  nav.active {
    display: block;
  }
#nav-title {
    margin-right: 0; /* no push */
    margin-bottom: 10px; /* space under title */
  }
  nav ul {
    flex-direction: column; /* stack links */
    align-items: center;
    gap: 8px;
    padding: 10px 0;
  }
  nav ul li a {
    font-size: clamp(0.9rem, 4vw, 1rem); /* scales for small screens */
  }

  

}
 
@media (max-width: 420px) {
    .about{
       
        flex-direction: column;
        margin-left: 20px;
        margin-right: 20px;
    }
    .col{
        align-items: center;
        text-align: center;
    }

}
