/* General styles */
body {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Header styles */
header {
    background: transparent;
    padding: 20px 0;
    text-align: center;
}
#logo{
    animation: fill 0.5s ease forwards 5s;
}
#logo path:nth-child(1){
    stroke-width: 3;
    stroke-dasharray: 230.42;
    stroke-dashoffset: 230.42;
    animation: line-animation 1s ease forwards 4.8s;
}
#logo path:nth-child(2){
    stroke-width: 3;
    stroke-dasharray: 353.72;
    stroke-dashoffset: 353.72;
    animation: line-animation 1s ease forwards 4.5s;
}
#logo path:nth-child(3){
    stroke-width: 3;
    stroke-dasharray: 357.88;
    stroke-dashoffset: 357.88;
    animation: line-animation 1s ease forwards 4.2s;
}
#logo path:nth-child(4){
    stroke-width: 3;
    stroke-dasharray: 322.62;
    stroke-dashoffset: 322.62;
    animation: line-animation 1s ease forwards 3.9s;
}
#logo path:nth-child(5){
    stroke-width: 3;
    stroke-dasharray: 309.98;
    stroke-dashoffset: 309.98;
    animation: line-animation 1s ease forwards 3.6s;
}
#logo path:nth-child(6){
    stroke-width: 3;
    stroke-dasharray: 230.41;
    stroke-dashoffset: 230.41;
    animation: line-animation 1s ease forwards 3.3s;
}
#logo path:nth-child(7){
    stroke-width: 3;
    stroke-dasharray: 344.76;
    stroke-dashoffset: 344.76;
    animation: line-animation 1s ease forwards 3.0s;
}
#logo path:nth-child(8){
    stroke-width: 3;
    stroke-dasharray: 353.72;
    stroke-dashoffset: 353.72;
    animation: line-animation 1s ease forwards 2.7s;
}
#logo path:nth-child(9){
    stroke-width: 3;
    stroke-dasharray: 290.70;
    stroke-dashoffset: 290.70;
    animation: line-animation 1s ease forwards 2.4s;
}
#logo path:nth-child(10){
    stroke-width: 3;
    stroke-dasharray: 105.68;
    stroke-dashoffset: 105.68;
    animation: line-animation 1s ease forwards 2.1s;
}
#logo path:nth-child(11){
    stroke-width: 3;
    stroke-dasharray: 230.42;
    stroke-dashoffset: 230.42;
    animation: line-animation 1s ease forwards 1.8s;
}
#logo path:nth-child(12){
    stroke-width: 3;
    stroke-dasharray: 339.16;
    stroke-dashoffset: 339.16;
    animation: line-animation 1s ease forwards 1.5s;
}
#logo path:nth-child(13){
    stroke-width: 3;
    stroke-dasharray: 309.98;
    stroke-dashoffset: 309.98;
    animation: line-animation 1s ease forwards 1.2s;
}
#logo path:nth-child(14){
    stroke-width: 3;
    stroke-dasharray: 215.51;
    stroke-dashoffset: 215.51;
    animation: line-animation 1s ease forwards 0.9s;
}
#logo path:nth-child(15){
    stroke-width: 3;
    stroke-dasharray: 353.71;
    stroke-dashoffset: 353.71;
    animation: line-animation 1s ease forwards 0.6s;
}
#logo path:nth-child(16){
    stroke-width: 3;
    stroke-dasharray: 344.76;
    stroke-dashoffset: 344.76;
    animation: line-animation 1s ease forwards 0.3s;
}
#logo path:nth-child(17){
    stroke-width: 3;
    stroke-dasharray: 281.08;
    stroke-dashoffset: 281.08;
    animation: line-animation 1s ease forwards;
}
@keyframes line-animation{
    to{
        stroke-dashoffset: 0;
    }
}
nav {
    margin-top: 40px;
}

nav a {
    position: relative;
    font-size: 15px;
    color: #363636;
    font-weight: 600;
    text-decoration: none;
    margin-left: 30px;
}

nav a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: #333;
    transition: .2s;
}

nav a:hover::before {
    width: 100%;
    box-shadow: 2px 2px 10px #505050;
}

/* Main content styles */
main {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 20px;
}

h2 {
    font-size: 2em;
    margin-top: 0;
    color: #333;
    padding: 20px;
    margin-bottom: 0;
}

p {
    margin-top: 0;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
    padding: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    padding: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

ul li a {
    text-decoration: none;
    color: #007bff;
}

ul li a:hover {
    text-decoration: underline;
}
.container section p a{
    position: relative;
    color: blue;
    text-decoration: none;
    font-weight: bolder;
}
.container section p a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: #333;
    transition: .2s;
}

.container section p a:hover::before {
    width: 100%;
    box-shadow: 2px 2px 10px #505050;
}

.footer {
    width: 100%;
    background: #333;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    overflow: hidden; /* Ensures no horizontal scrollbar */
  }
  
.footer h2 {
    color: white;
    margin-bottom: 20px;
    transition: .3s;
}
.footer h2:hover{
    text-shadow: 2px 2px 10px black;
}
.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
  padding: 0; /* Remove default padding */
}

.social-icon__item {
  list-style: none;
  margin: 0 10px; /* Ensure consistent margin */
}

.social-icon__item {
  font-size: 2rem;
  color: #fff;
  transition: transform 0.5s;
}
.social-icon__link{
    color: white;
}
.social-icon__item:hover {
  transform: translateY(-5px);
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}
