/* GOOGLE FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden; /* prevent horizontal scrollbar */
}

/* MARQUEE TEXT */
.marquee {
    position: relative;       /* required for animation */
    white-space: nowrap;      /* text in single line */
    font-size: 32px;
    gap: 50px; /* space between repeated texts */
    font-weight: 700;
    color: #dd5704;
    animation: moveText 10s linear infinite;
}

/* LEFT TO RIGHT ANIMATION */
@keyframes moveText {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* SECTION INDIA */
.india {
    margin: 40px auto;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* DOOR GALLERY */
.door-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.door-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* RESPONSIVE DESIGN */
@media (max-width: 480px) {
    .marquee {
        font-size: 22px;
    }
    .india {
        gap: 20px;
    }
}


header h1 {
  margin: 0;
  font-size: 2em;
}

header p {
  margin-top: 0.5em;
  font-size: 1.1em;
}

main {
  max-width: 900px;
  margin: auto;
  padding: 2em;
}

h2 {
  color: #005a9c;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.3em;
}

ul {
  list-style-type: square;
  padding-left: 1.5em;
  line-height: 1.6;
}

ul li {
  margin-bottom: 0.8em;
}

footer {
  background-color: #005a9c;
  color: white;
  text-align: center;
  padding: 1em;
  font-size: 0.9em;
}