/*Start:Main styles*/
body {
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-weight: 700;
}

footer {
  background: #111;
  color: #aaa;
}
/*End:Main styles*/

/*Start:Hero Section*/
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('../assets/img/hero.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.badge-custom {
  background: #ffc107;
  color: #000;
  font-weight: 600;
}
/*End:Hero Section*/

/* Start:About Section */
.about-logo {
  max-width: 380px;
  width: 100%;
  height: auto;
}

.about-text {
  max-width: 720px;
  font-size: 1.05rem;
}
/* End:About Section */

/*Start:Features Section*/
.icon-box {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  transition: 0.3s;
}

.icon-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.feature-box {
  background: #fff;
  height: 100%;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff3cd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
/*End:Features Section*/

/*Start:Partner Section*/
.partner-logo {
  max-height: 150px;
}
/*End:Partner Section*/

/*Start:Gallery Section*/
.gallery-grid-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid-img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .gallery-grid-img {
    height: 200px;
  }
}
/*End:Gallery Section*/
