/* body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", 
  Roboto, "Helvetica Neue", sans-serif;
} */

/* body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", 
  Roboto, sans-serif;
} */

body {
  font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

/* from first index file starts here */
/* 
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
body {
  font-family: 'Montserrat', sans-serif;
} */
/* from first index file ends here */


/* body {font-family:sans-serif;} */

body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #f9f9f9;
  color: #333;
}

.navbar {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #ffd54f;
}

.logo {
  width: 50px;
  margin-right: 15px;
}

.title {
  font-size: 1.6rem;
  color: #5d4037;
  font-weight: bold;
}

.hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.subHeading {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.text {
  font-size: 1.2rem;
  margin: 10px 0;
}

.callText a {
  color: #fff;
}

.button {
  background: #8e24aa;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  transition: background .3s;
}

.button:hover {
  background: #6a1b9a;
}

.about {
  padding: 50px 20px;
  text-align: center;
  background: #fff8e1;
}

.about h2 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.about p {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: #fdf3e7;
}

.gallery img {
  width: 30%;
  border-radius: 10px;
  transition: transform .3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.contact {
  padding: 40px 20px;
  background: #e8f5e9;
  text-align: center;
}

.contact h2 {
  margin-bottom: 15px;
}

.contact a {
  color: #388e3c;
  text-decoration: none;
  font-weight: bold;
}

/* new code */
.contact .section1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
}

.contact .section1 img {
  width: 22px;
  height: 22px;
  padding-right: 10px;
}

footer {
  text-align: center;
  padding: 15px;
  background: #ffecb3;
  color: #5d4037;
  font-size: 0.9rem;
}