*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar{
    display: flex;
    justify-content: center;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}
.nav-container{
    
    max-width: 1200px;
    width: 100%;
    /* height: 84px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#fff;
    padding: 20px;
    
}
.logo_img{
    max-height: 40px;
}
.menu{
 display: flex;
 align-items: center;
 /* background-color: red; */
    
}
.navbar-links{
    display: flex;
    list-style-type: none;
    margin-right: 20px;
    /* background-color: aqua; */
}
.navbar-links li{
    /* background-color: red; */
    margin: 0 15px;
}
.navbar-links a{
    text-decoration: none;
    font-family: sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: bold;
}
.apply-button{
    padding: 10px 20px;
    background-color: #007bff;
    border: none;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.apply-button:hover{
  background-color: #0056b3;

}
/* Hamburger Menu !! */
.Menu-Toogle{
    display: none;

}
.Hamburger{
    display: none;
    padding: 10px;
    
}
.Hamburger span{
    width: 25px;
    height: 3px;
    background-color: #000;
    display: block;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}
/* Responsive Styles !!! */
@media screen and (max-width:768px) {
    .nav-container{
        flex-wrap: wrap;
    }

    .menu{
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 20px;
        
    }
    .Menu-Toogle:checked ~ .menu{
        display: flex;
    }
    .Hamburger{
        display: block;
    }
    .navbar-links{
        flex-direction: column;
        width: 100%;
        margin-right: 0;
    }
    .navbar-links li{
        text-align: center;
        margin: 15px 0;
    }
    .apply-button{
        margin: 15px 0;
    }

    /* Hamburger Transforamtion */
    .Menu-Toogle:checked ~ .Hamburger span:nth-child(1){
        transform: rotate(45deg) translate(5px, 5px);
    }
    .Menu-Toogle:checked ~ .Hamburger span:nth-child(2){
        opacity: 0;
    }
    .Menu-Toogle:checked ~ .Hamburger span:nth-child(3){
        transform: rotate(-45deg) translate(7px, -6px);
    }

}

@media screen and (max-width:480px) {
    .logo_img{
        max-height: 30px;
    }
    .navbar-links a{
        font-size: 14px;
    }
    .apply-button{
        font-size: 14px;
        padding: 8px 16px;
    }
}


.Home{
    /* height: 561px; */
    margin: 40px 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    /* background-color: lightcoral; */
}
.Home-container{
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: sans-serif;
    margin: 0 auto;
    
    
    /* background-color: lightcoral; */
}
.left-section{
    max-width: 600px;
    padding-right: 40px;

}
.left-section h3{
    font-size: 1.8rem;
    color: #333;
}
.left-section h1{
    font-size: 3rem;
    color: #007bff;
    margin: 10px 0;
}
.sub-heading{
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 20px;
}
.brand-image{
    width: 100%;
    margin: 10px 0;
}
.left-section .brand-description{
    font-size: 1rem;
    color: #444;
    font-weight: 100;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    /* background-color: red; */
}
.left-apply-button{
    padding: 12px 30px;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    border: none;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}




.right-section{
    display: flex;
    justify-content: center;
    align-items: center;

}
.right-video{
    width: 100%;
    height: auto;
    max-width: 500px;
    
    
}
/* Responsive Styles */
@media screen and (max-width:1024px) {
    .Home-container{
        align-items: center;
        flex-direction: column;

    }
    .left-section{
        text-align: center;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 50px;
    }
    .right-section{
        width: 100%;
    }

}

@media screen and (max-width:768px) {
    .left-section h1{
        font-size: 2.5rem;
    }
    .left-section h3{
        font-size: 1.5rem;
    }
    .sub-heading{
        font-size: 1.1rem;
    }
    .left-section .brand-description{
        font-size: 0.9rem;
    }
    
}

@media screen and (max-width:480px) {
    .left-section h1{
        font-size: 2rem;
    }
    .left-section h3{
        font-size: 1.2rem;
    }
    .sub-heading{
        font-size: 1rem;
    }
    .left-section .brand-description{
        font-size: 0.8rem;
    }
    .left-apply-button{
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}



.fees-Section{
    background-color: #000;
    height: 50vh;
    color:#fff;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}
.fess-Title{
    font-size: 3rem;
    font-weight: 400;
    background-image:linear-gradient(92deg, #217ee6 3%, #3187d5 44%, #69a798 70%, #fcf2a6 95%);
    -webkit-background-clip: text;
    color: transparent;
}
.fees-List .fee-item{
    font-size: 2.5rem;
    color: #fff;
    font-weight: 300;
    margin: 10px 0;
    
}
.powerful-section{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    margin: 40px 0;
    padding: 0 20px;
    font-family: Arial, sans-serif;
}
.powerful-Container{
    /* background-color:#69a798; */
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 30px;
}
.video-Container{
    max-width: 500px;
    
}
.promo-video{
    width: 100%;
    max-width: 500px;
}
.text-Container{
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* background-color: #444; */
}

.Title{
    font-size: 60px;
    font-weight: lighter;
    color: black;
    line-height: 1;
}
.text-Container .Description{
    font-size: 24px;
    color: #666;
    max-width: 450px;
    text-align: right;
    line-height: 1.5;
    margin-top: 20px;
}
/* Responsive Styles */
@media screen and (max-width:1024px) {
    .powerful-Container{
        flex-direction: column;
        align-items: center;
    }
    .video-Container, .text-Container{
        max-width: 100%;
    }
    .text-Container{
        align-items: center;
    }
    .text-Container .Description{
        text-align: center;
        max-width: 100%;    
    }
}
@media screen and (max-width:768px) {
    .Title{
        font-size: 48px;
    }
    .text-Container .Description{
        font-size: 20px;
    }
}
@media screen and (max-width:480px) {
    .Title{
        font-size: 36px;
    }
    .text-Container .Description{
        font-size: 18px;
    }
    .powerful-section{
        margin: 20px 0;
    }
}

.Phone-Image{
    max-width: 100%;
    margin-bottom: 20px;
    height: auto;
}
/* Metal Card Section */
.Metal-Section{
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
    padding: 50px 0;
}
.Metal-Container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* background-color: #69a798; */
    flex-wrap: wrap;
}
.Text-Image-Container{
    max-width: 500px;
    flex: 1;
}
.Metal-Card-Image{
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.Metal-Title{
    font-size: 60px;
    font-weight: lighter;
    color: black;
    margin-bottom: 20px;
}
.Metal-Description{
    font-size: 24px;
    line-height: 1.6;
    font-weight: lighter;
    color: #666;
}
/* Responsive Styles */
@media screen and (max-width:1024px) {
    .Metal-Container{
        flex-direction: column;
        align-items: center;
    }
    .Text-Image-Container, .video-Container{
        max-width: 100%;
    }
}

@media screen and (max-width:768px) {
    .Metal-Section{
        padding: 30px 0;
    }
    .Metal-Title{
        font-size: 48px;
    }
    .Metal-Description{
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .Metal-Title{
        font-size: 36px;
    }
    .Metal-Description{
        font-size: 18px;
    }
    .Metal-Container{
        gap: 20px;
    }
}


/* Reward Section */
.Blog{
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 50px 0;
}
.Blog-Container{
    max-width: 1200px;
    padding: 0 20px;
    margin: 0  auto;
}
.Blog-Title{
    font-size: 18px;
    color: #7d7c7c;
    font-weight: lighter;
}
.Blog-Title h1{
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;

}
.Explore-Latest p{
    font-size: 20px;
    color: #666;
    text-align: left;
    margin-bottom: 30px;

}
.Blog-Cards{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.Cards{
    max-width: 350px;
    width: 100%;
    background-color: white;
    text-align: left;
    cursor: pointer;
}
.Cards-Image{
    width: 100%;
    height: auto;
    border-radius: 10px;

}
.Card-Content{
    padding: 20px;
}
.Blog-Date{
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;

}
.Blog-title{
    font-size: 18px;
    color: #7d7c7c;

}
/* Resposive Styles */
@media screen and (max-width:1200px) {
    .Blog-Cards{
        justify-content: center;
    }
    .Cards{
        max-width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media screen and (max-width:768px) {
    .Cards{
        max-width: 100%;
    }
}

@media screen and (max-width:480px) {
    .Card-Content{
        padding: 15px;
    }
    .Blog-title{
        font-size: 16px;
    }

}


/* Footer Section */
.Footer{
    background-color: #181818;
    font-family: Arial, sans-serif;
    padding: 40px 20px;
    color: #ffffff;
}
.Footer-Container{
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;

}
.Footer-Content{
    text-align: center;
    margin-bottom: 40px;
}
.Footer-One{
    font-size: 36px;
    font-weight: bold;
}
.crafted-in-india{
    font-size: 14px;
    background-color: #000000;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
}
.all-ears{
    font-size: 28px;
    color: #3b82f6;
    margin-bottom: 15px;
}
.Footer-Description{
    font-size: 16px;
    max-width: 600px;
    line-height: 1.5;
}
.Footer-Socials{
    margin-top: 30px;
    
}
.Footer-Socials h3{
    margin-bottom: 15px;
}
.Social-Icons{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.Social_Icon{
    font-size: 30px;
    color: #ffffff;
}
.Footer-Links{
    /* background-color: green; */
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;

}
.Fotter-Coloumn h4{
    font-size: 18px;
    margin-bottom: 20px;
    color: #3b82f6;
}
.Fotter-Coloumn a{
    display: block;
    color: #9ca3af;
    text-decoration: none;
    line-height: 1.4;
    font-size: 14px;
    margin-bottom: 10px;    
}
.Footer-Copyright{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
}
.Footer-Copyright img{
    width: 50%;
    padding: 10px;
} 
/* Responsive styles */
@media screen and (max-width:768px) {
    .Footer-Links{
        flex-direction: column;
    }
    .Fotter-Coloumn{
        flex: 1 1 100%;
    }
    .all-ears{
        font-size: 24px;
    }
    .Footer-Description{
        font-size: 14px;
    }
    .Social-Icons i{
        font-size: 24px;
    }
    .Footer-Copyright p{
        font-size: 14px;
    }
    .Footer-Copyright img{
        width: 100%;
        max-width: 300px;
    }
}
@media screen and (max-width:480px) {
    .Footer{
        padding: 30px 15px;
    }
    .Footer-One{
        font-size: 28px;
    }
    .all-ears{
        font-size: 20px;
    }
    .crafted-in-india{
        font-size: 12px;
        padding: 6px 12px;
    }
    .Footer-Socials h3{
        font-size: 16px;
    }
    .Social-Icons i{
        font-size: 20px;
    }
    .Fotter-Coloumn h4{
        font-size: 16px;
    }
    .Fotter-Coloumn a{
        font-size: 12px;
    }
}