.obs-section {
  background-color: #020617;
  padding: 100px 8%;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.obs-hero-flex {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.obs-text-content { flex: 1.2; }

.obs-badge {
  color: #ff7a3d;
  border: 1px solid rgba(255, 122, 61, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.obs-title {
  font-family: 'Kanit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 30px 0 25px;
  font-weight: 700;
}

.obs-description {
  color: #94a3b8;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 45px;
  max-width: 580px;
}

.obs-btn-group { display: flex; gap: 20px; }

.btn-fill {
  background: #ff7a3d;
  color: #fff;
  padding: 18px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-fill:hover { transform: translateY(-5px); }

.btn-outline {
  background: #1e293b;
  color: #fff;
  padding: 18px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* Visuals & Floating Card */
.obs-visual-wrap { flex: 1; position: relative; }
.obs-image-container img { width: 100%; border-radius: 30px; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }

.predictive-card {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.card-icon { color: #ff7a3d; font-size: 22px; }
.card-label { color: #ff7a3d; font-weight: 800; font-size: 10px; display: block; letter-spacing: 1px; }
.card-stat { font-weight: 700; font-size: 15px; margin: 0; }

/* Stats Bar */
.obs-stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 60px;
}

.stat-box h3 { font-size: 2.8rem; margin-bottom: 8px; font-weight: 700; color: #fff; }
.stat-box h3 span { color: #ff7a3d; }
.stat-box p { color: #64748b; font-size: 11px; font-weight: 800; letter-spacing: 1.2px; }

.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

@media (max-width: 992px) {
  .obs-hero-flex { flex-direction: column; text-align: center; }
  .obs-btn-group { justify-content: center; }
  .obs-stats-grid { flex-direction: column; gap: 50px; }
  .stat-divider { display: none; }
  .predictive-card { right: 20px; }
}


.principles-section {
  padding: 100px 8%;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.principles-main-title {
  font-family: 'Kanit', sans-serif;
  font-size: 2.5rem;
  color: #020b1c;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

/* Blue line under title */
.principles-main-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #3b82f6;
  opacity: 0.3;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1300px;
}

.principle-card {
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.principle-card.dark {
  background-color: #1e293b; /* Dark Slate */
  color: #fff;
}

.principle-card.orange-bg {
  background-color: #f38d54; /* Specific orange from screenshot */
  color: #fff;
  grid-column: span 3;
}

/* Grid Spans */
.wide { grid-column: span 2; }
.full-width { grid-column: span 3; }

.p-icon { font-size: 24px; margin-bottom: 25px; color: #fff; }
.p-icon.orange { color: #ff7a3d; }

.principle-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.principle-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* Bottom Card Layout */
.full-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grid-icon { font-size: 40px; opacity: 0.9; }

/* Responsive */
@media (max-width: 1024px) {
  .principles-grid { grid-template-columns: 1fr 1fr; flex-direction:column;}
  .wide, .full-width { grid-column: span 2; }
}

@media (max-width: 640px) {
  .principles-grid { grid-template-columns: 1fr; }
  .wide, .full-width, .principle-card { grid-column: span 1; }
  .full-flex { flex-direction: column; text-align: left; align-items: flex-start; gap: 20px; }
}


.monitoring-section {
  background-color: #020617; /* Deep Navy from Screenshot */
  padding: 100px 8%;
  font-family: 'Inter', sans-serif;
}

.m-container {
  max-width: 1400px;
  margin: 0 auto;
}

.m-header {
  text-align: center;
  margin-bottom: 60px;
}

.m-title {
  font-family: 'Kanit', sans-serif;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.m-subtitle {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Logic */
.m-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.m-card {
  background-color: #0a192f; /* Dark card background */
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.m-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.3); /* Subtle blue glow on hover */
}

.m-img {
  height: 200px;
  width: 100%;
}

.m-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.m-content {
  padding: 30px;
}

.m-content h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.m-content p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Scaling */
@media (max-width: 1100px) {
  .m-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .m-grid { grid-template-columns: 1fr; }
  .monitoring-section { padding: 60px 5%; }
}

/* --- BLUEPRINT --- */
.blueprint-section {
  padding: 120px 8%;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}
.blueprint-container {
  display: flex;
  align-items: center;
  gap: 100px;
  max-width: 1300px;
  margin: 0 auto;
}
.blueprint-visual { flex: 1; position: relative; }
.main-img-frame img { width: 100%; border-radius: 20px; }

.tech-card {
  position: absolute;
  bottom: -30px;
  left: -20px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 12px;
  max-width: 280px;
  border: 1px solid rgba(255,255,255,0.1);
  z-index:888;
}
.tech-tag { color: #ff7a3d; font-weight: 800; font-size: 10px; letter-spacing: 1.5px; }
.tech-card p { color: #cbd5e1; font-size: 13px; margin-top: 10px; line-height: 1.5; font-style: italic; }

.blueprint-content { flex: 1; }
.blueprint-title { font-family: 'Kanit', sans-serif; font-size: 3rem; font-weight: 700; color: #020b1c; }
.blueprint-subtitle { color: #64748b; margin: 25px 0 45px; line-height: 1.6; }

.b-feat-item { display: flex; gap: 20px; margin-bottom: 30px; }
.b-icon.orange { color: #ff7a3d; font-size: 20px; }
.b-text strong { display: block; color: #020b1c; font-size: 1.1rem; }
.b-text p { color: #64748b; font-size: 0.9rem; }

/* --- DEPLOYMENT --- */
.deployment-section {
  background: #020b1c;
  padding: 100px 8%;
  color: #fff;
}
.dep-header { margin-bottom: 60px; }
.dep-header h2 { font-family: 'Kanit', sans-serif; font-size: 2.5rem; }
.dep-header p { color: #94a3b8; }

.dep-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}
.dep-card {
  background: rgba(30, 41, 59, 0.4);
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}
.step-num { font-size: 2.5rem; font-weight: 800; opacity: 0.15; display: block; margin-bottom: 15px; }
.dep-card h4 { font-size: 1rem; margin-bottom: 10px; font-weight: 600; }
.dep-card p { font-size: 0.8rem; color: #94a3b8; line-height: 1.4; }

/* Responsive */
@media (max-width: 1200px) {
  .dep-grid { grid-template-columns: repeat(3, 1fr); }
  .blueprint-container { flex-direction: column; text-align: center; }
  .tech-card { left: 50%; transform: translateX(-50%); width: 90%; }
}
@media (max-width: 768px) {
  .dep-grid { grid-template-columns: repeat(1, 1fr); }
}

$('.acc-header').on('click', function() {
    const $item = $(this).parent('.acc-item');
    $item.toggleClass('active').siblings().removeClass('active');
});

.dark p {
    color: #212529;
}



/* Domain Section */
.js-domain-expertise { padding: 90px 0; background: #fff; text-align: center; }
.js-title-center { font-family: 'Kanit', sans-serif; font-size: 32px; font-weight: 700; color: #020b1c; margin-bottom: 60px; }
.js-domain-row { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
.js-domain-item { display: flex; flex-direction: column; align-items: center; gap: 15px; width: 150px; }
.js-icon-circle { width: 75px; height: 75px; background: #1e293b; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; transition: 0.3s; }
.js-domain-item span { font-weight: 700; font-size: 13px; letter-spacing: 0.5px; text-transform: capitalize; }
.js-domain-item:hover .js-icon-circle { background: #ff7a3d; transform: translateY(-5px); }

/* Enquiry Section */
.js-enquiry-section { background: #020b1c; padding: 100px 0; color: #fff; }
.js-title-light { font-family: 'Kanit', sans-serif; font-size: 32px; font-weight: 700; text-align: center; margin-bottom: 60px; }
.js-accordion { max-width: 850px; margin: 0 auto; }
.js-acc-card { background: rgba(30, 41, 59, 0.4); border-radius: 12px; margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.05); }
.js-acc-trigger { width: 100%; padding: 25px 30px; background: none; border: none; color: #fff; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 15px; font-weight: 600; text-align: left; }
.js-acc-panel { max-height: 0; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); padding: 0 30px; }
.js-acc-card.active .js-acc-panel { max-height: 200px; padding-bottom: 25px; }
.js-acc-card.active i { transform: rotate(180deg); color: #ff7a3d; }

/* Final CTA */
.js-final-cta-wrap { padding: 100px 0; background: #fff; }
.js-cta-card { background: linear-gradient(135deg, #020b1c 0%, #0a192f 100%); padding: 80px 40px; border-radius: 30px; text-align: center; color: #fff; max-width: 1100px; margin: 0 auto; }
.js-cta-card h2 { font-family: 'Kanit', sans-serif; font-size: clamp(30px, 5vw, 48px); font-weight: 700; margin-bottom: 20px; }
.js-cta-card p { color: #94a3b8; max-width: 600px; margin: 0 auto 40px; line-height: 1.6; }
.js-cta-btns { display: flex; justify-content: center; gap: 20px; }
.btn-orange-fill { background: #ff7a3d; color: #fff; padding: 16px 35px; border-radius: 8px; font-weight: 700; text-decoration: none; transition: 0.3s; }
.btn-navy-outline { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 16px 35px; border-radius: 8px; font-weight: 700; text-decoration: none; transition: 0.3s; }
.btn-orange-fill:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 122, 61, 0.3); }

/* Responsive */
@media (max-width: 768px) {
  .js-domain-row { gap: 40px; }
  .js-cta-btns { flex-direction: column; }
  .js-cta-card { margin: 0 20px; padding: 60px 20px; }
}