.hero-section {
    background-image: url('../pop in image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 150px;
    position: relative;
    text-align: center;
    color: white;
    
}

/* Bottom border */
.hero-section::before {
    content: "";
    display:block;
    width: 100%;
    height:0%;; /* Adjust thickness */
    background-color: orange; /* Adjust color */
    position:fixed;
    bottom:0%;
    left: 0;
}
/* Hero Section */
.hero-section {
    height: 100vh; /* Full screen height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 2em;
}

/* Main content section */
.content {
    background: white;
    padding: 50px 10%;
    font-size: 18px;
    color: black;
    line-height: 1.6;
}
.hero-section>.top-heading{
    background-color: rgb(196, 135, 22);
    font-size: medium;
    color: aliceblue;
    width: 290px;
    border-radius: 2px;
    
    
}
.feature-section{
    height: 400px;
    background-color: rgb(212, 143, 15);
    border-top: 10px solid white;
    color: rgb(4, 4, 71);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Ubuntu Condensed",sans-serif;
    box-shadow: inset 0px -26px 79px -8px rgba(0, 0, 0, 0.58);
    
}
.feature-section>.colums-wraper{
    width: 1000px;
    display: flex;
    justify-content: space-between;
}
.feature-section>.colums-wraper>.colum{
    padding: 20px;
    margin: 42px;
    text-align: center;
    border-radius: 10px;
    transition: 1s;
}
   .feature-section .colum:hover{
        border-bottom: 5px solid;
         color: rgb(3, 3, 53);
         
    }
    .feature-section>.colums-wraper>.colum :nth-child(1){
        font-size: 2em;

    }

.feature-section>.colums-wraper>.colum :nth-child(2){
    font-size: 1.5em;
font-weight: 900;
height: 50px;
transition: 1s;
}

.feature-section>.colums-wraper>.colum :nth-child(3){
    letter-spacing: 2px;

}
