.header {
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* LOGO BIG FIX */
.logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

/* TEXT AREA */
.title-box h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  color: #1a73e8;
  letter-spacing: 1px;
}

/* MOTTO */
.motto {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #555;
};

.image-section {
  width: 100%;
  margin: 15px 0;
  overflow: hidden;
}

/* LANDSCAPE BANNER STYLE (1:4 FEEL) */
.image-section img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.hero {
  text-align: center;
  padding: 40px 20px;
  background: #f4f6ff;
}

.hero h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1a73e8;
  margin-bottom: 10px;
}

.hero .motto {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
  margin: auto;
}

.services {
  padding: 30px 15px;
  background: #f9fbff;
}

.services h2 {
  text-align: center;
  color: #1a73e8;
  margin-bottom: 20px;
  font-size: 24px;
}

/* GRID LAYOUT */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

/* MODERN CARD */
.service-card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #1a73e8;
  font-size: 15px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

.news {
  padding: 25px 15px;
  background: #f9f9f9;
}

.news h2 {
  text-align: center;
  color: #1a73e8;
}

/* SCROLL AREA */
.news-scroll {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

/* CARD */
.news-card {
  min-width: 85%;
  flex-shrink: 0;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);

  scroll-snap-align: center;
}

.news-card h3 {
  margin: 0 0 5px;
  color: #1a73e8;
}

.news-card p {
  margin: 0;
  font-size: 13px;
  color: #555;
}

.menu-container {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
}


.materials {
  padding: 30px 15px;
  background: #fff;
}

.materials {
  padding: 30px 15px;
  background: #fff;
}

.materials h2 {
  text-align: center;
  color: #1a73e8;
  margin-bottom: 10px;
}

.material-note {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

#materialSearch {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* LIST STYLE */
.material-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ITEM */
.material-item {
  background: #f4f6ff;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  color: #1a73e8;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);

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

.material-item a {
  background: #1a73e8;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 12px;
}

.material-item a:hover {
  background: #0d47a1;
}

.section-gap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin: 20px 0;
}

.section-gap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.faq {
  padding: 40px 15px;
  background: linear-gradient(135deg, #f4f6ff, #ffffff);
}

.faq h2 {
  text-align: center;
  color: #1a73e8;
  margin-bottom: 20px;
}

/* EACH QUESTION BLOCK */
.faq-item {
  background: white;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* QUESTION */
.faq-item h3 {
  margin: 0;
  color: #1a73e8;
  font-size: 15px;
}

/* ANSWER ALWAYS VISIBLE */
.faq-item p {
  margin-top: 6px;
  font-size: 14px;
  color: #333;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: white;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 99999;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.whatsapp-float:hover {
  transform: scale(1.1);
}

.contact {
  padding: 40px 15px;
  background: #f4f6ff;
  text-align: center;
}

.contact h2 {
  color: #1a73e8;
  margin-bottom: 10px;
}

.contact-note {
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
}

/* CONTACT DETAILS */
.contact-details {
  background: white;
  padding: 15px;
  border-radius: 10px;
  max-width: 400px;
  margin: auto;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-details p {
  font-size: 14px;
  margin: 8px 0;
}

/* BUTTONS */
.contact-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  font-size: 13px;
}

/* WHATSAPP */
.btn.whatsapp {
  background: #25D366;
}

/* GROUP */
.btn.group {
  background: #1a73e8;
}
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9fbff;
  color: #222;
  scroll-behavior: smooth;
}
section {
  margin-bottom: 25px;
}

h2 {
  font-size: 22px;
  letter-spacing: 0.5px;
}
.news-card,
.material-item,
.faq-item,
.service-card,
.contact-details {
  border-radius: 12px;
}
a, button {
  transition: 0.3s ease;
}

a:hover, button:hover {
  transform: translateY(-2px);
}
h2 {
  position: relative;
  padding-bottom: 8px;
}

h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #1a73e8;
  display: block;
  margin: 6px auto 0 auto;
  border-radius: 5px;
}
section {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background: #1a73e8;
  color: white;
  text-align: center;
  padding: 20px 10px;
}

.footer p {
  margin: 0;
  font-size: 13px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: white;
  margin: 0 8px;
  text-decoration: none;
  font-size: 12px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.materials {
  padding: 20px;
  font-family: Arial, sans-serif;
}

.material-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f4f4f4;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 8px;
}

.material-item span {
  font-size: 15px;
  font-weight: 500;
}

.material-item a {
  background: #1a73e8;
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 13px;
}

.material-item a:hover {
  background: #0f5bd1;
}

/* SEARCH BOX */
#searchBox {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
