#logo {
    position: absolute;
    top: 20px;   /* Adjust for spacing from the top */
    left: 20px;  /* Adjust for spacing from the left */
}

#logo img {
    width: 80px;  /* Adjust as needed */
    height: auto;
    border-radius: 15px; /* Adjust for roundness */
    transition: transform 0.3s ease-in-out;
}

#logo img:hover {
    transform: scale(1.1);
}



body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #F3EFF5;
    background-color: #0D0A0B;
    overflow-x: hidden;
}

#bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
}

.animated-text {
    font-size: 3rem;
    font-weight: bold;
    color: #72B01D;
}

.cta-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #F3EFF5;
    padding: 10px 20px;
    text-decoration: none;
    color: #F3EFF5;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: #F3EFF5;
    color: #0D0A0B;
}

.portfolio, .contact {
    padding: 50px 20px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease-in-out;
}

.grid-item:hover {
    transform: scale(1.1);
}

.grid-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-item:hover video {
    display: block;
    transform: scale(1.1);
}

#videoPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 10, 11, 0.9);
    display: none;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

#videoPopup video {
    border-radius: 15px;
    object-fit: contain;
    max-width: 90vw;
    max-height: 90vh;
    color: #F3EFF5;
}

form {
    max-width: 500px;
    margin: 0 auto;
}

input, textarea, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

button {
    background: #72B01D;
    color: #0D0A0B;
    cursor: pointer;
}

#contactButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #72B01D;
    color: #0D0A0B;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

#contactButton:hover {
    background: #5A9015;
}

#contactForm {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
}

#contactForm h3 {
    color: #F3EFF5;
}

#contactForm input, #contactForm textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
}

#contactForm button {
    width: 100%;
    background: #72B01D;
    color: #0D0A0B;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#contactForm button:hover {
    background: #5A9015;
}


.social-icons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    text-decoration: none;
    font-size: 24px;
    color: #F3EFF5;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #72B01D;
}






/* new changes: 23/02/25 */

#edit-types {
    text-align: center;
    padding: 50px 0;
    background: #0f0f0f;
    color: #fff;
    font-family: Arial, sans-serif;
}

.video-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.video-block {
    width: 30%;
    aspect-ratio: 16 / 9;
    background: #222;
    border: 2px solid cyan;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.video-block:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px cyan;
    filter: hue-rotate(180deg) contrast(1.2);
}

/* Popup Video */
#video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

#video-popup-content {
    position: relative;
    width: 60%;
    aspect-ratio: 16 / 9;
    background: black;
    border: 2px solid cyan;
}

#close-popup {
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 30px;
    cursor: pointer;
    color: white;
}
