body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0A0D12; /* Changed background color to dark */
    color: #fff; /* Changed text color to white */
    height: 100vh;
    display: flex;
    flex-direction: column;
}

header.main-header {
    background: #0A0D12;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 15%;
    
}

header h1 {
    padding-top: 25%;
    color: #CC334F;
    margin: 0;
    font-size: 6rem;
    align-items: center;

  animation: animate__fadeInDown; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 12s; /* don't forget to set a duration! */
}

header .subtitle {
    color: #fff;
    font-size: 3rem;
    margin: 30px 0 20px 0;
}

nav ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    font-size: 1.5rem;
    padding-bottom: 55%;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s; /* Smooth transition for color change */
}

nav ul li a:hover {
    color: #CC334F; /* Change color to red on hover */
}


nav ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    font-size: 1.5rem;
    padding-bottom: 50%;
}

nav2 ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    font-size: 1.5rem;
    /* padding-bottom: 25%; */
} 
nav2 ul li {
    margin-right: 20px;
}

nav2 ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s; /* Smooth transition for color change */
}

nav2 ul li a:hover {
    color: #CC334F; /* Change color to red on hover */
}
.section {
    padding: 20px 0;
    background: #0A0D12; /* Changed section background color to match body */
    color: #fff; /* Ensure text is white in sections */
}

.section h2 {
    margin-top: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.project {
    margin-bottom: 40px;
   
}

.project button {
    padding: 10px 15px;
    margin: 10px 5px; /* Adjusted for spacing between buttons */
    border: none;
    border-radius: 5px;
    background: #CC334F;
    color: #fff;
    font-family: "League Spartan", sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.project button:hover {
    background: #e04561;
}

footer {
    background: #0A0D12;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 10%;
}

.social-links {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next line if they don't fit */
    justify-content: center; /* Center the icons horizontally */
    gap: 10px; /* Space between icons */
    list-style: none; /* Removes list styling */
    padding: 0;
    margin: 10px 0;
  }
  
  .social-links a {
    display: inline-block;
    font-size: 1.5rem; /* Adjust the size of the icons */
    color: white;
    transition: color 0.3s;
  }
  
  .social-links a:hover {
    color: #fff; /* Hover effect */
  }
  
  /* Adjustments for mobile screens */
  @media (max-width: 768px) {
    .social-links {
      justify-content: flex-start; /* Align to the start on smaller screens */
    }
  }

.social-links2 li {
    margin: 0 10px;
}

.social-links2 a {
    text-decoration: none;
    transition: transform 0.3s ease; /* Smooth transition for the hover effect */
}

.social-links2 a:hover {
    transform: scale(1.1); /* Scale the logo on hover */
}
.social-logo {
    width: 70px; /* Adjust the size of the logos as needed */
    height: auto;
}


/* League Spartan Font Styles */
.league-spartan-regular {
    font-family: "League Spartan", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1px;
    line-height: 1.8;
}

.league-spartan-bold {
    font-family: "League Spartan", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.league-spartan-black {
    font-family: "League Spartan", sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #CC334F;
}

.league-spartan-thin {
    font-family: "League Spartan", sans-serif;
    font-weight: 100;
    font-style: normal;
}


/* Contact Section Styles */
.contact-wrapper {
    background: #0A0D12; /* Match the background color of the site */
    color: #fff; /* Ensure text is white */
    padding: 20px;
    border-radius: 5px;
}

.contact-wrapper form {
    display: flex;
    flex-direction: column;
}

.contact-wrapper .form-group {
    margin-bottom: 15px;
}

.contact-wrapper label {
    font-family: "League Spartan", sans-serif;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 1.8;
    padding-bottom: 10px;
}

.contact-wrapper input,
.contact-wrapper textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    background: #191D21;
    color: #fff;
    font-family: "League Spartan", sans-serif;
    font-weight: 400;
}

.contact-wrapper input::placeholder,
.contact-wrapper textarea::placeholder {
    color: #bbb;
}

.contact-wrapper button {
    padding: 10px 20px;
    width: fit-content;
    border: none;
    border-radius: 5px;
    background: #CC334F; /* Button background color */
    color: #fff; /* Button text color */
    font-family: "League Spartan", sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-wrapper button:hover {
    background: #e04561; /* Lighter color on hover */
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.social-links li {
    margin: 0 10px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    background: #191D21;
    padding: 10px 45px;
    border-radius: 5px;
    transition: background 0.3s;
    margin-left: 20px;
}

.social-links a:hover {
    background: #CC334F;
}


@media (max-width: 768px) {
    header h1 {
        font-size: 3rem;
        padding-top: 25%;
    
    }

    header .subtitle {
        font-size: 1.5rem;
    }

    nav ul {
        flex-direction: row;
        align-items: center;
        font-size: 1rem;
        padding-bottom: 15%;
    }

    nav ul li {
        margin-right: 20px;
        margin-bottom: 10px;
    }

    .container {
        width: 90%;
    }

    .project button {
        width: 100%;
        margin: 10px 0;
    }

    .social-links a {
        padding: 10px 20px;
        margin-left: 10px;
    }

    .social-logo {
        width: 50px;
    }
}
/* Flexbox container to align the cards */
/* Container holding the cards */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly; /* Ensure cards are evenly spaced */
  gap: 20px; /* Gap between cards */
  padding: 20px; /* Padding around the cards container */
}

/* Individual card styling */
.card {
  width: 280px;
  background-color: #191D21;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.7) 5px 10px 50px, rgba(0, 0, 0, 0.7) -5px 0px 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  font-family: "League Spartan", sans-serif;
  font-weight: 400;
  height: 350px; /* Fixed height for all cards to be uniform */
}

/* Hover effect for the cards */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Container inside the card */
.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Fills card height */
  text-align: center;
  font-family: "League Spartan", sans-serif;
  font-weight: 100;
  font-style: normal;
}

/* Title styling */
h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Paragraph styling */
p {
  flex-grow: 1; /* Makes sure the description fills available space */
  margin: 10px 0;
}

/* Button styling */
button {
  background-color: #CC334F;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: center; /* Center the button horizontally */
  margin-top: 20px;
  margin-bottom: 10px; /* Adjusted margin for consistent spacing */
}

/* Button hover effect */
button:hover {
  background-color: #191D21;
}

/* Responsive Design for small screens */
@media (max-width: 768px) {
  .card {
    width: 100%; /* Full width on smaller screens */
  }
}   
  
  /* Button styling */
  button {
    background-color: #CC334F; 
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center; /* Center the button horizontally */
    margin-top: auto; /* Pushes the button to the bottom */
  }
  
  button:hover {
    background-color: #191D21;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .card {
      width: 100%; /* Cards will take full width on smaller screens */
    }
  }
  
  
  /* Responsive design for smaller screens */
  @media (max-width: 768px) {
    .card {
      width: 100%; /* Full width for smaller screens */
    }
  
    iframe {
      width: 100%; /* Make iframe responsive */
    }
  }
  