*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'poppins' sans-serif;
}

.class2 {
    display: flex;
    position: relative;
    height: 60px;
    width: 70px;
    margin-top: 20px;
    margin-left: .10px;
}

.navbar {
    background: rgb(175 114 51);
    font-family: calibri;
    padding-right: 15px;
    padding-left: 15px;
}

.class1{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bars li{
    list-style: none;
    display: inline-block;
}

.bars li a{
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: bold;
    margin-right: 25px;
}
.bars li a:hover{
    color: rgb(193, 147, 101);
}
.tittle1{
    font-size: 37px;
    background-image: url(Image.Index/desktop-wallpaper-wiki-indian-flag-background.jpg);
    background-size: contain;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




.hero{
    background-color: #f8f8f8;
    overflow: hidden;
}
.heading h1{
    color: #ff6347;
    font-size: 55px;
    text-align: center;
    margin-top: 35px;
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 65px auto;
}
.hero-content{
    flex: 1;
    width: 600px;
    margin: 0px 25px;
    animation: fadeInUp 2s ease;
}
.hero-content p{
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #666;

}
.hero-content h2{
    font-size: 38px;
    margin-bottom: 20px;
    color: #333;
}
.hero-content button{
    display: inline-block;
    background-color: #ff4500;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}
.hero-content button:hover{
    background-color: #ff6347;
    transform: scale(1.1);

}
.hero-image{
    flex: 1;
    width: 600px;
    margin: auto;
    animation: fadeInRight 2s ease;
}
img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}
@media screen and (max-width: 768px){
    .heading h1{
        font-size: 45px;
        margin-top: 30px;
    }
    .hero{
        margin: 0px;
    }
    .container{
        width: 100px;
        flex-direction: column;
        margin: 0px;
        padding: 0px 40px;
    }
    .hero-content{
        width: 100%;
        margin: 35px 0px;
    }
    .hero-content h2{
        font-size: 30px;
    }
    .hero-content p{
        font-size: 18px;
        margin-bottom: 20px;
    }
    .hero-content button{
        font-size: 16px;
        padding: 8px 16px;
    }
    .hero-image{
        width: 100%;
    }
}
@keyframes fadeInUp{
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100%{
        opacity: 0;
        transform: translateY(0px);
    }
}
@keyframes fadeInRight{
    0%{
        opacity: 0;
        transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
/* footer */

footer{
    background-color: #111;

}
.footerContainer{
    width: 100%;
    padding: 70px 30px 20px 0px;
}
.SocialIcon{
    display: flex;
    justify-content: center;
}
.SocialIcon a{
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}
.SocialIcon a i{
    font-size: 2em;
    color: black;
    opacity: 0.9;
}
.SocialIcon a:hover i{
    color: white;
    transition: 0.5s;
}
.footerNav{
    margin: 30px 0;
}
.footerNav ul{
    display: flex;
    justify-content: center;
}
.footerNav ul li a{
    color: white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;
}
.footerNav ul li a:hover{
    opacity: 1;
}
.footerBottom{
    background-color: #000;
    padding: 20px;
    text-align: center;
}
.footerBottom p{
    color: white;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}
.contact{
    display: grid;
    align-items: center;
    justify-content: center;

}
.contact-content{
    color: white;
    margin-top: 25px;
}
.managed{
    color: white;
    margin-top: 20px;
}
.contact-number{
   color: rgb(235, 202, 158);
}
.contact-number:hover{
    color: rgb(198, 150, 150);
}
.mail{
    color: rgb(235, 202, 158);
}
.mail:hover{
    color: rgb(198, 150, 150);
}