
/* ================================
   assets/css/style.css
================================ */

body {
  font-family: 'Poppins', sans-serif;
}

.chenani-navbar {
  background: #0b1c2d;
}

.brand-main { color: #f4c430; }
.brand-sub { color: #ffffff; }

.hero-modern {
  min-height: 100vh;
  background: linear-gradient(rgba(11,28,45,.85), rgba(11,28,45,.85)), url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
}

.hero-badge {
  background: #f4c430;
  color: #000;
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}

.section-padding { padding: 90px 0; }

.section-title {
  font-weight: 600;
  margin-bottom: 20px;
}

/* ===== Mission & Vision ===== */
.mv-section {
  background: repeating-linear-gradient(
    45deg,
    #f8f9fa,
    #f8f9fa 10px,
    #ffffff 10px,
    #ffffff 20px
  );
}

.mv-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  text-align: center;
}

.mv-card i {
  font-size: 2.5rem;
  color: #f4c430;
  margin-bottom: 15px;
}

.md-quote {
  background: #0b1c2d;
  color: #fff;
  padding: 35px;
  border-radius: 14px;
  text-align: center;
}

.md-quote h6 { margin-top: 15px; color: #f4c430; }

/* ===== Services ===== */
.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform .3s;
}

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

.service-card i {
  font-size: 2.2rem;
  color: #f4c430;
  margin-bottom: 15px;
}

/* ===== Presence ===== */
.presence-section {
  background: #ffffff;
}

.presence-card {
  background: #0b1c2d;
  color: #ffffff;
  padding: 16px 10px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  transition: all .3s ease;
}

.presence-card:hover {
  background: #f4c430;
  color: #000;
  transform: translateY(-4px);
}

.presence-more {
  background: #f4c430;
  color: #000;
}

.presence-more:hover {
  background: #0b1c2d;
  color: #fff;
}


/* ===== Gallery Swiper ===== */
.gallery-section {
  background: #ffffff;
}

.gallery-swiper {
  padding-bottom: 50px;
}

/* Gallery card */
.gallery-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image */
.gallery-img {
  height: 220px;
  overflow: hidden;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

/* Caption */
.gallery-caption {
  padding: 15px 16px;
  background: #0b1c2d;
  color: #ffffff;
}

.gallery-caption h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-caption p {
  font-size: 0.85rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

/* Hover */
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

/* Swiper controls */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  color: #f4c430;
}

.gallery-swiper .swiper-pagination-bullet {
  background: #0b1c2d;
  opacity: 0.3;
}

.gallery-swiper .swiper-pagination-bullet-active {
  background: #f4c430;
  opacity: 1;
}



/* ===== Footer ===== */
.footer {
  background: #0b1c2d;
  color: #fff;
}
