/* =========================================
   SUN CLEAN TECH - MASTER CSS (FULLY ORGANIZED & RESPONSIVE)
   ========================================= */
/* TABLE OF CONTENTS:
   1. CSS VARIABLES & RESET
   2. GLOBAL STYLES & UTILITIES
   3. TYPOGRAPHY
   4. BUTTONS
   5. NAVBAR & HEADER
   6. HERO SECTION
   7. STATS SECTION
   8. ABOUT SECTION
   9. SOLUTIONS SECTION
   10. PROCESS / TIMELINE SECTION
   11. CLIENTS SECTION
   12. CTA BOX SECTION
   13. FOOTER
   
   PAGE-SPECIFIC STYLES:
   14. PAGE HERO (ALL PAGES)
   15. SPLIT LAYOUT (ALL PAGES)
   16. GRID SYSTEM (ALL PAGES)
   17. INFO CARD (ALL PAGES)
   18. MINI CARD (ALL PAGES)
   19. GLASS CARD (ALL PAGES)
   20. FEATURE LIST (ALL PAGES)
   21. QUOTE BOX (ABOUT)
   22. PROFILE CARD (ABOUT)
   23. PRODUCT CARD (PRODUCTS)
   24. COMPARISON TABLE (PRODUCTS)
   25. HERO POINTS (TECHNOLOGY)
   26. CALCULATOR SECTION (ROI-VALUE)
   27. CONTACT PAGE SPECIFIC
   28. PRODUCT DETAILS (V1.HTML)
   29. ABOUT PAGE ENHANCED
   30. O&M TECHNOLOGIES PAGE
   31. OUR CLIENTS PAGE
   32. WEATHER MONITORING SYSTEM (WMS) PAGE
   
   33. RESPONSIVE STYLES (COMPLETE)
========================================= */

/* =========================================
   1. CSS VARIABLES & RESET
========================================= */
:root {
  --primary: #43a047;
  --primary-dark: #2e7d32;
  --secondary: #66bb6a;
  --accent: #f57c00;
  --accent-dark: #e65100;
  --text: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --bg: #f8fafc;
  --bg-alt: #f1f8f2;
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.05);
  --radius: 20px;
  --radius-card: 24px;
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* =========================================
   2. GLOBAL STYLES & UTILITIES
========================================= */
.container {
  width: 90%;
  max-width: 1240px;
  margin: auto;
}

.section {
  padding: 80px 0;
}

.alt-bg {
  background: var(--bg-alt);
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.section-badge {
  display: inline-block;
  background: rgba(245, 124, 0, 0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

/* =========================================
   3. TYPOGRAPHY
========================================= */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: 3.2rem;
  font-weight: 800;
}

h2 {
  font-size: 2.45rem;
  font-weight: 800;
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

p {
  color: var(--text-light);
  font-size: 1rem;
}

/* =========================================
   4. BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(245, 124, 0, 0.28);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(11, 61, 145, 0.25);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-buttons.center {
  justify-content: center;
}

/* =========================================
   5. NAVBAR & HEADER
========================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.header header {
  transition: all 0.3s ease;
}

.header.scrolled header {
  padding: 12px 30px;
  background-color: transparent !important;
}

.header.scrolled .brand-logo {
  height: 45px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  text-decoration: none;
  padding: 4px 0;
}

.brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.03);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.96rem;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.menu-btn {
  display: none;
  background: var(--primary);
  color: var(--white);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

/* =========================================
   6. HERO SECTION
========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1s ease,
    transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20, 45, 20, 0.82),
    rgba(67, 160, 71, 0.48)
  );
  z-index: 1;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  color: #fff;
  padding: 30px 0;
}

.hero-left h1 {
  margin: 20px 0;
  line-height: 1.2;
}

.heroTitlediv {
  min-height: 80px;
}

#heroTitle {
  color: var(--bg);
  font-size: 1.9rem;
  min-height: 80px;
  line-height: 1.2;
  display: inline;
}

.typing-cursor {
  border-right: 3px solid #f59e0b;
  padding-right: 2px;
  animation: cursorBlink 0.8s infinite;
}

@keyframes cursorBlink {
  0%,
  50% {
    border-color: #f59e0b;
  }
  51%,
  100% {
    border-color: transparent;
  }
}

.hero-bold {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fbbf24;
}

.hero-tag {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50px;
}

.hero-right {
  position: relative;
  padding: 30px 0;
}

.product-slider {
  position: relative;
  height: 500px;
}

.product-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.product-slide.active {
  opacity: 1;
  transform: scale(1);
}

.product-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 25px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
  cursor: pointer;
  z-index: 5;
}

.prev {
  left: -20px;
}
.next {
  right: -20px;
}

.product-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.p-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
}

.p-dot.active {
  background: var(--accent);
}

/* =========================================
   7. STATS SECTION
========================================= */
.stats-section {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-box {
  background: white;
  padding: 35px 25px;
  text-align: center;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.stat-box i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.stat-box h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

/* =========================================
   8. ABOUT SECTION
========================================= */
.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.about-text p {
  margin-bottom: 18px;
}

.about-stats {
  display: grid;
  gap: 20px;
}

.stat-card {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--accent);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.stat-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.stat-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

/* =========================================
   9. SOLUTIONS SECTION
========================================= */
.solutions-section {
  background: var(--bg-alt);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.solution-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.solution-image {
  height: 240px;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s;
}

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

.solution-content {
  padding: 28px;
}

.solution-content h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.solution-content p {
  margin-bottom: 18px;
}

.solution-content ul {
  margin-bottom: 20px;
}

.solution-content li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  color: var(--text-light);
}

.solution-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.solution-link {
  color: var(--accent);
  font-weight: 700;
}

.solution-link:hover {
  color: var(--accent-dark);
}

/* =========================================
   10. PROCESS / TIMELINE SECTION
========================================= */
.process-section {
  background: var(--bg-alt);
}

.timeline {
  display: grid;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.timeline-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.timeline-content h3 {
  margin-bottom: 8px;
}

.timeline-content h3 i {
  color: var(--accent);
  margin-right: 10px;
}

/* =========================================
   11. CLIENTS SECTION
========================================= */
.clients-section {
  background: var(--bg-alt);
}

/* =========================================
   12. CTA BOX SECTION
========================================= */
.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 56px 40px;
  border-radius: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  margin-top: 20px;
}

.cta-box h2,
.cta-box p,
.cta-box h3 {
  color: var(--white);
}

.cta-box h2 {
  margin-bottom: 14px;
}

.cta-box h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

/* =========================================
   13. FOOTER
========================================= */
.footer {
  background: #0d1526;
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 0 24px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-logo {
  max-width: 100px;
  margin-bottom: 18px;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-copy {
  text-align: center;
  padding-top: 32px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 24px;
}

/* =========================================
   14. PAGE HERO (ALL PAGES)
========================================= */
.page-hero {
  position: relative;
  padding: 130px 0 110px;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 18px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.about-page-hero {
  position: relative;
  padding: 180px 0;
  background-size: cover;
  background-position: center;
  color: var(--white);
  height: 90vh;
}

.about-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* =========================================
   15. SPLIT LAYOUT (ALL PAGES)
========================================= */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.split-image img {
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.split-text h2 {
  margin-bottom: 18px;
}

.split-text p {
  margin-bottom: 16px;
}

/* =========================================
   16. GRID SYSTEM (ALL PAGES)
========================================= */
.grid {
  display: grid;
  gap: 28px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* =========================================
   17. INFO CARD (ALL PAGES)
========================================= */
.info-card {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
  border-radius: var(--radius);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.info-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.info-card h3 {
  margin-bottom: 12px;
}

/* =========================================
   18. MINI CARD (ALL PAGES)
========================================= */
.mini-card {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.mini-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.mini-card i {
  font-size: 1.7rem;
  color: var(--accent);
}

.mini-card.icon-top {
  align-items: center;
}
.mini-card span {
  font-weight: 600;
  color: var(--text);
}

/* =========================================
   19. GLASS CARD (ALL PAGES)
========================================= */
.glass-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.82)
  );
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  text-align: center;
  border-radius: var(--radius);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(20, 94, 168, 0.08);
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0 auto 18px;
}

/* =========================================
   20. FEATURE LIST (ALL PAGES)
========================================= */
.feature-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.feature-list div {
  background: rgba(11, 61, 145, 0.05);
  border-left: 4px solid var(--primary);
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
}

.feature-list i {
  color: var(--accent);
  margin-right: 10px;
}

/* =========================================
   21. QUOTE BOX (ABOUT)
========================================= */
.quote-box {
  background: rgba(245, 124, 0, 0.08);
  border-left: 5px solid var(--accent);
  padding: 22px 24px;
  border-radius: 14px;
  margin: 18px 0;
  font-weight: 700;
  color: var(--text);
}

.quote-box.center {
  text-align: center;
}

/* =========================================
   22. PROFILE CARD (ABOUT)
========================================= */
.profile-card {
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: var(--radius);
  transition: var(--transition);
}

.profile-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.profile-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
}

.profile-content {
  padding: 26px;
}
.profile-role {
  color: var(--accent);
  font-weight: 700;
  margin: 8px 0 14px;
}

/* =========================================
   23. PRODUCT CARD (PRODUCTS)
========================================= */
.product-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  margin-bottom: 20px;
  transition: transform 0.7s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}
.product-card h3 {
  margin-bottom: 10px;
}

.product-tag {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
}

.product-card ul {
  padding-left: 18px;
  list-style: disc;
}

.product-card ul li {
  margin-bottom: 10px;
  color: var(--text-light);
}

.product-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.view-btn {
  margin-top: 18px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* =========================================
   24. COMPARISON TABLE (PRODUCTS)
========================================= */
.cmp-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  font-family: "Inter", sans-serif;
}

.cmp-container {
  max-width: 1250px;
  margin: auto;
}
.cmp-heading {
  text-align: center;
  margin-bottom: 60px;
}

.cmp-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 1px;
}

.cmp-title {
  font-size: 42px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: #111827;
}

.cmp-subtitle {
  color: #6b7280;
  font-size: 16px;
}

.cmp-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
}

.cmp-th {
  padding: 18px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #111827, #1f2937);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cmp-feature {
  text-align: left;
  font-weight: 600;
  background: rgba(249, 250, 251, 0.9);
  color: #111827;
}

.cmp-td {
  padding: 16px;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  transition: all 0.3s ease;
}

.cmp-row {
  transition: all 0.3s ease;
}
.cmp-row:hover .cmp-td {
  background: rgba(99, 102, 241, 0.05);
  transform: scale(1.01);
}

.cmp-highlight {
  background: linear-gradient(180deg, #ecfdf5, #d1fae5);
  font-weight: 600;
  color: #065f46;
  position: relative;
}

.cmp-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 6px;
  pointer-events: none;
}

.cmp-yes {
  color: #16a34a;
  font-weight: 700;
}
.cmp-no {
  color: #dc2626;
  font-weight: 700;
}

.cmp-table-wrapper::-webkit-scrollbar {
  height: 8px;
}
.cmp-table-wrapper::-webkit-scrollbar-track {
  background: #e5e7eb;
}
.cmp-table-wrapper::-webkit-scrollbar-thumb {
  background: #6366f1;
  border-radius: 10px;
}

/* =========================================
   25. HERO POINTS (TECHNOLOGY)
========================================= */
.hero-points.compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.point-card2 {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent-dark);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.point-card2 i {
  color: #ffd08a;
  margin-right: 10px;
}

/* =========================================
   26. CALCULATOR SECTION (ROI-VALUE)
========================================= */
.calculator-box {
  background: var(--white);
  padding: 34px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  max-width: 1100px;
  margin: auto;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.calc-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.calc-field input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  outline: none;
  font-size: 1rem;
  transition: var(--transition);
}

.calc-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11, 61, 145, 0.08);
}

.calculator-action {
  text-align: center;
  margin: 28px 0;
}

.calculator-result {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.result-card {
  background: linear-gradient(135deg, #f8fbff, #ffffff);
  padding: 28px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.result-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.result-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.result-card p {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

/* =========================================
   27. CONTACT PAGE SPECIFIC
========================================= */
.contact-info-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-info-item i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 124, 0, 0.12);
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin-bottom: 6px;
}

.contact-form-box {
  background: var(--white);
  padding: 34px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.contact-form-box h2 {
  margin-bottom: 10px;
}
.contact-form {
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  outline: none;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11, 61, 145, 0.08);
}

textarea {
  resize: none;
}
select {
  cursor: pointer;
}
.map-box {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* =========================================
   28. PRODUCT DETAILS (V1.HTML)
========================================= */
.product-detail-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #fefaf5, #ffffff);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.product-gallery {
  background: #fefcf8;
  border-radius: 32px;
  padding: 12px;
}

.main-product-image {
  border-radius: 28px;
  overflow: hidden;
}

.main-product-image img {
  width: 100%;
  transition: 0.3s;
}

.thumbnail-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.thumb {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  cursor: pointer;
  opacity: 0.7;
}

.thumb:hover,
.active-thumb {
  opacity: 1;
  border: 2px solid #f57c00;
}

.product-info-box h1 {
  font-size: 2.4rem;
  font-weight: 800;
}

.product-subtitle {
  border-left: 3px solid #f57c00;
  padding-left: 12px;
  margin: 15px 0;
  color: #3c5a6f;
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.product-highlights div {
  background: #f8fafc;
  padding: 8px 14px;
  border-radius: 40px;
  font-size: 0.85rem;
}

.product-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 26px 0 30px;
}

.quick-spec-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: #f9fbfd;
  padding: 15px;
  border-radius: 20px;
}

.quick-spec-item h4 {
  font-size: 0.75rem;
  margin-bottom: 6px;
  color: var(--text);
}

.quick-spec-item p {
  font-weight: bold;
  color: var(--primary);
}

.product-spec-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.spec-card,
.benefit-card {
  background: var(--white);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.spec-card h2,
.benefit-card h2 {
  margin-bottom: 24px;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--border);
}

.spec-row span {
  color: var(--text-light);
  font-weight: 600;
}

.spec-row strong {
  color: var(--text);
  text-align: right;
}

/* =========================================
   29. ABOUT PAGE ENHANCED
========================================= */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.mission-card,
.vision-card {
  background: var(--white);
  padding: 44px 32px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border-bottom: 4px solid var(--accent);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.mission-card i,
.vision-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.value-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  width: 72px;
  height: 72px;
  background: rgba(67, 160, 71, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.value-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.challenge-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 32px 0 20px;
}

.challenge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fefaf5;
  padding: 16px 22px;
  border-radius: 20px;
  border-left: 4px solid var(--accent);
}

.challenge-item i {
  font-size: 1.3rem;
  color: var(--accent);
  width: 28px;
}

.challenge-item span {
  font-weight: 500;
  color: var(--text);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 30px;
}

.approach-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.approach-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, var(--white), #fff7ed);
}

.approach-number {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 18px;
}

.approach-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

.industry-tag {
  background: var(--white);
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: 0.2s;
  border: 1px solid var(--border);
}

.industry-tag:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* =========================================
   30. O&M TECHNOLOGIES PAGE
========================================= */
.tech-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 56px;
  transition: var(--transition);
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.tech-header {
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  padding: 32px 36px;
  border-bottom: 1px solid var(--border);
}

.tech-header h2 {
  margin-bottom: 8px;
  color: var(--primary);
}

.tech-header p {
  color: var(--text-light);
  font-size: 1rem;
}

.tech-body {
  padding: 32px 36px;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.list-styled {
  list-style: none;
  padding: 0;
}
.list-styled li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.list-styled li i {
  width: 24px;
  color: var(--primary);
  font-size: 1rem;
}

.check-list {
  list-style: none;
}
.check-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list li i {
  color: var(--accent);
  font-size: 1rem;
}

.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.tech-badge {
  background: #f0fdf4;
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.feature-item {
  background: #f8fafc;
  padding: 8px 14px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* =========================================
   31. OUR CLIENTS PAGE
========================================= */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.industry-icon {
  background: linear-gradient(145deg, #f0fdf4, #e8f5e9);
  padding: 32px 24px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.industry-icon i {
  font-size: 3rem;
  color: var(--primary);
}

.industry-content {
  padding: 28px;
}
.industry-content h3 {
  margin-bottom: 16px;
  color: var(--primary);
}

.industry-list {
  list-style: none;
  margin-top: 16px;
}

.industry-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px dashed var(--border);
}

.industry-list li i {
  color: var(--accent);
  font-size: 0.9rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin: 40px 0 20px;
}

.pillar {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.pillar h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.success-quote {
  background: linear-gradient(135deg, #fef9f0, #ffffff);
  border-radius: 32px;
  padding: 48px 40px;
  text-align: center;
  margin: 40px 0;
  border: 1px solid var(--border);
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
}

.success-quote p {
  font-size: 1.2rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text);
}

.partner-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 32px;
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
  margin-top: 20px;
}

.partner-box h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 16px;
}

.partner-box p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 48px 0 20px;
}

.trust-item {
  text-align: center;
  padding: 12px 24px;
  background: var(--white);
  border-radius: 60px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--primary-dark);
}

/* =========================================
   32. WEATHER MONITORING SYSTEM (WMS) PAGE
========================================= */
.sensor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.sensor-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

.sensor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.sensor-image {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sensor-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.4s ease;
}

.sensor-card:hover .sensor-image img {
  transform: scale(1.05);
}

.sensor-header {
  padding: 20px 24px 8px;
}

.sensor-header h3 {
  margin-bottom: 6px;
  color: var(--primary);
}

.sensor-header p {
  color: var(--text-light);
  font-size: 0.85rem;
}

.sensor-body {
  padding: 8px 24px 24px;
}

.sensor-body h4 {
  font-size: 0.85rem;
  color: var(--accent-dark);
  margin: 16px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sitc-box {
  background: linear-gradient(135deg, #f0fdf4, #ffffff);
  border-radius: 32px;
  padding: 40px;
  margin: 40px 0;
  border: 1px solid var(--border);
}

.sitc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.sitc-item {
  background: var(--white);
  padding: 18px 12px;
  text-align: center;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.sitc-item i {
  color: var(--accent);
  margin-right: 8px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.why-item {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.why-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

/* =========================================
   33. COMPLETE RESPONSIVE STYLES
========================================= */

/* Tablet Landscape (1100px and below) */
@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split {
    grid-template-columns: 1fr;
  }
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sensor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sitc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop (992px and below) */
@media (max-width: 992px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left h1 {
    font-size: 2.5rem;
  }
  .product-slider,
  .product-slide img {
    height: 350px;
  }
}

/* Tablet (900px and below) */
@media (max-width: 900px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .stats-grid,
  .solutions-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 110px 0 80px;
  }
  .timeline-item {
    flex-direction: column;
  }
  .page-hero {
    padding: 110px 0 90px;
  }
  .about-page-hero {
    padding: 110px 0 90px;
  }
  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }
  .hero-points.compact {
    grid-template-columns: 1fr;
  }
  .calculator-grid,
  .calculator-result {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .product-spec-layout {
    grid-template-columns: 1fr;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tech-header,
  .tech-body {
    padding: 24px;
  }
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mobile Navigation */
  .nav {
    position: absolute;
    top: 86px;
    right: 5%;
    width: min(320px, 90vw);
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
  }
  .nav.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
  .stats-section {
    margin-top: 0;
  }
  .stat-box {
    padding: 30px 20px;
  }
  .solution-image {
    height: 220px;
  }
  .container {
    padding: 0 24px;
  }
  .profile-card img {
    height: 260px;
  }
  .product-card img {
    height: 220px;
  }
  .cmp-title {
    font-size: 28px;
  }
  .cmp-td {
    font-size: 13px;
    padding: 12px;
  }
  .cmp-th {
    font-size: 12px;
    padding: 12px;
  }
  .spec-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .success-quote {
    padding: 32px 24px;
  }
  .partner-box {
    padding: 32px 24px;
  }
  .sensor-grid {
    grid-template-columns: 1fr;
  }
  .sitc-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .sitc-box {
    padding: 28px;
  }
}

/* Mobile Portrait (600px and below) */
@media (max-width: 600px) {
  .section {
    padding: 72px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  .btn {
    width: 100%;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .cta-box {
    padding: 24px;
  }
  .brand-logo {
    height: 58px;
  }
  .page-hero {
    padding: 90px 0 70px;
  }
  .about-page-hero {
    padding: 90px 0 70px;
  }
  .calculator-box {
    padding: 24px;
  }
  .contact-form-box {
    padding: 24px;
  }
  .contact-info-item {
    padding: 18px;
  }
  .product-detail-hero {
    padding: 40px 0 30px;
  }
  .product-cta-row {
    flex-direction: column;
  }
  .cmp-section {
    padding: 60px 15px;
  }
  .trust-item {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
  .tech-header h2 {
    font-size: 1.5rem;
  }
  .badge-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .sensor-image {
    height: 180px;
  }
  .thumbnail-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .thumb {
    width: 100%;
    height: auto;
  }
}

/* =========================================
   NATIONWIDE PRESENCE SECTION - COMPLETE
========================================= */

.nationwide-section {
  padding: 60px 0;
}

.nationwide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Left Content */
.nationwide-content {
  text-align: left;
}

.nationwide-content h2 {
  margin-bottom: 20px;
}

.nationwide-content p {
  margin-bottom: 0;
  line-height: 1.6;
}

.nationwide-stats {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nationwide-stats div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nationwide-stats i {
  color: var(--accent);
}

/* Right Card */
.nationwide-card {
  background: linear-gradient(145deg, #eef5ee, white);
  border-radius: 32px;
  padding: 32px;
  text-align: center;
}

.nationwide-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.nationwide-card h3 {
  color: var(--primary);
  margin-bottom: 0;
}

.nationwide-card p {
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .nationwide-grid {
    gap: 40px;
  }
  .nationwide-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .nationwide-section {
    padding: 48px 0;
  }

  .nationwide-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nationwide-content {
    text-align: center;
  }

  .nationwide-stats {
    justify-content: center;
  }

  .nationwide-card {
    padding: 28px 24px;
  }

  .nationwide-card i {
    font-size: 2rem;
  }

  .nationwide-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .nationwide-section {
    padding: 40px 0;
  }

  .nationwide-grid {
    gap: 24px;
  }

  .nationwide-content h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .nationwide-content p {
    font-size: 0.85rem;
  }

  .nationwide-stats {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .nationwide-stats div {
    font-size: 0.85rem;
  }

  .nationwide-card {
    padding: 20px 16px;
  }

  .nationwide-card i {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .nationwide-card h3 {
    font-size: 1.1rem;
  }

  .nationwide-card p {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}

/* =========================================
   WHAT MAKES US DIFFERENT - COMPLETE
========================================= */

.different-section {
  padding: 80px 0;
}

.different-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Left Content */
.different-content {
  text-align: left;
}

.different-content h2 {
  margin-bottom: 20px;
}

.different-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.different-content p:last-of-type {
  margin-bottom: 0;
}

/* Right Card */
.different-card {
  background: linear-gradient(145deg, #eef5ee, white);
  border-radius: 32px;
  padding: 40px;
  text-align: center;
}

.different-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
}

.different-card h3 {
  color: var(--primary);
  margin-bottom: 0;
}

.different-card p {
  margin-top: 16px;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .different-grid {
    gap: 40px;
  }

  .different-content h2 {
    font-size: 1.8rem;
  }

  .different-content p {
    font-size: 0.95rem;
  }

  .different-card {
    padding: 32px 28px;
  }

  .different-card i {
    font-size: 2.5rem;
  }

  .different-card h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .different-section {
    padding: 60px 0;
  }

  .different-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .different-content {
    text-align: center;
  }

  .different-content h2 {
    font-size: 1.6rem;
  }

  .different-content p {
    font-size: 0.9rem;
  }

  .different-card {
    padding: 28px 24px;
  }

  .different-card i {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .different-card h3 {
    font-size: 1.3rem;
  }

  .different-card p {
    font-size: 0.85rem;
    margin-top: 12px;
  }
}

@media (max-width: 600px) {
  .different-section {
    padding: 50px 0;
  }

  .different-grid {
    gap: 28px;
  }

  .different-content h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .different-content p {
    font-size: 0.85rem;
  }

  .different-content p:first-of-type {
    margin-bottom: 16px;
  }

  .different-card {
    padding: 24px 20px;
  }

  .different-card i {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .different-card h3 {
    font-size: 1.2rem;
  }

  .different-card p {
    font-size: 0.8rem;
    margin-top: 10px;
  }
}
.wms-section {
  padding: 80px 0;
}

.wms-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.wms-content h1 {
  margin: 20px 0;
  font-size: 3rem;
  line-height: 1.2;
}

.wms-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
}

.wms-image {
  text-align: center;
}

.wms-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;

  /* Premium Effect */
  transition: 0.4s ease;
}

.wms-image img:hover {
  transform: translateY(-8px);
}

/* Mobile */
@media (max-width: 992px) {
  .wms-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wms-content p {
    max-width: 100%;
  }

  .wms-content h1 {
    font-size: 2.2rem;
  }

  .wms-image {
    order: -1;
  }
}

.smart-tech-section {
  padding: 80px 0;
}

.smart-tech-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.smart-tech-content h1 {
  margin: 20px 0;
  font-size: 3rem;
  line-height: 1.2;
}

.smart-tech-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
}

.smart-tech-image {
  text-align: center;
}

.smart-tech-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: contain;
  transition: 0.4s ease;
}

.smart-tech-image img:hover {
  transform: translateY(-8px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .smart-tech-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .smart-tech-content h1 {
    font-size: 2.2rem;
  }

  .smart-tech-content p {
    max-width: 100%;
  }

  .smart-tech-image {
    order: -1;
  }
}

.infra-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: center;

  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.infra-card-image {
  background: linear-gradient(135deg, #eef2ff, #dbe4ff);
  border-radius: 20px;
  padding: 30px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.infra-card-image img {
  width: 100%;
  /* max-width: 320px; */
  height: auto;
  object-fit: contain;
  transition: 0.4s ease;
}

.infra-card-image img:hover {
  transform: scale(1.05);
}

.infra-icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  background: rgba(245, 158, 11, 0.1);

  color: #f59e0b;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.infra-card-content h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.infra-card-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px 20px;
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list i {
  color: #f59e0b;
  margin-top: 4px;
}

/* Mobile */
@media (max-width: 992px) {
  .infra-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .infra-card-image {
    order: -1;
  }

  .check-list {
    grid-template-columns: 1fr;
  }
}

.grid-3col {
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.tech-image img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .grid-3col {
    grid-template-columns: 1fr;
  }

  .tech-image {
    max-width: 500px;
    margin: auto;
  }
}

.trusted-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.trusted-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin: 20px 0;
}

.trusted-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #666;
}

.trusted-image {
  text-align: center;
}

.trusted-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
  .trusted-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trusted-content,
  .trusted-image {
    text-align: center;
  }

  .trusted-content h1 {
    font-size: 2.3rem;
  }
}
