/* ===== RESET & BASE ===== */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Poppins',sans-serif; color:#333; line-height:1.6; background:#fff; }
.container { width:90%; max-width:1200px; margin:auto; }

/* ===== TOP HEADER ===== */
.top-header { background:#101010; color:#fff; padding:8px 0; font-size:14px; }
.top-header .container { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; }
.top-header .contact-info span { margin-right:20px; }
.top-header .contact-info i { color:#C2D83B; margin-right:6px; }
.top-header .social-icons a { color:#fff; margin-left:10px; transition:color 0.3s; }
.top-header .social-icons a:hover { color:#C2D83B; }

/* ===== MAIN HEADER ===== */
header { background:#fff; border-bottom:3px solid #C2D83B; box-shadow:0 2px 6px rgba(0,0,0,0.1); position:sticky; top:0; z-index:999; }
.header-container { display:flex; justify-content:space-between; align-items:center; padding:15px 0; flex-wrap:wrap; }
.logo img { height:100px; width:auto; }

/* NAV MENU */
nav ul { list-style:none; display:flex; gap:25px; }
nav ul li a { text-decoration:none; color:#101010; font-weight:500; transition:color 0.3s; }
nav ul li a:hover { color:#C2D83B; }

/* MENU TOGGLE */
.menu-toggle { display:none; font-size:28px; cursor:pointer; color:#101010; }

/* HERO SLIDER */
.hero-slider img, .swiper-slide img { width:100%; height:500px; object-fit:cover; }
@media(max-width:768px){ .hero-slider img, .swiper-slide img{ height:300px; } }
@media(max-width:480px){ .hero-slider img, .swiper-slide img{ height:220px; } }
.swiper-pagination-bullet{ background:#C2D83B !important; }

/* SERVICES */
.home-services{ padding:60px 20px; background:#f9f9f9; text-align:center; }
.home-services .section-title{ font-size:36px; color:#101010; margin-bottom:40px; font-weight:700; }
.home-services .row{ display:flex; flex-wrap:wrap; justify-content:center; gap:25px; }
.service-box{ flex:0 0 22%; background:#fff; border-radius:10px; overflow:hidden; box-shadow:0 4px 10px rgba(0,0,0,0.1); transition:transform 0.4s, box-shadow 0.4s; }
.service-box:hover{ transform:translateY(-8px); box-shadow:0 8px 25px rgba(0,0,0,0.15); }
.service-img img{ width:100%; height:220px; object-fit:cover; transition:transform 0.6s; }
.service-box:hover img{ transform:scale(1.08); }
.service-box h3{ margin:20px 0; color:#101010; font-size:20px; transition:color 0.3s; }
.service-link{text-decoration:none;}
.service-link:hover h3{ color:#C2D83B; }
@media(max-width:992px){ .service-box{ flex:0 0 45%; } }
@media(max-width:600px){ .service-box{ flex:0 0 100%; } }

/* ABOUT */
.about{ padding:80px 0; background:#fff; }
.about-container{ display:flex; align-items:center; justify-content:space-between; gap:50px; flex-wrap:wrap; }
.about-image img{ width:600px; height:400px; object-fit:cover; border-radius:10px; }
.about-text{ flex:1; }
.about-text h2{ font-size:2rem; color:#101010; margin-bottom:20px; }
.about-text p{ font-size:16px; color:#444; }

/* GALLERY */
.gallery{ padding:80px 0; text-align:center; background:#f8f8f8; }
.gallery h2{ font-size:2.2rem; color:#101010; margin-bottom:40px; }
.gallery-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:20px; padding:0 20px; }
.gallery-grid img{ width:100%; height:600px; object-fit:cover; border-radius:10px; transition:transform 0.3s; }
.gallery-grid img:hover{ transform:scale(1.05); }

/* FOOTER */
footer{ background:#101010; color:#fff; padding:40px 20px 20px; }
.footer-container{ display:flex; flex-wrap:nowrap; max-width:1200px; margin:auto; gap:20px; }
.address-col{ flex:0 0 33.33%; padding:10px; }
.map-col{ flex:0 0 66.66%; padding:10px; }
.footer-column h3{ margin-bottom:15px; color:#C2D83B; }
.footer-column p, .footer-column a{ color:#fff; text-decoration:none; line-height:1.6; }
.footer-bottom{ text-align:center; padding:15px 0; background:#080808; margin-top:20px; font-size:14px; }
.map-container iframe{ width:100%; height:250px; border-radius:10px; border:0; }

/* ===== RESPONSIVE HEADER / MENU ===== */
@media(max-width:991px){
  nav ul{ flex-direction:column; background:#fff; position:absolute; top:100%; right:0; width:250px; display:none; padding:15px 0; box-shadow:0 4px 10px rgba(0,0,0,0.1); z-index:999; }
  nav ul.active{ display:flex; }
  nav ul li{text-align:center; margin:10px 0;}
  .menu-toggle{ display:block; }
  .about-container{ flex-direction:column; text-align:center; }
  .about-image img{ width:100%; }
  .footer-container{ flex-direction:column; }
  .address-col,.map-col{ flex:0 0 100%; }
}


/* ===== ABOUT PAGE ===== */
.about-page { padding:80px 0; background:#fff; }
.about-page .about-container { display:flex; align-items:center; gap:50px; flex-wrap:wrap; }
.about-page .about-image img { width:600px; height:400px; object-fit:cover; border-radius:10px; }
.about-page .about-text { flex:1; }
.about-page .about-text h1 { font-size:2.5rem; color:#101010; margin-bottom:20px; }
.about-page .about-text p { font-size:16px; color:#444; margin-bottom:15px; }

/* VISION & MISSION */
.vision-mission { padding:80px 20px; background:#f8f8f8; text-align:center; }
.vision-mission .row { display:flex; gap:30px; flex-wrap:wrap; justify-content:center; }
.vision-mission h2 { font-size:2rem; color:#101010; margin-bottom:15px; }
.vision-mission p { font-size:16px; color:#444; line-height:1.6; }
.vision-mission .col-2 { flex:0 0 45%; background:#fff; padding:30px; border-radius:10px; box-shadow:0 4px 10px rgba(0,0,0,0.1); transition:transform 0.3s; }
.vision-mission .col-2:hover { transform:translateY(-5px); }

/* RESPONSIVE */
@media(max-width:992px) {
  .about-page .about-container, .vision-mission .row { flex-direction:column; text-align:center; }
  .about-page .about-image img { width:100%; height:auto; }
  .vision-mission .col-2 { flex:0 0 100%; }
}


/* ===== PAGE BANNER ===== */
.page-banner {
  background: url('../images/about-banner.jpg') center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.page-banner::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(16,16,16,0.6); /* semi-transparent overlay */
  z-index:1;
}

.page-banner .container {
  position: relative;
  z-index:2;
}

.page-banner h1 {
  font-size:3rem;
  margin-bottom:10px;
}

.page-banner p {
  font-size:1.2rem;
  color:#C2D83B;
}

/* Responsive */
@media(max-width:768px) {
  .page-banner { padding:80px 15px; }
  .page-banner h1 { font-size:2rem; }
  .page-banner p { font-size:1rem; }
}



/* ===== SERVICES PAGE ===== */
.services-page {
  padding: 80px 0;
  background-color: #fff;
}

.service-item {
  display: flex;
  flex-wrap: nowrap; /* prevent stacking on desktop */
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
  transition: all 0.5s ease;
}

.service-image,
.service-content {
  flex: 0 0 50%; /* each takes half width */
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-content h2 {
  font-size: 2rem;
  color: #101010;
  margin-bottom: 20px;
}

.service-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}

/* Alternate layout for even services */
.service-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .service-item {
    flex-direction: column !important;
    text-align: center;
  }

  .service-image,
  .service-content {
    flex: 0 0 100%;
  }

  .service-image img {
    height: 250px;
  }
}


/* ===== GALLERY PAGE ===== */
.gallery-page {
  padding: 80px 0;
  text-align: center;
  background-color: #f8f8f8;
}

.gallery-page .section-title {
  font-size: 2.2rem;
  color: #101010;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .gallery-grid img {
    height: 180px;
  }
}


/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 80px 0;
  background: #f8f8f8;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

.contact-columns {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-form, .contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form h2, .contact-info h2 {
  font-size: 2rem;
  color: #101010;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  resize: none;
}

.contact-form button.btn {
  padding: 12px 25px;
  background-color: #C2D83B;
  color: #101010;
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.contact-form button.btn:hover {
  background-color: #101010;
  color: #C2D83B;
}

.contact-info p {
  margin-bottom: 12px;
  color: #101010;
  font-size: 16px;
}

.contact-info p i {
  color: #C2D83B;
  margin-right: 8px;
}

.contact-info a {
  color: #101010;
  text-decoration: none;
}

.contact-info a:hover {
  color: #C2D83B;
}

/* Google Map */
.contact-page .map-container {
  margin-top: 40px;
}

.contact-page .map-container iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  border: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-columns {
    flex-direction: column;
  }
}
