/* .Header {
    position: relative;
    top:3.6rem;
    height: 40rem;
    width: 100%;
    margin:auto;
    background-color: black;
    color: white;
    text-shadow: 5px 5px 8px rgba(255, 255, 255, 0.5);
    outline: 2px solid #ffffff;
    border-bottom: 1px solid #2c3e50;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 5);
    padding: 0 2rem;
    z-index: 100; 
    transition: transform 0.6s ease;
} */


.container:hover {
    background-color: black; 
    transform: translateY(-30px);
    cursor: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2224%22 height=%2224%22 viewBox=%220 0 32 32%22%3E%3Ccircle cx=%2212%22 cy=%2212%22 r=%227%22 fill=%22white%22 stroke=%22black%22 stroke-width=%222%22 /%3E%3C/svg%3E'), auto;
}

.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    color:white;
    height:40rem;
    margin-top:-58px;
}

.fixed{
    color:#151414;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.8);
    background-color: rgb(138, 189, 212, 0.6);
    padding: 10px;
    position: fixed;             
    top: 0;                      
    left: 0;  
    width:100%; 
    z-index: 1000; 
    border-bottom: 2px solid #fbfbfa;
    font-weight:700;
    height:50px;
    display:flex;
    align-items: center;
    font-size:15px
}

body {
    margin: 0;
    background-color: #070707;
    border: 0;
    padding: 0;
    background-image: 
      linear-gradient(to right, rgba(248, 246, 246, 0.2) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(242, 239, 239, 0.2) 1px, transparent 1px);
    background-size: 100px 100px;
    overflow-x: hidden;
}  

#particles-js {
    position: absolute; 
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.container {
    background: black;
    border: 0.1px solid white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.6s ease;
}

.container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding-left: 20px;
    padding-right:20px;
    max-width: 1200px;
    gap:50px;
    margin: auto;
    margin-bottom:10rem;
}

a{
    color:black;
}
a:hover{
    color:white;
}


.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    position: relative;
    width: 300px;
    height: 400px;
    perspective: 1000px;
    margin: 20px;
}

.content-item {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.5s ease, opacity 0.5s ease; /* Transition for flip and opacity */
    background-color: rgb(0, 0, 0);
    color: white;
    border: 1px solid white;
}

.front {
    transform: rotateY(0);
    opacity: 1; /* Make the front side slightly opaque */
    box-shadow: 0 5px 20px rgba(252, 252, 252, 0.6); /* Apply a subtle shadow to the front side */
}

.back {
    transform: rotateY(180deg);
    background-color: #f7f5f5;
    color: white;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.card:hover .front {
    transform: rotateY(-180deg);
    opacity: 1; /* Remove opacity when hovered */
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4); /* Larger shadow on hover */
}

.card:hover .back {
    transform: rotateY(0);
    opacity: 0.4; /* Ensure back side is fully opaque */
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5); /* Shadow on the back side */
}

/* Slider container */
.slider {
    width: calc(100% - 40%); /* Adjust width to take more space on the right */
    height: calc(100% - 30px); /* Increase height while leaving a margin */
    margin: 0; /* Remove extra margins */
    padding: 15px; /* Optional padding */
    display: flex;
    overflow-x: scroll; /* Enable horizontal scrolling */
    scroll-behavior: smooth; /* Smooth scrolling */
    box-sizing: border-box; /* Includes padding in width/height calculations */
}

/* Slides container */
.slides {
    display: flex;
    width: 100%;
    height: 100%;
    padding:10px;
    padding-left:50px;
    /* Optional: Adds spacing between slides */
}

/* Individual slides */
.slide {
    flex: 0 0 90%; /* Slightly reduces the slide width for spacing */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Notes */
.notes {
    font-size: 54px;
}

/* Button styling */
button {
    border: 5px solid black;
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 25px;
}

/* Vertical Line */
.vertical-line {
    width: 2px;
    height: 350px;
    background-color: black;
    margin-left: 20px; /* Adjust spacing for visual balance */
}

/* Responsive adjustments */
@media (max-width: 870px) {
    .vertical-line {
        display: none;
    }

    .slider {
        width: 100%;
        height: 200%; /* Adjust size for smaller screens */
        margin-top: 20px;
    }
    .slides{
        display: flex;
    width: 500px;
    height: 200px;
    margin-left: 0vw;
    padding-bottom:10px;
    padding:0px;
    }

    .slides .slide img {
        width: 100%;
        height: auto;
    }

    button {
        padding: 8px 16px;
        font-size: 14px;
        border: 2px solid black;
    }

    .notes {
        font-size: 36px;
    }
}

footer {
    margin-top:30px;
    color: Black;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;  /* Allow items to wrap when the screen is smaller */
    justify-content:start;  /* Center the items horizontally */
    gap: 20px;  /* Add space between the items */
}

.footer-item {
    flex: 1 1 150px;  /* Allow each item to grow and shrink, with a minimum width of 150px */
    
}

.footer-item a {
    color: Black;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display:inline-block;
}

.footer-item a:hover {
    color: #EBFD40;  /* Change color on hover */
}

.linkedin:hover{
    cursor:pointer;
}

@media (max-width:876px){
    .foot{
        margin-left:0px;
    }
}

.foot{
    margin-left:100px
}