/* General Styles */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0d1b2a;
    color: #fff;
}


/* Hero Section */
.hero-content{
    display: flex;
    justify-content: top;
    align-items: center;
    background-color: #0d1b2a;
    height: 100vh;
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 30px;
    gap: 2em;

}
.hero-img{          
    height: auto;
    max-width: 100%;
    flex: 1;

}
.text-block{
    flex: 1;
    h1{
        font-size: 72px;
        margin-bottom: 30px;
    }
    p{
        margin-bottom: 30px;
        font-size: 20px;
    }
    button{
        width: 20%; 
        font-size: 28px;
        border-radius: 30px;
    }
}

/* Purpose Section */

.purpose-content {
    background-color: #FFFFFF;
    display: flex;
    justify-content: top;
    align-items: center;
    height: 700px;
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 30px;
    gap: 2em;
    color: #0d1b2a;
}

.purpose-textblock {
    flex: 1;
    h1{
        font-size: 72px;
        margin-bottom: 30px;
    }
    p{
        font-size: 20px;
    }
    button{
        width: 20%; 
        font-size: 28px;
        border-radius: 30px;
    }
    
}

.purpose-content ul {
    list-style: none;
    font-size: 20px;
    padding: 0;
}

.purpose-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 18px;
}

.purpose-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1b9aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    #hero, #purpose {
        flex-direction: column;
        text-align: center;
    }

    .text-block, .image-block {
        max-width: 100%;
    }
}

/*navbar*/
*{
    text-decoration: none;
}
.navbar{
    font-family: Arial, Helvetica, sans-serif;
    border-bottom: 2px solid #00A8E8 ;    
    padding-left: 15%;
    padding-right: 15%;
    align-items: center;
}
.navdiv{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo a{
    font-size: 35px;
    font-weight: 600;
    color: white;
}
.navdiv li{
    list-style: none; 
    display: inline-block;
}
.navdiv li a{
    color: white; 
    font-size: 18px; 
    font-weight: bold; 
    margin-right: 25px;
    position: relative;
    padding:0 10px;
}
.navdiv li a::after{
    content: "";
    position: absolute;
    background-color: #00A8E8;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
}
li a:hover:after{
    width: 100%;
}

/*button*/

button a{
    color: white;
    font-weight: bold;
    font-size: 15px;
}

.button-27 {
  appearance: none;
  background-color: #00A8E8;
  border: 2px solid #1A1A1A;
  border-radius: 30px;
  color: #FFFFFF;
  cursor: pointer;
  padding: 10px;
    width: 90px;
  font-size: 18px;
  outline: none;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}

.button-27:disabled {
  pointer-events: none;
}

.button-27:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-27:active {
  box-shadow: none;
  transform: translateY(0);
}

/*stat*/
.stat{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 5%;
    background-color: #003459;
    padding-top: 20px;
    padding-bottom: 30px;
}
.stat1{
    flex: 1;
    margin: auto;
    width: 50%;
    h1{
        text-align: center;
        font-size: 72px;
    }
    h3{
        text-align: center;
        font-size: 32px;
    }

}

/*powerby*/
.powerby{
    display: flex;
    justify-content: top;
    align-items: center;
    background-color: #FFFFFF;
    height: 750px;
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 30px;
    gap: 2em;
    color: #0d1b2a;

}
.powerby-text-block{
    flex: 1;
    h1{
        font-size: 72px;
        
    }
    p{

        font-size: 20px;
    }
    button{
        width: 20%; 
        font-size: 28px;
        border-radius: 30px;
    }
}

/*accurucy*/
.accurucy{
    background-color: #f7f7f7;
    height: 750px;
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 30px;
    gap: 2em;
    color: #0d1b2a;
    padding-top: 30px;
    h1{
        text-align: center;
        align-items: center;
        font-size: 72px;
        margin-bottom: 50px;
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }
    
}

.accurucy-title::before, .accurucy-title::after{
    content: "";
    height: 3px;
    background-color: #00A8E8; 
    display: block;

}

.accurucy-box{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    gap: 2rem;
}


/*news*/

.news-content {
    background-color: #007EA7;
    display: flex;
    justify-content: top;
    align-items: center;
    height: 700px;
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 30px;
    gap: 2em;
    color: #0d1b2a;
}

.news-textblock {
    flex: 1;
    h1{
        font-size: 72px;
        margin-bottom: 30px;
    }
    p{
        margin-bottom: 30px;
        font-size: 20px;
    }
    button{
        width: 20%; 
        font-size: 28px;
        border-radius: 30px;
    }
    
}
/*footer*/
footer {
    background-color: #0d1b2a;
    padding: 20px;
    font-family:  Arial, Helvetica, sans-serif;
    position: static;
    color: white;
    border-bottom: 2px solid #00A8E8 ; 
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 200px;
    padding-right: 200px;
  }
  
  .footer-section {
    flex: 1;
    /* min-width: 150px; */
    /* margin: 10px; */
  }
  
  .footer-logo {
    width: 30px;
    margin-bottom: 5px;
    margin-top: 20px;
  }
  
  .social-icons a img {
    width: 30px;
    margin-right: 2px;
  }
  
  .footer-section h4 {
    font-size: 16px;
    margin-bottom: 30px;
    margin-right: 70%;
    position: relative;
    padding:0 10px;
  }
  .footer-section h4::after{
    content: "";
    position: absolute;
    background-color: #00A8E8;
    height: 2px;
    width: 100%;
    left: 0;
    bottom: -10px;

  }
  
  .footer-section ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-section ul li a {
    margin-bottom: 10px;
    text-decoration: none;
    color: white;
    font-size: 14px;
  }
  .footer-section ul li {
    margin-bottom: 10px;
    text-decoration: none;
    color: white;
    font-size: 14px;
  }
  
  .footer-bottom {
    text-align: right;
    margin-top: 20px;
    font-size: 12px;
  }

  /*scroll bar*/
::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }