body{
    font-family: arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
    color: #333;
}

header{
    background-color: #ff9933;
    color: white;
    padding: 15px 0;
    text-align: center;
}

nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li{
    display: inline-block;
    margin: 0 10px;
}
   
nav ul li a{
    color: white;
    text-decoration: none;
    font-weight: bold
}

nav ul li a .active{
    text-decoration: underline;
}

.hero{
    background: url(stock-vector-india-skyline-design-that-says-india-vector-illustration-2239709267.jpg) no-repeat center/cover; 
    color: black;
    text-align: center;
    padding: 100px 20px;
}

.content{
    padding: 20px;
    text-align: center;
}

.content img{
    width: 70%;
    max-width: 500px;
    border-radius: 8px;
    margin-top: 10px;
}

.container{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.card{
    padding: 15px;
    border-radius: 15px;
    width: 300px;
}

.card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
.card h3{
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}
.card p{
    font-size: 14px;
    color: #444;
}
form{
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

form label{
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

form input, form textarea{
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button{
    background-color: #ff9933;
    color: beige;
    border: none;
    padding: 10px 15px;
    margin-top: 15px;
    border-radius: 5px;
    cursor: pointer;
}

footer{
    background-color: #138808;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px ;
}

.nav-links{
    display: flex;
    list-style-type: none;
    justify-content:center;
    align-items: center;
    gap: 15px;
}
.nav-links li a{
    text-decoration: underline;
    color: white;
}

.tradition{
    position: relative;
    background-size: contain;
    background-position: center top;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.overlay{
    background-color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
}

.overlay p{
    font-size: 1rem;
    line-height: 1.5;
}
.overlay h2{
    font-size: 2rem;
    margin-bottom: 1rem;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

main img{
    display: block;
    margin: 0 auto;
    max-width: 80%;
    height: auto;
    border-radius: 10px;
}

#architecture, #foodandlifestyle {
    margin: 20px 20px;
}

.card-container{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
}

.card{
    background-color: #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 22%;
    text-align: center;
    padding: 18px;
    transition: transform 0.3s;
    text-decoration: none;
    color: black;
}
.card:hover{
    transform: scale(1);
}

.card img{
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.card h3{
    font-size: 1.2rem;
    margin-top: 10px;
}

.card p{
    font-size: 1rem;
    margin-top: 10px;
    color: #444;
}