/* Add your custom styles here */

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    background-color: #1f242d;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 25px 10%;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 27px;
    cursor: default;
    animation: slideleft 1s ease forwards;
    opacity: 0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0ef;
}

.navbar a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 0px 16px;
    font-weight: 600;
    transition: 0.3s all;
    animation: navmenu 1s ease forwards;
    opacity: 0;
}

.navbar a:hover,
.navbar a:active {
    color: #0ef;
}

.hero-container {
    display: flex;
    padding: 25px 10%;
    justify-content: center;
    align-items: center;
}

.info-side {
    text-align: center;
}

.info-side h3 {
    font-size: 30px;
    font-weight: 700;
    margin: 10px 0;
    letter-spacing: 1px;
    animation: part1 1s ease forwards;
    opacity: 0;
}

.info-side h1 {
    font-size: 75px;
    letter-spacing: 1px;
    font-weight: 700;
}

.info-side h3 span {
    color: #0ef;
}

p {
    line-height: 27px;
    margin: 20px 0px 40px 0px;
}

.social-icons a {
    color: #0ef;
    text-decoration: none;
    font-size: 24px;
    margin-right: 10px;
}

.btn {
    color: #fff;
    background-color: #0ef;
    margin-top: 50px;
    padding: 20px 70px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.section-title {
    color: #0ef;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.card-container {
    display: flex;
    justify-content: space-between;
}

.card {
    width: calc(100% / 3 - 20px);
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
    border: none;
    border-radius: 10px;
}

.card:hover,
.card:focus {
    box-shadow: 0 0 20px #0ef;
    transform: scale(1.05);
}

.project-cards {
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-cards .card {
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.project-cards .card-body {
    text-align: center;
}

.certificates {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #f8f9fa;
    max-width: 300px;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    color: #0ef;
    font-size: 20px;
    font-weight: bold;
}

.card-text {
    font-size: 16px;
}

.btn {
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/*Responsive footer*/
body {
    margin: 0;
    background: linear-gradient(#0d0d0d, #212121);
    font-family: "Euclid Circular A", "Poppins";
    color: #d6dfed;
  }
  
  html,
  body {
    height: 100%;
  }
  
  .background {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .socials {
    gap: 20px;
  }
  
  .socials a {
    font-size: 24px;
  }
  
  .links {
    gap: 10px;
  }
  
  .legal {
    font-size: 12px;
    margin: 0;
  }
  
  svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleY(3) scaleX(2.25);
    transform-origin: bottom;
    box-sizing: border-box;
    display: block;
    pointer-events: none;
  }
  
  .footer {
    background-color: #1f242d;
    color: #fff;
    padding: 20px; /* Increased padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    margin-bottom: 10px; /* Increased margin */
}

.footer-links .footer-link {
    color: #fff;
    text-decoration: none;
    margin-right: 15px; /* Increased margin */
}

.navbar {
    margin-bottom: 10px; /* Increased margin */
}

.navbar a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px; /* Increased margin */
}

.social-icons {
    margin-bottom: 20px; /* Increased margin */
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    margin-right: 10px; /* Increased margin */
}

.social-icons i {
    font-size: 24px; /* Increased font size */
}

.social-icons a:hover {
    color: #0ef;
}

.copyright {
    font-size: 14px; /* Increased font size */
    margin-top: auto;
}


@media (max-width: 420px) {
    section {
      align-items: center;
      padding-left: 0;
      gap: 20px;
    }
  
    .links {
      gap: 20px;
    }
  }

/* Keyframe Animations */
@keyframes slideleft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes navmenu {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes part1 {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
