/* ===========================
   SRPL — GLOBAL RESET & TOKENS
=========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy:    #0a1c4e;
  --blue:    #1a4bcc;
  --sky:     #00b4e6;
  --accent:  #e63162;
  --white:   #ffffff;
  --offwhite:#f4f8ff;
  --text:    #2d3a52;
  --muted:   #6b7a99;
  --border:  #dde5f5;
  --grad:    linear-gradient(135deg, #1a4bcc, #00b4e6);
  --grad-acc:linear-gradient(135deg, #1a4bcc, #e63162);
  --shadow:  0 12px 40px rgba(10,28,78,0.10);
  --shadow-lg:0 24px 64px rgba(10,28,78,0.18);
  --radius:  20px;
  --radius-sm:12px;
  --radius-pill:100px;
  --font: 'Poppins', sans-serif;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; }
ul { list-style: none; }

/* ===========================
   UTILITY
=========================== */
.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  padding: 7px 18px;
  background: rgba(26,75,204,0.08);
  color: var(--blue);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-heading span {
  background: var(--grad-acc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 680px;
}

.gradient-line {
  width: 80px;
  height: 4px;
  border-radius: 10px;
  background: var(--grad-acc);
  margin: 20px 0 28px;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 76px;
  background: rgba(10, 28, 78, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 28, 78, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

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

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-logo-text span {
  color: var(--sky);
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.10);
}

.nav-cta {
  background: var(--grad) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  box-shadow: 0 4px 16px rgba(26,75,204,0.35);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,75,204,0.45) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover { background: rgba(255,255,255,0.15); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 10px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

.mobile-nav.open {
  pointer-events: all;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-nav.open .mobile-nav-overlay {
  opacity: 1;
}

.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--navy);
  padding: 90px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: right var(--transition);
  overflow-y: auto;
}

.mobile-nav.open .mobile-nav-drawer {
  right: 0;
}

.mobile-nav-drawer a {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.mobile-nav-drawer a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  padding-left: 22px;
}

.mobile-nav-cta {
  margin-top: 20px !important;
  background: var(--grad) !important;
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
  border-bottom: none !important;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/SRPL_BULDING.png') center center / cover no-repeat;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 28, 78, 0.95) 0%,
    rgba(10, 28, 78, 0.75) 45%,
    rgba(10, 28, 78, 0.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 0 80px;
  margin-left: -50PX;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0, 180, 230, 0.15);
  border: 1px solid rgba(0, 180, 230, 0.3);
  border-radius: var(--radius-pill);
  color: var(--sky);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sky);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 720px;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--sky), #5b9eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-divider {
  width: 80px;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--sky), var(--accent));
  margin-bottom: 24px;
}

.hero p {
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--grad);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(26,75,204,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(26,75,204,0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.hero-stat h3 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  max-width: none;
  margin: 0;
}

/* ===========================
   FEATURES BAR
=========================== */
.features-bar {
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 10;
}

.features-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: var(--border);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 30px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--offwhite); }

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  background: rgba(26,75,204,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue);
}

.feature-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.feature-item p {
  font-size: 12px;
  color: var(--muted);
}

/* ===========================
   ABOUT
=========================== */
.about-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

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

.about-text .section-sub {
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feat-card {
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.about-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}

.about-feat-card i {
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 10px;
}

.about-feat-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.about-badge h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.about-badge p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

/* ===========================
   PRODUCTS SECTION
=========================== */
.products-section {
  padding: 100px 0;
  background: var(--offwhite);
}

.products-header {
  text-align: center;
  margin-bottom: 50px;
}

.products-header .section-sub {
  margin: 0 auto;
}

.product-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--grad);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(26,75,204,0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-card-body {
  padding: 24px;
}

.product-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.product-card-body p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

.product-card-btns {
  display: flex;
  gap: 10px;
}

.btn-enquire {
  flex: 1;
  text-align: center;
  padding: 11px;
  background: var(--grad);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-enquire:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-details {
  flex: 1;
  text-align: center;
  padding: 10px;
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-details:hover {
  background: var(--blue);
  color: var(--white);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-blue   { background: var(--blue); }
.badge-green  { background: #16a34a; }
.badge-purple { background: #7c3aed; }
.badge-orange { background: #ea6c0a; }

.products-view-all {
  text-align: center;
}

.btn-border {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}

.btn-border:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   PORTFOLIO CATEGORIES
=========================== */
.portfolio-section {
  padding: 90px 0;
  background: var(--navy);
}

.portfolio-section .section-heading {
  color: var(--white);
}

.portfolio-section .section-sub {
  color: rgba(255,255,255,0.6);
}

.portfolio-header {
  text-align: center;
  margin-bottom: 50px;
}

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

.portfolio-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.portfolio-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--sky);
  transform: translateY(-6px);
}

.portfolio-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
}

.portfolio-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.portfolio-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ===========================
   CERTIFICATIONS
=========================== */
.cert-section {
  padding: 0;
  background: var(--grad);
}

.cert-strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.cert-item {
  padding: 26px 30px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(255,255,255,0.2);
  flex: 1;
  justify-content: center;
  text-align: center;
  min-width: 150px;
}

.cert-item:last-child { border-right: none; }
.cert-item i { font-size: 20px; opacity: 0.85; }

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: #07132e;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,180,230,0.06), transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo-wrap img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.footer-about {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  transition: all var(--transition);
}

.footer-social:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}

.footer-col ul li {
  margin-bottom: 13px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a::before {
  content: '→';
  font-size: 12px;
  color: var(--sky);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--sky);
  margin-top: 2px;
  min-width: 16px;
}

.footer-map {
  margin-top: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
}

.footer-map iframe {
  width: 100%;
  height: 160px;
  border: none;
  display: block;
}

.footer-features-bar {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}

/* ===========================
   CONTACT PAGE
=========================== */
.page-hero {
  background: var(--navy);
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero .section-tag { color: var(--sky); background: rgba(0,180,230,0.12); }
.page-hero .section-heading { color: var(--white); }
.page-hero .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto; }

.contact-grid {
  padding: 80px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-cards {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.contact-info-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue);
  transform: translateX(4px);
}

.contact-info-card-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.contact-info-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--muted);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact-form-wrap h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,75,204,0.08);
}

.contact-form-wrap textarea {
  height: 130px;
  resize: vertical;
}

.contact-form-wrap .btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--grad);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}

.contact-form-wrap .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26,75,204,0.4);
}

/* ===========================
   BLOGS PAGE
=========================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  padding: 80px 0;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

.blog-card-img {
  position: relative;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.blog-card-body {
  padding: 26px;
}

.blog-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.blog-read-more {
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.blog-read-more:hover { gap: 12px; }

/* ===========================
   PRODUCT PAGE
=========================== */
.products-page-layout {
  display: flex;
  min-height: calc(100vh - 76px);
  padding-top: 76px;
}

.sidebar {
  width: 260px;
  min-width: 260px;
  background: var(--navy);
  padding: 40px 24px;
  position: sticky;
  top: 76px;
  height: calc(100vh - 76px);
  overflow-y: auto;
}

.sidebar-heading {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sidebar-menu { list-style: none; }

.sidebar-menu li { margin-bottom: 8px; }

.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}

.sidebar-menu a:hover,
.sidebar-menu li.active a {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.sidebar-menu li.active a {
  background: var(--grad);
  color: var(--white);
}

.sidebar-menu i { width: 18px; text-align: center; }

.products-main {
  flex: 1;
  padding: 40px;
  background: var(--offwhite);
  overflow: hidden;
}

/* ===========================
   RESPONSIVE — TABLET
=========================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrap { order: -1; }
  .about-badge { bottom: 16px; left: 16px; }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .features-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3),
  .feature-item:nth-child(4) { border-top: 1px solid var(--border); }

  .products-page-layout { flex-direction: column; }
  .sidebar {
    width: 100%;
    min-width: 0;
    position: static;
    height: auto;
  }
  .sidebar-menu { display: flex; flex-wrap: wrap; gap: 8px; }
  .sidebar-menu li { margin-bottom: 0; }
}

/* ===========================
   RESPONSIVE — MOBILE
=========================== */
@media (max-width: 768px) {
  /* NAV */
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .nav-cta { display: none !important; }

  /* HERO */
  .hero-stats { gap: 28px; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }

  /* FEATURES BAR */
  .features-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
  .feature-item:nth-child(even) { border-right: none; }
  .feature-item:nth-child(3),
  .feature-item:nth-child(4) { border-top: 1px solid var(--border); }

  /* ABOUT */
  .about-features { grid-template-columns: 1fr 1fr; }

  /* PORTFOLIO */
  .portfolio-grid { grid-template-columns: 1fr 1fr; }

  /* CERT */
  .cert-strip { flex-direction: column; gap: 0; }
  .cert-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); width: 100%; }
  .cert-item:last-child { border-bottom: none; }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-features-bar { flex-direction: column; align-items: center; }

  /* FORMS */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }

  /* BLOG */
  .blog-grid { grid-template-columns: 1fr; }

  /* SECTION HEADINGS */
  .section-heading { font-size: clamp(24px, 7vw, 36px); }
}

@media (max-width: 480px) {
  .features-bar-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }

  .about-features { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }

  .hero-stat { min-width: 40%; }
}

/* ===========================
   SCROLL REVEAL ANIMATIONS
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ANIMATIONS — Added on top of existing UI
   ============================================================ */

/* ---- Global smooth transition for interactive elements ---- */
*, *::before, *::after {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* ---- Page load fade-in ---- */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body {
  animation: pageFadeIn 0.5s ease forwards;
}

/* ==============================
   HERO ANIMATIONS
============================== */

/* Parallax-style slow zoom on hero bg */
@keyframes heroZoom {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.hero-bg {
  animation: heroZoom 8s ease forwards;
  transform-origin: center center;
}

/* Hero content slides up on load */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  animation: heroSlideUp 0.7s ease 0.2s both;
}
.hero h1 {
  animation: heroSlideUp 0.7s ease 0.4s both;
}
.hero-divider {
  animation: heroSlideUp 0.7s ease 0.55s both;
}
.hero p {
  animation: heroSlideUp 0.7s ease 0.65s both;
}
.hero-buttons {
  animation: heroSlideUp 0.7s ease 0.78s both;
}
.hero-stats {
  animation: heroSlideUp 0.7s ease 0.92s both;
}

/* Animated gradient on hero-divider */
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-divider, .gradient-line {
  background-size: 200% 200%;
  animation: shimmer 4s ease infinite;
}

/* Pulse glow on eyebrow dot */
@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,180,230,0.5); }
  50%       { opacity: 0.4; box-shadow: 0 0 0 6px rgba(0,180,230,0); }
}
.hero-eyebrow::before {
  animation: blink 2s ease infinite;
}

/* Stat counter bounce-in */
@keyframes statPop {
  0%   { opacity: 0; transform: scale(0.7); }
  70%  { transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
.hero-stat:nth-child(1) { animation: statPop 0.5s ease 1.1s both; }
.hero-stat:nth-child(2) { animation: statPop 0.5s ease 1.25s both; }
.hero-stat:nth-child(3) { animation: statPop 0.5s ease 1.4s both; }
.hero-stat:nth-child(4) { animation: statPop 0.5s ease 1.55s both; }

/* Floating particles in hero overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(0,180,230,0.18) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 60px 60px, 120px 120px;
  background-position: 0 0, 30px 30px;
  animation: particleDrift 20s linear infinite;
  z-index: 1;
}

@keyframes particleDrift {
  from { background-position: 0 0, 30px 30px; }
  to   { background-position: 60px 60px, 90px 90px; }
}

/* ==============================
   NAVBAR ANIMATIONS
============================== */

/* Logo brand pulse on hover */
.nav-logo:hover .nav-logo-text {
  background: linear-gradient(90deg, #fff, var(--sky), #fff);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 1.5s ease infinite;
}

/* Nav link hover — lift + glow */
.nav-links a {
  position: relative;
  overflow: hidden;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--sky);
  border-radius: 10px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 70%;
}

/* CTA button ripple */
.nav-cta {
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.nav-cta:hover::before {
  transform: scaleX(1);
}

/* ==============================
   SCROLL REVEAL — staggered
============================== */

/* Base */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings inside containers */
.features-bar-inner .reveal:nth-child(1) { transition-delay: 0s; }
.features-bar-inner .reveal:nth-child(2) { transition-delay: 0.1s; }
.features-bar-inner .reveal:nth-child(3) { transition-delay: 0.2s; }
.features-bar-inner .reveal:nth-child(4) { transition-delay: 0.3s; }

.products-grid .reveal:nth-child(1) { transition-delay: 0s; }
.products-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.products-grid .reveal:nth-child(3) { transition-delay: 0.24s; }
.products-grid .reveal:nth-child(4) { transition-delay: 0.36s; }

.portfolio-grid .reveal:nth-child(1) { transition-delay: 0s; }
.portfolio-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.portfolio-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.portfolio-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

/* Slide from left for about text */
.about-text.reveal {
  transform: translateX(-40px);
}
.about-text.reveal.visible {
  transform: translateX(0);
}

/* Slide from right for about image */
.about-image-wrap.reveal {
  transform: translateX(40px);
}
.about-image-wrap.reveal.visible {
  transform: translateX(0);
}

/* ==============================
   FEATURE ICON — spin on hover
============================== */
.feature-item:hover .feature-icon i {
  animation: iconSpin 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes iconSpin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(20deg) scale(1.2); }
  100% { transform: rotate(0deg) scale(1); }
}

/* Feature item — slide left reveal */
.feature-item {
  position: relative;
  overflow: hidden;
}
.feature-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}
.feature-item:hover::before {
  transform: scaleY(1);
}

/* ==============================
   PRODUCT CARDS
============================== */

/* Shimmer loading skeleton → replaced by image reveal */
.product-card img {
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.95);
}
.product-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

/* Card glow on hover */
.product-card:hover {
  box-shadow: 0 20px 50px rgba(26,75,204,0.20), 0 0 0 2px rgba(26,75,204,0.12);
}

/* Badge pop in */
@keyframes badgePop {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.product-badge {
  animation: badgePop 0.45s cubic-bezier(0.4,0,0.2,1) 0.3s both;
}

/* Button ripple */
.btn-enquire, .btn-primary, .btn-border, .btn-outline {
  position: relative;
  overflow: hidden;
}
.btn-enquire::after,
.btn-primary::after,
.btn-border::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.25) 0%, transparent 70%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  border-radius: inherit;
}
.btn-enquire:hover::after,
.btn-primary:hover::after,
.btn-border:hover::after {
  transform: scale(2);
  opacity: 1;
}

/* ==============================
   ABOUT SECTION
============================== */

/* Image float */
@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.about-image-wrap img {
  animation: floatImg 6s ease-in-out infinite;
}

/* About badge bounce in */
@keyframes badgeBounce {
  0%   { opacity: 0; transform: translateY(20px) scale(0.8); }
  60%  { transform: translateY(-6px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.about-badge {
  animation: badgeBounce 0.7s ease 0.8s both;
}

/* Feat cards — scale on hover */
.about-feat-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.about-feat-card:hover {
  transform: translateY(-6px) scale(1.03);
}
.about-feat-card:hover i {
  animation: iconSpin 0.5s ease forwards;
}

/* ==============================
   PORTFOLIO / CATEGORY CARDS
============================== */

/* Icon rotate on hover */
.portfolio-card:hover .portfolio-card-icon i {
  animation: iconSpin 0.45s ease forwards;
}

/* Card border glow pulse */
.portfolio-card {
  transition: all 0.35s ease;
}
.portfolio-card:hover {
  box-shadow: 0 0 0 1px var(--sky), 0 20px 40px rgba(0,180,230,0.15);
}

/* ==============================
   CERT STRIP
============================== */
.cert-item {
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.cert-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}
.cert-item i {
  transition: transform 0.3s ease;
}
.cert-item:hover i {
  transform: rotate(15deg) scale(1.2);
}

/* Running ticker animation on cert strip */
@keyframes certGlow {
  0%, 100% { text-shadow: none; }
  50%       { text-shadow: 0 0 16px rgba(255,255,255,0.5); }
}
.cert-item:hover {
  animation: certGlow 1.5s ease infinite;
}

/* ==============================
   FOOTER
============================== */

/* Social icon bounce */
.footer-social {
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s ease, color 0.3s ease;
}
.footer-social:hover {
  transform: translateY(-5px) scale(1.15);
}

/* Footer links slide */
.footer-col ul li a {
  transition: color 0.25s ease, padding-left 0.25s ease;
}

/* Footer feature items */
.footer-feat {
  transition: transform 0.3s ease;
}
.footer-feat:hover {
  transform: scale(1.08);
}

/* ==============================
   NAV LOGO FLOAT
============================== */
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-3px); }
}
.nav-logo img {
  animation: logoFloat 3s ease-in-out infinite;
}

/* ==============================
   SCROLL-TO-TOP BUTTON
============================== */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26,75,204,0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}
#scrollTop.show {
  opacity: 1;
  transform: translateY(0);
}
#scrollTop:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 30px rgba(26,75,204,0.5);
}

/* ==============================
   COUNT-UP numbers — no layout change
============================== */
.hero-stat h3 {
  display: inline-block;
}

/* ==============================
   PAGE TRANSITIONS
============================== */
.page-transition-out {
  animation: pageFadeIn 0.3s ease reverse forwards;
}

/* ==============================
   CONTACT INFO CARDS
============================== */
.contact-info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.contact-info-card-icon {
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.contact-info-card:hover .contact-info-card-icon {
  transform: rotate(-10deg) scale(1.15);
}

/* ==============================
   BLOG CARDS
============================== */
.blog-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.blog-card-img img {
  transition: transform 0.5s ease;
}
.blog-card:hover img {
  transform: scale(1.06);
}
.blog-read-more {
  transition: gap 0.25s ease, color 0.25s ease;
}
.blog-read-more i {
  transition: transform 0.25s ease;
}
.blog-read-more:hover i {
  transform: translateX(4px);
}

/* ==============================
   FILTER BUTTONS
============================== */
.filter-btn {
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.filter-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2), transparent 70%);
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: inherit;
}
.filter-btn:hover::after {
  transform: scale(2);
  opacity: 1;
}
.filter-btn.active {
  transform: translateY(-2px);
}

/* ==============================
   MOBILE NAV DRAWER links
============================== */
.mobile-nav-drawer a {
  position: relative;
  overflow: hidden;
}
.mobile-nav-drawer a::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--sky);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
.mobile-nav-drawer a:hover::after {
  transform: scaleY(1);
}

/* ==============================
   TYPING CURSOR on hero h1 span
============================== */
.hero h1 span::after {
  content: '|';
  color: var(--sky);
  margin-left: 2px;
  animation: cursorBlink 1.1s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ==============================
   REDUCE MOTION
============================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
