* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  background: #f9f9f9;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a2e;
  padding: 16px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  color: #f0a500;
  font-size: 20px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.nav-links a:hover {
  color: #f0a500;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
              url('images/cctv.jpeg') center/cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 60px 20px;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 28px;
  color: #ddd;
}

.btn {
  background: #f0a500;
  color: #1a1a2e;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
}

.btn:hover {
  background: #d4920a;
}

/* BANNER */
.banner {
  background: #f0a500;
  text-align: center;
  padding: 14px 20px;
  font-size: 16px;
  color: #1a1a2e;
  font-weight: bold;
}

/* SERVICES */
.services-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.services-section h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.tab-btn {
  background: #eee;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  color: #444;
  transition: all 0.2s;
}

.tab-btn:hover {
  background: #1a1a2e;
  color: white;
}

.tab-btn.active {
  background: #1a1a2e;
  color: #f0a500;
}

/* SERVICE PANELS */
.service-panel {
  display: none;
  gap: 40px;
  align-items: flex-start;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.service-panel.active {
  display: flex;
  flex-wrap: wrap;
}

.service-panel img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  object-fit: cover;
  height: 280px;
}

.service-info h3 {
  font-size: 24px;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.service-info p {
  color: #555;
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-info ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-info ul li {
  padding: 6px 0;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.service-info ul li::before {
  content: "✔ ";
  color: #f0a500;
  font-weight: bold;
}

.service-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-tags span {
  background: #1a1a2e;
  color: #f0a500;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

/* WHY US */
.why-us {
  background: #1a1a2e;
  padding: 60px 20px;
  text-align: center;
}

.why-us h2 {
  color: #f0a500;
  font-size: 30px;
  margin-bottom: 36px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.reason-card {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 28px 20px;
  color: white;
}

.reason-card .icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.reason-card h4 {
  font-size: 17px;
  color: #f0a500;
  margin-bottom: 8px;
}

.reason-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* CONTACT */
.contact-section {
  padding: 60px 20px;
  text-align: center;
  background: white;
}

.contact-section h2 {
  font-size: 30px;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.contact-section p {
  color: #555;
  margin-bottom: 10px;
}

.contact-details {
  margin: 24px 0;
  font-size: 17px;
  line-height: 2;
}

/* FOOTER */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .hero-content h1 { font-size: 24px; }
  .service-panel img { max-width: 100%; }
  nav { flex-direction: column; gap: 12px; }
  .nav-links { gap: 14px; }
}
/* WHATSAPP BUTTON */
.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  margin-top: 8px;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* INQUIRY FORM */
.inquiry-form {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 36px 30px;
  max-width: 600px;
  margin: 40px auto 0;
  text-align: left;
}

.inquiry-form h3 {
  font-size: 22px;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.inquiry-form p {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: Arial, sans-serif;
  background: white;
  color: #222;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: #f0a500;
}

.inquiry-form button {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* SOCIAL LINKS IN FOOTER */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 30px 20px;
  font-size: 13px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 14px 0 20px;
  flex-wrap: wrap;
}

.social-links a {
  background: #1a1a2e;
  color: #f0a500;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  border: 1px solid #f0a500;
}

.social-links a:hover {
  background: #f0a500;
  color: #1a1a2e;
}

.footer-copy {
  color: #555;
  font-size: 12px;
}
/* TRAINING SECTION */
.training-section {
  padding: 60px 20px;
  background: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
}

.training-section h2 {
  text-align: center;
  font-size: 30px;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.training-intro {
  background: white;
  border-left: 5px solid #f0a500;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px auto 40px;
  max-width: 860px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.course-card {
  background: white;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-top: 4px solid #ddd;
  position: relative;
  display: flex;
  flex-direction: column;
}

.course-card.current {
  border-top: 4px solid #f0a500;
}

.course-card.upcoming {
  border-top: 4px solid #1a1a2e;
}

.course-badge {
  display: inline-block;
  background: #f0a500;
  color: #1a1a2e;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.upcoming-badge {
  background: #1a1a2e;
  color: #f0a500;
}

.course-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.course-card h3 {
  font-size: 17px;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.course-duration {
  font-size: 13px;
  color: #f0a500;
  font-weight: bold;
  margin-bottom: 10px;
}

.course-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.course-card ul {
  list-style: none;
  font-size: 13px;
  color: #333;
  margin-bottom: 16px;
  flex: 1;
}

.course-card ul li {
  padding: 5px 0;
  border-bottom: 1px solid #f5f5f5;
}

.course-card ul li::before {
  content: "✔ ";
  color: #f0a500;
  font-weight: bold;
}

.course-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.course-price {
  font-size: 13px;
  font-weight: bold;
  color: #1a1a2e;
}

.course-btn {
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

.training-note {
  background: #fff8e6;
  border: 1px solid #f0a500;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  color: #555;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.6;
}

/* GIVING BACK SECTION */
.giving-back-section {
  background: #1a1a2e;
  padding: 60px 20px;
  text-align: center;
}

.giving-back-section h2 {
  color: #f0a500;
  font-size: 30px;
  margin-bottom: 8px;
}

.giving-back-section .section-subtitle {
  color: #aaa;
  margin-bottom: 40px;
}

.giving-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.giving-card {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px 20px;
  color: white;
  text-align: left;
}

.giving-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.giving-card h3 {
  font-size: 17px;
  color: #f0a500;
  margin-bottom: 10px;
}

.giving-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
}

.giving-cta {
  background: rgba(240,165,0,0.1);
  border: 1px solid #f0a500;
  border-radius: 12px;
  padding: 32px 24px;
  max-width: 600px;
  margin: 0 auto;
}

.giving-cta h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
}

.giving-cta p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 20px;
}
/* TRAINING REGISTRATION FORM */
.training-form-wrapper {
  background: white;
  border-radius: 14px;
  padding: 40px 36px;
  max-width: 860px;
  margin: 40px auto 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-top: 5px solid #f0a500;
}

.training-form-wrapper h3 {
  font-size: 24px;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.training-form-wrapper > p {
  color: #666;
  font-size: 14px;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: bold;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #222;
  background: #fafafa;
  transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f0a500;
  background: white;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  font-weight: normal;
}

.radio-label input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #f0a500;
  padding: 0;
  border: none;
  margin: 0;
}

.training-submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  border-radius: 8px;
}

/* THANK YOU PAGE */
.thankyou-wrapper {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.thankyou-card {
  background: white;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  max-width: 560px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-top: 5px solid #f0a500;
}

.thankyou-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.thankyou-card h1 {
  font-size: 28px;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.thankyou-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.thankyou-sub {
  font-size: 13px;
  color: #888;
}

.thankyou-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* RESPONSIVE FOR FORM */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .training-form-wrapper {
    padding: 28px 20px;
  }
  .thankyou-card {
    padding: 36px 20px;
  }
}
/* FLOATING WHATSAPP BUTTON */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.float-whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.08);
}

/* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 30px;
  background: #1a1a2e;
  color: #f0a500;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-to-top:hover {
  background: #f0a500;
  color: #1a1a2e;
}

.back-to-top.visible {
  display: flex;
}

/* GALLERY SECTION */
.gallery-section {
  padding: 60px 20px;
  background: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-section h2 {
  text-align: center;
  font-size: 30px;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px 0 32px;
}

.filter-btn {
  background: #eee;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
  color: #444;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: #1a1a2e;
  color: white;
}

.filter-btn.active {
  background: #1a1a2e;
  color: #f0a500;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,26,46,0.85));
  padding: 20px 14px 14px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  color: #f0a500;
  font-weight: bold;
  font-size: 14px;
}

.gallery-item.hidden {
  display: none;
}

/* FAQ SECTION */
.faq-section {
  padding: 60px 20px;
  background: white;
  max-width: 860px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 30px;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.faq-grid {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: bold;
  color: #1a1a2e;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #fdf8ee;
}

.faq-question.open {
  background: #1a1a2e;
  color: #f0a500;
}

.faq-question.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-arrow {
  transition: transform 0.3s;
  font-size: 12px;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
}

.faq-answer.open {
  display: block;
}

/* BUSINESS HOURS */
.business-hours {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 24px;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.business-hours h3 {
  font-size: 17px;
  color: #1a1a2e;
  margin-bottom: 14px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 14px;
}

.hours-table td {
  padding: 8px 4px;
  border-bottom: 1px solid #e8e8e8;
  color: #333;
}

.hours-table td:first-child {
  font-weight: bold;
  color: #1a1a2e;
  width: 55%;
}

.open {
  color: #1a7a3f;
  font-weight: bold;
}

.closed {
  color: #c0392b;
  font-weight: bold;
}

.limited {
  color: #e67e22;
  font-weight: bold;
}

.emergency-note {
  font-size: 13px;
  color: #555;
  margin-top: 10px;
  line-height: 1.5;
}

/* RESPONSIVE NAV FOR MORE ITEMS */
@media (max-width: 900px) {
  nav {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}