*, *:before, *:after {
    box-sizing: border-box;
    position: relative;
    letter-spacing: 0.04em;
    }

    .alink {
        pointer-events: auto !important;
        z-index: 1000; /* Force higher stacking context */
        position: relative; /* Ensure it's positioned for z-index to apply */
    }


    body {
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FEFEFE;
    overflow-x: hidden;
    }

    .link{
        color: white;
        text-decoration: none; 
    }

    .link{
        color: white;
        text-decoration: none; 
    }
    
    .link:hover{
        color: white;
    }


    /* Video background */
    .hero-panel {
        flex: 0 0 100vw; /* Full width for the hero video */
        height: 100vh;   /* Full viewport height */
        position: relative;
    }
    .video-container {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1; /* Set video behind everything */
        pointer-events: none; /* Ensure video doesn't block interactions */
    }
    
    .video-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        z-index: 1; /* Ensure content is above the video */
        text-align: center;
    }
    
    .video-content h1, .video-content p, .video-content a {
        z-index: 2; /* Ensure links are clickable */
        position: relative;
    }

    .video-content h1 {
        font-size: 50px;
        font-weight: bolder;
        padding: 5px;
    }

    .video-content p {
        font-size: 18px;
    }

    .video-content h1, .video-content p, .video-content a {
        z-index: 2;
        margin: 10px 0;
    }

    .main-content {
        margin: 10px 0;
    }

    /* video date and social media */
    .date-share {
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        color: white;
        font-size: 16px;
        z-index: 1;
        margin-left: 110px;
        margin-bottom: 10px;
    }


    .date-container {
        display: flex;
        align-items: center;
        gap: 8px; 
    }

    .date-container i {
        font-size: 20px;

    }

    #current-date {
        font-size: 20px;
    }

    .date-share #current-date {
        margin: 0;
    }

    .social-share {
        display: flex;
        gap: 10px;
    }

    .social-btn {
        color: white;
        background-color: #333;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 18px;
        text-decoration: none;
    }

    .social-btn:hover {
        background-color: #555;
    }

    .facebook { background-color: #3b5998; }
    .twitter { background-color: #1da1f2; }
    .linkedin { background-color: #0077b5; }
    .instagram {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    .social-share {
        display: flex;
        align-items: center;
        margin-right: 210px;
        margin-bottom: 10px;
    }

    .social-share span {
        font-weight: bold;
        margin-right: 10px;
    }

    .social-icon {
        margin-left: 10px;
    }

    .social-icon img {
        width: 24px;
        height: 24px;
    }

    .address-container {
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 8px;
        color: white;
    }

    .address-container i {
        font-size: 20px;
    }

    .section {
    height: auto;
    width: 100%;
    position: relative;
    padding: 0;
    overflow-x: hidden;
    }

    .portfolio {
        width: 100%;
        height: 100vh;
        display: flex;
        background-color: #113b6e;
        overflow: hidden;
    }

    .portfolio video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures video covers the section */
        z-index: -1; /* Sends video to the background */
    }

    .portfolio::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
        z-index: -1; /* Sits between the video and content */
    }

    .portfolio_title {
    position: absolute;
    top: 0;
    left: -15rem;
    font-size: 24rem;
    letter-spacing: 0;
    -webkit-text-stroke-color: #343A42;
    display: inline-block;
    }

    .text-stroke {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #343A42;
    }


    .separatation {
        flex: 0 0 20%; /

    }

    .panel {
        height: 100vh;  
        margin-right: 2vw; 
        position: relative;
        background-color: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* Card Panel */
    .card_panel {
        width: 260px;
        height: 380px;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .card_panel img, .card_panel video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card_panel:hover {
        transform: scale(1.05);
    }

    .text-overlay {
        position: absolute;
        bottom: 0;
        /* left: 50%; */
        /* transform: translateX(-50%); */
        color: white;
        font-size: 25px;
        font-family: Arial, Helvetica, sans-serif;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 3;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        z-index: 2;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: auto; 
    }

    .card_panel:hover .video-overlay {
        opacity: 1; 
    }

    .video-overlay video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


     /* TABLET */
     @media (min-width: 768px) and (max-width: 1366px) {

        .video-content h1 {
            font-size: 50px;
            font-weight: bolder;
            padding: 5px;
            margin-top: -110px
        }
    
        .video-content p {
            font-size: 25px;
        }

    
        .date-share {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            display: flex;
            flex-direction: column; /* Stack items vertically */
            align-items: center;  
            justify-content: center;
            padding: 0 20px;
            color: white;
            font-size: 10px;
            text-align: center;   
            z-index: 1;
            margin: 100px 0;
            gap: 8px; 

        }
    
    
        #current-date {
            font-size: 22px;
        }
    
        .date-share #current-date {
            margin: 0;
        }
    
        .social-btn {
            color: white;
            background-color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            font-size: 25px;
            text-decoration: none;
        }
    
        .social-btn:hover {
            background-color: #555;
        }
    
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .linkedin { background-color: #0077b5; }
        .instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }
    
        .social-share {
            display: flex;
            align-items: center; /* Center content horizontally */
            justify-content: center; /* Center content vertically */
            text-align: center; /* Align text */
            gap: 10px;
            align-items: center;
            margin-right: auto;
            margin-bottom: auto;
            width: 100%;
        }
    
    
        .social-share span {
            display:none;
        }
    
        .social-icon {
            margin-left: 10px;
        }
    
        .social-icon img {
            width: 14px;
            height: 14px;
        }
    
        .address-container {
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 20px;
            color: white;
            margin-left: 70px;
            margin-right: 70px;
        }
    
        .address-container i {
            font-size: 20px;
            margin-right: -15px;
        }

        .address-container span {
            font-size: 22px;
        }
    
        /* Card Panel */
        .card_panel {
            width: 360px;
            height: 480px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
    
        
        .text-overlay {
            position: absolute;
            bottom: 0;
            text-align: center;
            /* left: 50%; */
            /* transform: translateX(-50%); */
            color: white;
            font-size: 15px;
            font-family: Arial, Helvetica, sans-serif;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 3;
        }
    
    }


    /* MOBILE */
    @media (max-width: 767px) {

        .video-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            z-index: 1; /* Ensure content is above the video */
            text-align: center;
            
        }

        .video-content h1 {
            font-size: 30px;
            font-weight: bolder;
            padding: 5px;
            margin-top: -110px
        }
    
        .video-content p {
            font-size: 15px;
        }
        

    
        .date-share {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            display: flex;
            flex-direction: column; /* Stack items vertically */
            align-items: center;  
            justify-content: center;
            padding: 0 20px;
            color: white;
            font-size: 10px;
            text-align: center;   
            z-index: 1;
            margin: 100px 0;
            gap: 8px; 

        }
    
    
        #current-date {
            font-size: 12px;
        }
    
        .date-share #current-date {
            margin: 0;
        }
    
        .social-btn {
            color: white;
            background-color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            font-size: 15px;
            text-decoration: none;
        }
    
        .social-btn:hover {
            background-color: #555;
        }
    
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .linkedin { background-color: #0077b5; }
        .instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }
    
        .social-share {
            display: flex;
            align-items: center; /* Center content horizontally */
            justify-content: center; /* Center content vertically */
            text-align: center; /* Align text */
            gap: 10px;
            align-items: center;
            margin-right: auto;
            margin-bottom: auto;
            width: 100%;
        }
    
    
        .social-share span {
            display:none;
        }
    
        .social-icon {
            margin-left: 10px;
        }
    
        .social-icon img {
            width: 14px;
            height: 14px;
        }
    
        .address-container {
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 20px;
            color: white;
            margin-left: 70px;
            margin-right: 70px;
        }
    
        .address-container i {
            font-size: 20px;
            margin-right: -15px;
        }
    
        /* Card Panel */
        .card_panel {
            width: 160px;
            height: 280px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
    
        
        .text-overlay {
            position: absolute;
            bottom: 0;
            text-align: center;
            /* left: 50%; */
            /* transform: translateX(-50%); */
            color: white;
            font-size: 15px;
            font-family: Arial, Helvetica, sans-serif;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 3;
        }
    
    }