body{
    background-color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;

}
header{
 top: 0;
     /* left: 0; */
  height: 120px;
  width: 100%;
  position: fixed;
  z-index: 1;
  background-color: #ffffff;
}
.logo-container img {
  height: 150px;
  margin-right: 15px;
}
.logo-container h1 {
  font-size: 70px;
  color: #2f3fa0;
  margin: 0;
}
.india{
    margin-top: 160px;
}
 .title-box {
    background-color: #dd5704;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    box-shadow: #de5810;
    padding:12px 60px;
    border-radius: 3px;
    display: inline-block;
}
.india p{
    font-size: 22px;
    color:black;
    font-weight:600;
    
}
.big{
    width: 80%;
    height:50px;
    font-size:50px;
    color:blue;
    
}
.door-gallery{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}
p{
   margin-left:300px;
}
.marquee-container {
    width: 100%;
    height: 80px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b); /* gradient colors */
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* SCROLLING TEXT */
.marquee {
    display: inline-block;
    white-space: nowrap;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    animation: scrollText 15s linear infinite;
    padding-left: 100%; /* start outside left */
}

/* ANIMATION */
@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}