@import url('https://fonts.googleapis.com/css2?family=Galada&display=swap');

body{
    font-family: "Galada", cursive;
    font-weight: 400;
    font-style: normal;
}









.hero_img{
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center
}
.hero_img img{
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: center;
}

.hero-section .hero_area_title{
    font-size: 3vw;
    color: #000;
}
.hero-section .hero_area_title span{
    color: #eb5a0c;
}

.custom-btn{
    color: #eb5a0c;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    border: 1px solid #eb5a0c;
    transition: all 0.5s ease
}
.custom-btn:hover{
    background: #eb5a0c;
    color: #fff;
}
#colorlib-logo{
    color: #eb5a0c;
}
a.js-colorlib-nav-toggle.colorlib-nav-toggle {
    background: #eb5a0c

;
}

@media (max-width: 991.98px) {
    .hero_img{
        height: auto;
        padding: 2rem 0;
    }
    .hero-section .hero_area_title{
        font-size: 2rem;
        color: #000;
    }
    .about_content{
        padding-top: 0 !important;
        padding-bottom: 30px !important;
    }
}


/* about_section */

        /* Initial spacer for scroll */
        .spacer {
            height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }

        /* About section */
        #about_section {
            position: relative;
            z-index: 2;
            min-height: 400vh; /* Make it scrollable */
        }
        .about_content_area{
            width: 50%;
        }
        .about_images_area{
            width: 50%;
            position: sticky;
            top: 0;
            align-self: flex-start;
        }

        /* #about_section .left_content_area p {
            font-size: 2vw;
            line-height: 1.4;
            text-align: justify;
            color: #333;
        } */

        #about_section .left_content_area {
            padding: 2rem 0;
        }

        #about_section .left_content_area .step {
            padding: 4rem 0;
            border-bottom: 1px solid #ccc;
            height: 100vh;
            margin: 0 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        #about_section .left_content_area .step:last-child {
            border-bottom: none;
        }

        /* Right side image container */
        .right_content_area {
            position: sticky;
            top: 0;
            align-self: flex-start;
        }

        .about_images {
            position: relative;
            height: 100vh;
            overflow: hidden;
            align-self: flex-start;
        }

        .about_images img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            clip-path: inset(100% 0 0 0); /* Start hidden from top */
        }

        /* Show first image by default */
        .about_images img:first-child {
            clip-path: inset(0 0 0 0); /* Fully visible */
        }


        /* mobile */
        .about_item{
            height: 100vh;
            position: relative;
            overflow: hidden;
        }
        .about_text{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem;
            background-color: rgba(0, 0, 0, 0.5)
        }
        .mobile_about .about_title, .mobile_about .about_description{
            color: #ddd;
        }
        .about_img{
            height: 100vh;
            position: relative;
            overflow: hidden;
        }
        .about_item img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .about_title{
            font-size: 2.5rem;
            line-height: 1.4;
            text-align: justify;
            color: #333;
            margin-bottom: 20px;
        }
        .about_description{
            font-size: 20px;
            line-height: 1.4;
            text-align: justify;
            color: #444444;
        }

        .mobile_about{
            display: none;
        }


        /* Mobile styles */
        .mobile_about {
            display: none;
        }
        .mobile_description{
            color: #ddd;
        }
        .mobile_about_content{
            padding: 1rem;
            background: rgba(0, 0, 0, 0.5);
        }

        @media (max-width: 768px) {
            #about_section {
                display: none;
            }

            .mobile_about {
                display: block;
                position: relative;
                min-height: 400vh;
            }

            .mobile_images_area {
                position: sticky;
                top: 0;
                height: 100vh;
                width: 100%;
                overflow: hidden;
                z-index: 2;
            }

            .mobile_images {
                position: relative;
                height: 100%;
            }

            .mobile_images img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                clip-path: inset(100% 0 0 0);
            }

            .mobile_images img:first-child {
                clip-path: inset(0 0 0 0);
            }

            .mobile_content_area {
                padding: 2rem;
                position: relative;
                z-index: 3;
            }

            .mobile_step {
                padding: 2rem 0;
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .mobile_step:last-child {
                border-bottom: none;
            }
        }






        .gallery_img{
            width: 100%;
            height: 80vh;
        }
        .gallery_img img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* Responsive text */

        /* @media (min-width: 768px) and (max-width: 992px) {
            .dasktop_about{
                display: none;
            }
         } */


        @media (max-width: 768px) {

            #about_section .left_content_area p {
                font-size: 4vw;
            }
            .mobile_about{
                display: block;
            }
            .dasktop_about{
                display: none;
            }
            .about_title{
            font-size: 1.5rem;
            }
            .about_description{
            font-size: 15px;
            }
        }




/* career section CSS */
.sliders_wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
}
.hrisliders {
    display: flex;
    gap: 40px;
    overflow: hidden;
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
}
.slider_item {
    width: 100%;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
        .carrer_images {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
                .carrer_images img {
            position: absolute;
            border-radius: 50%;
            object-fit: cover;
            object-position: center;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.5s ease;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            border: 3px solid rgba(255,255,255,0.8);
        }
                .carrer_images img.visible {
            opacity: 1;
            transform: scale(1);
        }
.compony_logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
.slider_item .position {
    font-size: 2.3rem;
    color: #000;
    padding-top: 10px;
}
.hri_slider_content {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}
.content_wrapper {
    position: relative;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    padding: 20px;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.year p {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 0;
    width: fit-content;
    padding: 0.5rem 1rem;
    border: 1px solid #000;
    margin: 0 auto;
    border-radius: 5px;
    line-height: 1.4;
}
.content p {
    font-size: 1.3rem;
    color: #333;
}




@media (max-width: 768px) {
    .slider_item .position {
        font-size: 1.5rem;
    }
    .year p {
        font-size: 1rem;
    }
    .content p {
        font-size: 1rem;
    }
    .carrer_images img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        object-position: center;
    }
    /* Mobile adjustments for slider item 1 */

}







/* video area */
.contact_section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.video_item{
    position: relative;
    overflow: hidden;
}
.video_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.video_icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 1;
    background: #000;
    padding: 30px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}