@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{
    padding:60px;
    animation: fadeInUp 0.8s ease both;
}
.section1 h2{
    text-align:center;
    padding-bottom:30px;
}
.section1 h4{
    text-align:center;
}
.section3{
    text-align: center;
    padding:40px;
    animation: fadeInUp 0.8s ease both;
}
.section3 button{
    display:inline-block;
    padding: 16px 20px;
    border: 1px solid black;
    border-radius: 16px;
    background-color:#1D4ED8;
    color:#222222;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align:center;
    color:white;
}
.section3 button:hover{
    background-color:#2563EB;
    padding: 20px 24px;
    border: 1px solid black;
    border-radius: 16px;
    transition: 0.3s ease-in-out;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.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;
}
.section2{
    animation: fadeInUp 0.8s ease both;
    padding:40px;
}
.example1{
    width:100%;
    height:500px;
    border:none;
    padding-top:40px;
    padding-bottom:40px;
}
.section2 hr{
    height:6px;
    background-color:black;
}
.example2{
    width:100%;
    height:500px;
    border:none;
    padding-top:40px;
    padding-bottom:40px;
}
}

@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;
            }
            .section2{
               animation: fadeInUp 0.8s ease both;
               padding:10px;
            }
.example1{
    width:100%;
    height:500px;
    border:none;
    padding-top:40px;
    padding-bottom:40px;
}
.section2 hr{
    height:6px;
    background-color:black;
}
.example2{
    width:100%;
    height:500px;
    border:none;
    padding-top:40px;
    padding-bottom:40px;
}
            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }