@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* font-family: "Poppins", sans-serif; */
/* font-weight: 200; */
/* font-weight: 700; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    position: relative;
}

::-webkit-scrollbar {
    display: none;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    cursor: default !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: #000;
}

.yellow-grad {
    color: transparent;
    /* background: linear-gradient(90deg, #fbab18, #fcc64d); */
    background: linear-gradient(90deg, #fbab18, #fdde8a);
    background-clip: text;
    -webkit-background-clip: text;
}

.section-label {
    font-size: 1rem;
    padding: 4px 16px;
    font-weight: 300;
    color: #fff;
    background-color: #000;
    border-radius: 25px;
    margin-bottom: 15px;

    i {
        color: #fbab18;
    }
}

/* gallery hero */
.galleryHero {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background-image: url(); */
    background: linear-gradient(20deg, #000, #2E3C5E);
    position: relative;
    overflow: hidden;

    .abs-blink-circ-1 {
        width: 250px;
        height: 250px;
        position: absolute;
        background-color: #fdde8a70;
        filter: blur(100px);
        top: 5%;
        left: 25%;
        border-radius: 50%;
        animation: blinkA 3s ease-in-out infinite;
    }

    .abs-blink-circ-2 {
        position: absolute;
        width: 250px;
        height: 250px;
        background-color: #fdde8a70;
        filter: blur(150px);
        border-radius: 50%;
        bottom: 5%;
        right: 25%;
        animation: blinkB 3s ease-in-out infinite;
    }

    .galleryHeroContainer {
        width: 100%;
        height: auto;
        min-height: 500px;
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        h4 {
            margin-bottom: 15px;
        }

        h2 {
            font-size: 3rem;
            line-height: 4rem;
            color: #fff;
            margin-bottom: 20px;
            max-width: 900px;
            text-align: center;
        }

        p {
            color: #f9f9f9;
            font-size: 1.1rem;
            max-width: 800px;
            text-align: center;
        }
    }
}

/* Opposite blinking animation */
@keyframes blinkA {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes blinkB {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@media screen and (max-width:768px) {
    .galleryHero {
        padding: 0 10px;

        .galleryHeroContainer {
            min-height: 500px;

            h4 {
                margin-bottom: 15px;
            }

            h2 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 15px;
            }

            p{
                font-size: 1rem;
            }
        }
    }
}

/* gallery hero */


/* sahara factory */
.factoryFacility{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
    .factoryFacilityContainer{
        width: 100%;
        height: auto;
        max-width: 1400px;
        margin: 80px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        

        h4{
            margin-bottom: 15px;
        }

        h2{
            font-size: 2.5rem;
            line-height: 3rem;
            margin-bottom: 15px;
            text-align: center;
        }

        p{
            font-size: 1.1rem;
            max-width: 1100px;
            text-align: center;
            margin-bottom: 40px;
        }

        .saharaImages{
            width: 100%;
            height: auto;
            overflow: hidden;

            .factory-slider{
                position: relative;
                width: 100%;
                height: 550px;

                .slider-image{
                    position: absolute;
                    inset: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 12px;
                }

                .slider-nav{
                    position: absolute;
                    inset: 0;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    padding: 0 24px;
                    pointer-events: none;
                }

                .slider-btn{
                    pointer-events: all;
                    background-color: #fbab18;
                    color: #000;
                    border: none;
                    width: 44px;
                    height: 44px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                    transition: background 0.3s ease, transform 0.2s ease;

                    i{
                        font-size: 22px;
                    }
                }

                .slider-btn:hover{
                    background-color: #fdde8a;
                    transform: scale(1.05);
                }
            }
        }
    }
}

@media screen and (max-width:768px) {
    .factoryFacility{
        padding: 0 10px;


        .factoryFacilityContainer{
            margin: 50px 0;

            h4{
                margin-bottom: 10px;
            }

            h2{
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 15px;
            }

            p{
                font-size: 1rem;
            }
        }
    }

     .factory-slider {
      height: 260px;
    }

    .slider-btn {
      width: 38px;
      height: 38px;
    }

    .slider-btn i {
      font-size: 18px;
    }
}
/* sahara factory */

/* project showcase */
.projects_Showcase{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .projectShowcaseContainer{
        width: 100%;
        height: auto;
        max-width: 1400px;
        margin: 80px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        h4{
            margin-bottom: 15px;
        }

        h2{
            font-size: 2.5rem;
            line-height: 3rem;
            margin-bottom: 15px;
            text-align: center;
            max-width: 900px;
        }

        > p{
            font-size: 1.1rem;
            max-width: 800px;
            text-align: center;
        }

        .Sahara_projectCards{
            width: 100%;
            height: auto;
            margin: 40px 0;
            display: flex;
            align-items: start;
            /* justify-content: space-between; */
            justify-content: start;
            flex-wrap: wrap;
            /* gap: 20px; */
            column-gap: 20px;
            row-gap: 20px;
            /* gap: 30px 40px; */

            .sahara_Project_Card{
                width: 32%;
                height: auto;
                /* padding: 20px; */
                border-radius: 15px;
                box-shadow: 5px 5px 30px #00000015;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                /* background-image: url(/assets/luxury\ residential\ complex.jpg); */
                /* background-position: top; */
                background-size: cover;
                background-repeat: no-repeat;
                
                .card_overlay{
                    width: 100%;
                    height: auto;
                    min-height: 600px;
                    background: linear-gradient(0deg, #000, #00000000);
                    display: flex;
                    align-items: start;
                    justify-content: end;
                    flex-direction: column;
                    position: relative;


                    .tag{
                        position: absolute;
                        top: 20px;
                        right: 20px;
                        border-radius: 25px;
                        /* background-color: #06923E; */
                        background-color: #DDF6D2;
                        border: 1px solid #06923E;
                        color: #06923E;
                        font-weight: 400;
                        padding: 6px 12px;
                        font-size: 14px;
                    }


                    .projectDetails{
                        width: 100%;
                        height: auto;
                        padding: 20px;
                        /* background: none; */
                        /* background: #ffffff50; */
                        /* backdrop-filter: blur(10px); */
                        
                        h3{
                            font-size: 1.5rem;
                            color: #f9f9f9;
                            margin-bottom: 5px;
                            background-color: none;
                        }

                        small{
                            background-color: #fdde8a;
                            color: #000;
                            display: inline-block;
                            margin-right: 10px;
                            border-radius: 5px;
                            padding: 2px 8px;
                            font-weight: 400;
                        }
                    }
                }
            }

            .sahara_Project_Card:nth-child(1){
                background-image: url(/assets/hotel1.jpeg);
                background-position: bottom center;
            }

            .sahara_Project_Card:nth-child(2){
                background-image: url(/assets/siddhi\ hydro.jpeg);
                background-position: center;
            }

            .sahara_Project_Card:nth-child(3){
                background-image: url(/assets/hotelwithcasino.jpeg);
                background-position: center;
            }

            .sahara_Project_Card:nth-child(4){
                background-image: url(/assets/simbuwaremithydro.jpeg);
            }

            .sahara_Project_Card:nth-child(5){
                background-image: url(/assets/5starhotel.jpeg);
            }
        }
    }
}

@media screen and (max-width:768px){
    body{
        position: relative;
    }

    .projects_Showcase{
        padding: 0 10px;

        .projectShowcaseContainer{
            /* margin: 20px 0; */
            margin-top: 30px;
            margin: auto;
            margin-bottom: 50px;

            h4{
                margin-bottom: 10px;
            }

            h2{
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 10px;
            }

            p{
                font-size: 1rem;
            }

            .Sahara_projectCards{
                flex-wrap: wrap;
                flex-direction: column;

                .sahara_Project_Card{
                    width: 100%;
                    position: sticky;
                    top: 50px;
                }
            }

        }
    }
}
/* project showcase */