/* Resetting default margin, padding, font, and box-sizing for all elements */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* Styling for the body */
body {
    background: #080808; /* Background color */
    color: #fff; /* Text color */
}

/* Styling for the header section */
#header {
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-image: url(background.png); /* Background image */
    background-size: cover; /* Cover the entire element */
    background-position: cover; /* Position the background */
}

/* Styling for the container holding the content */
.container {
    padding: 10px 10%; /* Padding on left and right sides */
}

/* Styling for the navigation */
nav {
    display: flex; /* Flexbox layout */
    align-items: center; /* Align items vertically */
    justify-content: space-between; /* Distribute space between items */
    text-wrap: wrap; /* This should probably be 'flex-wrap' instead of 'text-wrap' */
}

/* Styling for the logo */
.logo {
    width: 140px; /* Width of the logo */
}

/* Styling for list items in the navigation */
nav ul li {
    display: inline-block; /* Display horizontally */
    list-style: none; /* Remove default list styles */
    margin: 10px 20px; /* Margin around each item */
}

/* Styling for links in the navigation */
nav ul li a {
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
    font-size: 18px; /* Font size */
    position: relative; /* Positioning context for pseudo elements */
}

/* Styling for the pseudo element to create an underline effect on hover */
nav ul li a::after {
    content: ''; /* Empty content */
    width: 0; /* Initial width */
    height: 3px; /* Height of the underline */
    background-color: #ff004f; /* Color of the underline */
    position: absolute; /* Position relative to the link */
    left: 0; /* Position from the left */
    bottom: -6px; /* Position from the bottom */
    transition: width 0.5s; /* Smooth transition effect */
}

/* Styling for the hover effect on links */
nav ul li a:hover::after {
    width: 100%; /* Expand the underline on hover */
}

/* Styling for the text in the header section */
.header-text {
    margin-top: 20%; /* Margin from the top */
    font-size: 30px; /* Font size */
}

/* Styling for the main heading in the header section */
.header-text h1 {
    font-size: 60px; /* Larger font size */
    margin-top: 20px; /* Margin from the top */
}

/* Styling for a specific part of the main heading */
.header-text h1 span {
    color: #ff004f; /* Color of the specific part */
}
/*-------------------about------------------ */
#about{
    padding: 88px 0;
    color: #ababab;

}
.row{
    display: fixed;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-1{
    flex: 35%;
}
.about-col-1 img{
    flex: 100%;
    height: 25%;
    width: 50%;
    border-radius: 15px;
}
.about-col-2{
    flex-basis: 60%;
}
.sub-title{
    font-size: 60px;
    font-weight: 600;
    color: #fff;
}
.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-color: #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;
    
}