* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #080808;
    color: #fff;
}

#header {
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-image: url('pc-bg.jpg'); /* Set the background image */
    background-size: cover; /* Ensure it covers the whole screen */
    background-position: center center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-attachment: fixed; /* Optional: This keeps the background fixed while scrolling */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container {
    padding: 10px 10%;
}

h1 {
    color: #fff; /* Make sure the text contrasts against the background */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: fixed; /* Fix the navbar to the top of the screen */
  top: 0; /* Align it to the top */
  left: 0;
  width: 100%; /* Make it span the full width */
  background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
  z-index: 1000; /* Keep it above other elements */
  padding: 5px 50px; /* Add padding for spacing */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Optional: Add shadow for style */
}


nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background-color: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

.header-text {
    text-align: center;
    color: #d1d1d1; /* Dark gray color that contrasts well with both black and white */
    margin-top: 0;
}

.header-text h1 {
    font-size: 30px;
    color: #ffffff; /* Applying the same color to the header */
}

.header-text span {
    color: #000; /* Accent color */
    font-size: 40px;
}

/* About Section */
#about {
    padding: 80px 0;
    color: #ababab;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1 {
    flex-basis: 35%;
}

.about-col-1 img {
    width: 90%;
    height: auto;
    border-radius: 10%;
}

.about-col-2 {
    flex-basis: 65%;
}

.sub-title {
    font-size: 60px;
    font-weight: 600;
    color: #fff;
}

/* Tabs */
.tab-titles {
    display: flex;
    margin: 20px 0 40px;
}

.tab-links {
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-links::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-link::after {
    width: 50%;
}

.tab-contents ul li {
    list-style: none;
    margin: 10px 0;
}

.tab-contents ul li span {
    color: #b54769;
    font-size: 14px;
}

.tab-contents {
    display: none;
}

.tab-contents.active-tab {
    display: block;
}

.contact-left {
    flex-basis: 35%;
}

.contact-right {
    flex-basis: 60%;
}

.contact-left p {
    margin-top: 30px;
}

.contact-left p i {
    color: #ff004f;
    margin-right: 15px;
    font-size: 25px;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #ff004f;
    transform: translateY(-5px);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 30px;
    background-color: #ff004f;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #430417;
}

.contact-right form {
    width: 100%;
}

form input,
form textarea {
    width: 100%;
    border: 0;
    outline: none;
    background: #262626;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    resize: none;
}

form .btn {
    margin-top: 5px;
}

.copyright {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #262626;
    font-weight: 300;
    margin-top: 20px;
    color: white;
}

.copyright i {
    color: #ff004f;
}

#msg {
    color: #61b752;
    margin-top: 10px;
    display: block;
}

@media (max-width: 768px) {
  nav {
      flex-direction: column;
      padding: 0;
      margin-right: 0;
  }

  .header-text h1 {
      font-size: 24px;
  }

    /* Header Text */
    .header-text h1 {
        font-size: 24px;
    }
  .about-col-1, .about-col-2 {
      flex-basis: 100%;
      text-align: center;
      padding: 0;
  }

  .about-col-1 img {
        display: block;
        width: 100%;
        height: auto;
        /* Maintain aspect ratio */
        margin-left: auto;
        margin-right: auto;
    }
.about-col-2 {
        padding-top: 30px;
        /* Adjust padding for about section */
    }

    /* Sub-title Styling */
    .sub-title {
        font-size: 30px;
        /* Adjust font size for smaller screens */
    }
  .social-icons a {
      font-size: 24px;
  }
    /* Contact Section */
    .contact-left,
    .contact-right {
        width: 100%;
        /* Full width for both columns */
        padding: 0;
        /* Remove padding */
        margin-left: auto;
        margin-right: auto;
    }

    .contact-right {
        padding-top: 30px;
        /* Add padding on top for separation */
    }
}