@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed: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');
*{
 margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	font-family: "Barlow Condensed", sans-serif;
}

body{
    background-color: #1e1e1e!important;
    position: relative!important;
    z-index: 1;
}


body::before{
    content:'';
    position: absolute;
    width: 100%;
    height:100%;
    background-color: rgb(59, 60, 70);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    clip-path: circle(0.0% at 100% 50%);
    z-index: 99;
    animation: Anim 2s forwards linear;
} 


@keyframes Anim {
    0%{
        clip-path: circle(10.0% at 100% 50%);
    }
    40%{
        clip-path: circle(80.0% at 100% 50%);
    }
    60%{
        clip-path: circle(30.0% at 100% 50%);
    }  
    90%{
        clip-path: circle(130.0% at 100% 50%);
        opacity: 1;
        z-index: 99;
    }  
    100%{
        clip-path: circle(200% at 100% 50%);
        opacity: 0;
        z-index: -1;
    }

}

@keyframes Anim_rotate {
    100%{
        transform: rotate(360deg);
    }
}

#custom-NavLogo{
    display: none;
    margin-bottom: 50px;
}

#custom-NavLogo a{
    font-size: 25px !important;

}

#custom-main{
    width: 100%;
    max-height: 100vh;
    overflow: hidden;
    background: url(./image/slider-bg.jpg);
    z-index: 1;
}

nav{
    height: 90px!important;
    width: 100%!important;
    display: flex!important;
    justify-content: space-between!important;
    align-items: center!important;
    padding: 8px 12%!important;
    position: relative!important;
    border-bottom: 0.1px solid rgba(131, 131, 133, 0.4);
}

@keyframes Anim_reveal {
    100%{
        transform: translate(0px);
        opacity: 1;
    }
}


.custom-logo{
    min-width:130px;
    transform: translateX(-200px);
    opacity: 0;
    animation:Anim_reveal 1s 2s forwards linear ;
}


.custom-logo a{
   font-size: 28px;
   font-weight: 800;
   color: #fff;
}

.custom-logo a span{
    color: #e86943;
}

#custom-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(-200px);
    opacity: 0;
    animation:Anim_reveal 1.2s 2.2s forwards linear ;
}

#custom-menu li a{
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    transition: all ease 0.5s;
}

#custom-menu li a:hover{
    color: #e86943;
}

 #nav-btn{
    width: 160px;
    height: 44px;
}


.custom-bars{
    border: 1px solid #fff;
    color: #fff;
    padding: 10px;
    display: none;
}
.custom-bars i{
    font-size: 25px;
}

#custom-close{
    padding:8px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50px;
    color: #000000;
    background-color: #F17853;
    display: none;
    position: absolute;
    top: 15px;
    right: 30px;
}

  /* HERO SECTION */
.hero{
    width: 100%;
    min-height: 95vh ;
    display: flex;
    align-items: end;
    justify-content: end;
    gap: 50px;
    padding:0px 12%;
}

.hero-content{
   position: absolute;
   top: 35%;
   left: 12%;
   display: flex;
   flex-direction: column;
   gap: 30px;
   align-items: start;
}

h1{
    font-size: 60px;
    color: #fff;
    font-weight: 600;
    transform: translateX(-80px);
    opacity: 0;
    animation:Anim_reveal 1s 2.6s forwards linear ;
}

#heading{
    font-size: 25px;
    letter-spacing: 1;
    font-weight: 300;
    color: #e86943;
    transform: translateX(-50px);
    opacity: 0;
    animation: Anim_reveal 1s 2.4s forwards linear ;
}
#boy{
    margin-left: 40px;
}
.page{
    width: 68%;
    display: flex;
    justify-content: end;
    align-items: end;
    position: relative;
    transform: translateX(80px);
    opacity: 0;
    animation:Anim_reveal 1s 3s forwards linear ;
}

.page img{
    width: 100%;
    z-index: 9;

}

.hero-content p{
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
}

#text{
    letter-spacing: 1;
    color: #e86943;
    font-size: 25px;
    font-weight: 500;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


@media(max-width:1600px){
    .hero{
        padding: 0px 6%;
    }

    h1 {
        font-size: 55px;
    }
}

@media(max-width:1400px){
    h1 {
        font-size: 45px;
    }
}

@media(max-width:1200px){
    nav{
        padding: 0% 10%;
    }

    .hero-content {
        position: absolute;
        top: 26%;
    }
}

@media(max-width:900px){
    #custom-main{
        max-height: unset;
    }
    .custom-bars{
        display: block;
    }
    #custom-NavLogo{
        display: block;
    }
    ul{
        position: fixed;
        flex-direction: column;
        top: 0%;
        left: -100%;
        padding: 50px;
        background-color: #000;
        width: 40%;
        border-radius: 10px;
        transition: all ease 0.5s;
        z-index: 999;
        height: 100vh;
    }

    ul li{
        margin: 12px 0;
    }
   
    #custom-menu{
        align-items: flex-start;
        justify-content: flex-start;

    }
    .active{
        left: 0%;
    }
    #custom-close{
        display: block;
    }

    h2{
        color: #fff;
        font-size: 25px;
        letter-spacing: 1px;
        font-weight: 500;
    }

    .hero{
        display: flex;
        flex-direction: column;
    }
    .hero-content{
        width: 100%;
        align-items: flex-start;
        position: relative;
        top: 0;
        left: 0;
        margin-top: 50px;
    }
  
    .page{
        width: 100%;
        margin-top: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

   
}

@media(max-width:768px){
    button {
        height: 150px;
        width: 150px;
    }
}

@media(max-width:500px){
   
    .page img{
        width: 450px;
    }

    h1 {
        font-size: 40px;
    }

    ul{
        width: 60%;
    }

    #custom-NavLogo{
        
        margin-top: 20px;
    }
    #custom-NavLogo a{
        font-size: 15px;
    }

}
.hero-content .input{
	color: #222;
	background-color: #e86943;
}

      .button {
            display: inline-block;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: bold;
            color: #e86943;
            background-color: none; /* No background */
            border: 2px solid #e86943;
            border-radius: 5px;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            transition: color 0.3s ease, border-color 0.3s ease;
        }


        .button:hover {
            color: #F17853;
            border-color: #F17853;
        }

 .box {
            position: relative;
            margin-bottom: 20px;
            overflow: hidden;
            cursor: pointer;
        }
        .box img {
            width: 100%;
            transition: transform 0.3s ease-in-out;
        }
        .box:hover img {
            transform: scale(1.1);
        }

  .custom-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #e86943;

        }

        .custom-subtitle {
            font-size: 1rem;
            color: #fff;
            margin-top: 0px;
        }

        .title-container {
            margin-top: 50px;
            text-align: center;
				  margin-bottom: 20px;
        }