@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: #FFFFFF;
}
header {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.section1{
    animation: fadeInUp 0.8s ease both;
}
.section1 h2{
    font-size:30; 
    text-align: center; 
    padding:40px;
}
.section1 p{
    text-align:center;
    font-size:18px;
}
section form {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background-color: #1D4ED8;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInUp 0.8s ease both;
}

section form label {
  color: white;
  font-weight: bold;
  font-size: 16px;
}

section form input,
section form textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

section form input:focus,
section form textarea:focus {
  border-color: #2563EB;
  box-shadow: 0 0 6px rgba(37, 99, 235, 0.4);
}

section form button {
  align-self: center;
  padding: 16px 24px;
  border: none;
  border-radius: 16px;
  background-color: #ffffff;
  color: #1D4ED8;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

section form button:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mail{
    text-align:center;
    font-size:24px;
}

.footer {
  background-color: #1D4ED8;
  color: #fff;
  padding: 40px 20px 20px 20px;
  margin-top: 60px;
  animation: fadeInUp 1s ease;
  animation-delay: 1s;
  animation-fill-mode: both;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-about,
.footer-links,
.footer-contact {
  flex: 1;
  min-width: 200px;
}
.footer-about h3 {
  margin-bottom: 12px;
  color: #ffffff;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin: 6px 0;
}
.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
}
.footer-links ul li a:hover {
  color: #2563EB;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ffffff;
  padding-top: 16px;
  font-size: 14px;
}

@media (min-width: 768px) {
    header{
    display: flex;
    justify-content: space-between;
    padding-bottom:5px;
    padding-top:5px;
    background-color:#1D4ED8;
}
header h1{
    padding-left: 10px;
    color:#222222;
}
.navforcomputer ul{
    list-style: none;
    display: flex;
}
.navforcomputer ul li{
    padding-left: 10px;
    padding-right: 10px;
}
.navforcomputer ul li a{
    color:#222222;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}
.navforcomputer ul li a:hover{
    color:#2563EB;
    transition: 0.3s ease-in-out;
    transform: scale(1.05);
}
.navforphone {
    display: none;
}
.open {
    display: none;
}
.close {
    display: none;
}
}
@media (max-width: 768px) {
       header{
                background-color:navy;
                padding:20px;
                display:flex;
                justify-content:space-between;
                align-items:center;
            }
            header h1{
                color:white;
              
            }
            header p{
                color:white;
                display:flex;
                font-size:20px;
                border:10px;
                padding:10px;
                background-color:lightblue;
                border-radius:10px;
                cursor:pointer;
            }
            .navforphone{
                position:fixed;
                background-color:#1D4ED8;
                
                right:-200%;
                top:0;
                height:100%;
                width:100%;
                display:flex;
                text-align:center;
                flex-direction:column;
                justify-content:center;
                align-items: center;
                cursor:pointer;
            }
            .navforphone ul{
                     list-style: none;
                     padding:20px;
            }
            .navforphone ul li a{
                     text-decoration:none;
                     color:#222222;
                     padding:10px;
                     text-align:center;
                     transition: color 0.3s ease, transform 0.2s ease;
            }
            .navforphone ul li a:hover{
                color:#2563EB;
                transition: 0.3s ease-in-out;
                transform: scale(1.05);
            }
            .navforphone ul li {
                     padding:10px;
            }
            .navforphone.open{
                right:0%;
                transition: left 1s ease-in-out;
            }
            .navforcomputer{
               display: none;
            }
            section form {
               padding: 20px;
               margin: 30px 10px;
            }
            section form button {
               width: 100%;
            }
            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
}