* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    background-color: black;
}

section {
    background: url("../images/fourth.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
    width: 100vw;
    height: calc(100vw * (768 / 1366)); 
}

a.social-icon {
    color: black;
    background-color: white;
    border-radius: 50%;
    width: 30px !important;
    height: 30px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

a.social-icon:hover {
    transform: translateY(-1px);
}

section div {
    flex-direction: row;
    padding: 46px 41px 0;
    height: fit-content;
}

@media screen and (max-width: 768px) {
    section {
        background: url("../images/fourth-mobile.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: calc(100vw * (852 / 393)); 
    }

    section div {
        flex-direction: column;
        padding: 20px 70px 32px;
        height: 100%;
    }
}

/* Hide default cursor on entire page */
* {
    cursor: none;
}

/* Custom cursor styling */
.custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
}

.cursor-outer {
    width: 32px;
    height: 32px;
    border: 2px solid #FF8500;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cursor-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background-color: #FF8500;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Hover state */
.cursor-hover .cursor-outer {
    background-color: rgba(255, 133, 0, 0.2);
    transform: scale(1.5);
}

/* Interactive elements */
.interactive {
    cursor: pointer;
}

/* Responsive design */
@media (max-width: 768px) {
    .custom-cursor {
        opacity: 0;
    }

    * {
        cursor: auto;
    }
}

/* Example SVG/interactive elements */
svg {
    width: 100%;
    height: 100%;
}

.example-path {
    fill: #4a90e2;
}

.example-path:hover {
    fill: #FF8500;
}

.example-button {
    padding: 12px 24px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    margin: 20px;
    cursor: pointer;
}

.example-button:hover {
    background-color: #FF8500;
}

#direct-btn {
    position: absolute;
    left: 50.4%; 
    top: 42.5%;    
    transform: translate(-50%, -50%);
    width: 8.6vw;  
    height: 8.6vw;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: transparent;
}

/* For mobile */
@media screen and (max-width: 768px) {
    #direct-btn {
        top: 51.7%;    
        left: 51.4%;
        width: 28vw;  
        height: 28vw;
    }
}