
@font-face {
    font-family: 'god';
    src: url('fonts/knight.ttf') format('woff2');
  }
  @font-face {
    font-family: 'MyCustomFont';
    src: url('fonts/knight.ttf') format('woff2');
        
    font-weight: normal;  /* Optional */
    font-style: normal;   /* Optional */
  }

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: poppins,sans-serif;
    text-decoration: none;
}
body{
    overflow: hidden; /* This will disable both X and Y scrollbars */
    height: 100%; /* Ensure the body takes up the full height of the viewport */
    margin: 0; /* Remove default margin */

}

.goldman-regular {
    font-family: "Goldman", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .goldman-bold {
    font-family: "Goldman", serif;
    font-weight: 700;
    font-style: normal;
  }

.hero-header{
    width:100%;
    height: 100%;
    min-height: 100vh;background-image: url('img/back.jpg');
    z-index: 100;
    background-size: cover; /* Make the background image cover the entire page */
    background-position: center center; /* Position the background image in the center */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    margin: 0;
    height: 100vh; /* Full viewport height */ 
}
.wrapper{
    width:1280px;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}
header{
    padding: 40px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
/* Add image at the top right corner */
.top-right-image {
    position: absolute; /* Position the image absolutely */
    top: 10px; /* Adjust the distance from the top */
    right: 10px; /* Adjust the distance from the right */
    width: 100px; /* Set a fixed width */
    height: auto; /* Maintain aspect ratio */
}
.logo i{
    
  
        width: 300px;
        height: 300px;
        background-image: url('images/model1.jpg'); /* Replace with your image URL */
        background-size: cover; /* Ensure the image covers the whole div */
        background-position: center; /* Center the background image */
        background-repeat: no-repeat; /* Don't repeat the image */
        border: 2px solid #ccc;
   
    height: 45px;
    width:45px;
    background-color: #007ced;
    border-radius: 50%;
    color:#fff;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 10px;
    margin-right: 0px;
    cursor: pointer;
    text-align: center;
    
}
.logo .logo-text{
    font-family: "Iceberg", serif;
    font-size: 24px;
    font-weight: 500;
    color:#fff;
}
nav .togglebtn{
    width: 35px;
    height: 35px;
    position: absolute;
    top:45px;
    right: 3%;
    z-index: 5;
    cursor: pointer;
    display: none;
}
nav .togglebtn span{
    display: block;
    background-color: #007ced;
    margin: 5px 0px;
    width:100%;
    height:3px;
    transition: 0.3s;
    transition-property:  transform, opacity;

}
nav .navlinks{
    font-family: 'godofwar', sans-serif; /* Custom font from Google Fonts */
    list-style-type: none;
}
nav .navlinks li{
    display: inline-block;
}
nav .navlinks li a{
     color:#e5e5e5;
     margin-right: 2.5rem;
}
.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top:4rem;
}
.container .hero-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 15px solid #454141;
    box-shadow: 5px 7px 25px rgba(0, 0, 0, 0.5);
    animation: fadeInScale 2s ease-out; /* Apply fade-in and scale animation */
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.5); /* Start slightly smaller */
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8); /* Start slightly smaller */
    }
    

    100% {
        opacity: 1;
        transform: scale(1); /* End at normal size */
    }
}

@media(min-width:1080px)
{
    .container .hero-pic{
        width: 400px;
        height: 400px;
        border-radius: 50%;
        overflow: hidden;
        border: 15px solid #444;
        box-shadow: 5px 7px 25px rgba(0,0,0,0.5);
    }
}
.hero-pic img{
    height: 100%;
    width:100%;
    transition: 0.5s;
}
.hero-pic img:hover{
    transform: scale(1.2);
}
.hero-text{
    
    max-width: 500px;
    display: flex;
    flex-direction: column;
}
.hero-text h5{
    
    color:#e5e5e5;
    font-size: 14px;
}
.hero-text h5 span{
    color:#007ced;
    font-size: 16px;
}
.hero-text h1{
    color: #007ced;
    font-size: 3rem;
}
.hero-text p{
    font-family:'godofwar', Times, serif;
    color:#e5e5e5;

}
.btn-group{
    margin:45px 0;
}
.btn-group .btn {
    border-color: #d5d5d5;
    color: #fff;
    background-color: #333;
    padding: 12px 25px;
    margin: 5px 0px;
    margin-right: 7px;
    border-radius: 30px;
    border: 2px solid #e5e5e5;
    box-shadow: 0 10px 10px -8px rgb(0 0 0 / 78%);
    animation: colorFade 3s infinite; /* Color fade animation */
}

@keyframes colorFade {
    0% {
        background-color: #333;
        border-color: #e5e5e5;
    }
    50% {
        background-color: #007ced; /* Change background to blue */
        border-color: #007ced; /* Change border color to blue */
    }
    100% {
        background-color: #333;
        border-color: #e5e5e5;
    }
}


.btn.active{
    border-color: #007ced;
}
.hero-text .social i{
    color: #e5e5e5;
    
    font-size: 25px;
  
    margin-right: 15px;
    
    transition: 0.5s;
}
@media(min-width:1080px)
{
    .hero-text .social i{
        color: #e5e5e5;
        font-size: 35px;
      
        margin-right: 15px;
        
        transition: 0.5s;
    }
}
.hero-text .social i:hover{
    color:#007ced;
    transform: rotate(360deg);
}
/* Respnosiv design & displaying navbar for small screen */
@media(max-width:930px)
{
    nav .togglebtn{
        display: initial;
    }
    /* for toggle button**/
    .click {
        top:45px;
    }
    .click span{
        position: absolute;
        margin-top:12px
    }
    .click span:first-child{
        transform: rotate(-40deg);
    }
    .click span:nth-child(2)
    {
        opacity: 0;
        margin:0;
    }
    .click span:last-child{
        transform: rotate(45deg);
        top:0;
    }
    nav .navlinks {
        font-size: 45px;
        position: absolute;
        top: 110px;
        right: -100%;
        bottom: 0;
        width: 60%;
        height: 55vh;
        background-color: rgba(46, 55, 148, 0.5); /* Semi-transparent background color */
        backdrop-filter: blur(10px); /* Apply blur to the background */
        z-index: 3;
        box-shadow: 5px 13px 30px rgba(0, 0, 0, 0.1);
        transition: 0.5s;
        padding: 25px 0px;
        border-radius: 15px; /* Optional: Add rounded corners for a softer look */
    }
    
    nav .navlinks li{
        display: block;
    }
    nav .navlinks li a{
        font-family: MyCustomFont;
        font-size: 25px;
        display: block;
        margin-bottom: 15px;
        text-align: center;
    }
    nav .navlinks.open{
        right:0;
    }
}
@media(max-width:768px)
{
    .container{
        
        flex-direction: column;
        padding-top:2rem
    }
    .hero-text{
        padding:40px 0px;
    }
}