/* Root + Dark Mode */
:root {
  --bg-color: #fff;
  --text-color: #111;
  --nav-bg: #eee;
  --hover-color: #007bff;
}
body.dark {
  --bg-color: #121212;
  --text-color: #f0f0f0;
  --nav-bg: #1e1e1e;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  transition: background 0.3s, color 0.3s;
}

/* Navbar */
.navbar {
  width: 100%;
  padding: 15px 20px;
  background-color: #0a5161;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 50px; /* height of top-header */
  left: 0;
  z-index: 999;
  transition: background 0.3s ease;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}
.menu a, #modeToggle {
  margin: 0 10px;
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}
.menu a:hover {
  color: var(--hover-color);
}
.menu {
  display: flex;
  padding-right: 30px;
  gap: 15px;
  align-items: center;
}
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.2);
}

/* Hero Section */


/* Responsive */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: var(--nav-bg, #fff);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }

  .menu.show {
    display: flex;
  }
 .menu a, #modeToggle {
  color: black;
}
  .menu-toggle {
    display: block;
    padding-right: 1px;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
  }
  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/* === Top Header (Over Background Image) === */
.top-header {
  width: 100%;
  padding: 10px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.9rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(4px);
  flex-wrap: wrap;
  gap: 15px;
}

.top-header .top-icon {
  display: flex;
  padding-right: 50px;
  align-items: center;
  gap: 5px;
}

.top-header input[type="text"] {
  padding: 4px 8px;
  border: none;
  border-radius: 4px;
  outline: none;
}

.top-header select {
  background-color: #fff;
  color: #000;
  padding: 4px;
  border-radius: 4px;
}

/* Mobile view */
@media (max-width: 768px) {
  .top-header {
    justify-content: center;
    padding: 8px 10px;
  }

  .top-header input,
  .top-header select {
    display: none;
  }

  .top-header .top-icon {
    font-size: 18px;
    gap: 0;
  }
}



/* === Advanced Header Section === */
.advanced-hero {
  height: 100vh;
  background: url('images/it.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
   /* ⬅️ Only cover the top part (adjust as needed) */
 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  z-index: 1;
}
.hero-content {
  color: #fff;
  max-width: 700px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.explore-btn {
  display: inline-block;
  background: #00bcd4;
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.explore-btn:hover {
  background: #0097a7;
  transform: scale(1.05);
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s ease forwards;
}

.delay {
  animation-delay: 0.5s;
}

.delay2 {
  animation-delay: 1s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero-overlay {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
  }

  .hero-content {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .explore-btn {
    padding: 10px 24px;
    font-size: 1rem;
    border-radius: 25px;
    display: inline-block;
  }
  
}

/* === About Section === */
.about-section {
  padding: 100px 20px;
  background: #f9f9f9;
  text-align: center;
}

.about-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #0a5161;
}

.about-header h2 span {
  color: #ff4081;
  animation: colorPulse 2s infinite;
}

.about-header p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Container Layout */
.about-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Awards */
.about-left {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.award-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.award-box img {
  width: 50px;
  margin-bottom: 10px;
}

.stars {
  color: #f39c12;
}

/* Middle Letters */
.about-middle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.letter {
  font-size: 2rem;
  font-weight: bold;
  color: #0a5161;
  animation: bounce 1.5s infinite;
}

.letter.delay1 { animation-delay: 0.2s; }
.letter.delay2 { animation-delay: 0.4s; }
.letter.delay3 { animation-delay: 0.6s; }
.letter.delay4 { animation-delay: 0.8s; }
.letter.delay5 { animation-delay: 1s; }

/* Bounce animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Right Info Boxes */
.about-right {
  flex: 2;
  min-width: 250px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-box {
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  height: 180px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.info-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.info-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.info-content p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.know-more {
  display: inline-block;
  padding: 6px 14px;
  background-color: #00bcd4;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
}

.know-more:hover {
  background-color: #0097a7;
}

/* Animations */
@keyframes colorPulse {
  0% { color: #ff4081; }
  50% { color: #00bcd4; }
  100% { color: #ff4081; }
}

/* === Responsive === */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-right {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .info-box {
    height: auto;
  }

  .about-middle {
    flex-direction: row;
    gap: 10px;
    margin: 20px 0;
  }
}


/* ============ Categories Section ============ */
.categories {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef7fb 100%);
}

.cat-title {
  display: block;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 3px;
  color: #0a5161;
  margin-bottom: 8px;
}
.cat-title span {
  display: inline-block;
  animation: catBounce 1.2s ease-in-out infinite;
}
.cat-title span:nth-child(1){animation-delay:.05s}
.cat-title span:nth-child(2){animation-delay:.10s}
.cat-title span:nth-child(3){animation-delay:.15s}
.cat-title span:nth-child(4){animation-delay:.20s}
.cat-title span:nth-child(5){animation-delay:.25s}
.cat-title span:nth-child(6){animation-delay:.30s}
.cat-title span:nth-child(7){animation-delay:.35s}
.cat-title span:nth-child(8){animation-delay:.40s}
.cat-title span:nth-child(9){animation-delay:.45s}
.cat-title span:nth-child(10){animation-delay:.50s}

@keyframes catBounce {
  0%,100% { transform: translateY(0) }
  50%     { transform: translateY(-8px) }
}

.cat-subtitle {
  text-align: center;
  color: #58707a;
  margin-bottom: 28px;
  font-size: 1rem;
}

/* Grid of categories */
.cat-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Card with background image + overlay */
.cat-item {
  position: relative;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  background: #ccc;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.cat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  filter: saturate(1.05);
  
}

/* dark gradient overlay for readability */
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
}

/* Content on top of image */
.cat-content {
  position: absolute;
  inset: auto 18px 18px 18px; /* bottom padding */
  color: #fff;
  z-index: 1;
}

.cat-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.cat-content p {
  font-size: .98rem;
  line-height: 1.5;
  margin-bottom: 12px;
  max-width: 95%;
  opacity: 0;
  transform: translateX(-18px);
  animation: slideIn .8s ease-out forwards .15s;
  animation-delay: 0.3s; /* default animation in */
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
    
    
  }
}

/* Read more button */
.cat-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 24px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0,114,255,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cat-btn:hover { transform: translateY(-2px) }

/* Stagger paragraph animation on hover (optional flair) */
.cat-item:hover .slide-in {
  animation: slideIn .5s ease forwards 0s;
}

/* ============ Responsiveness ============ */
@media (max-width: 1200px) {
  .cat-wrap { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .cat-wrap { grid-template-columns: repeat(2, 1fr); }
  .cat-item { height: 280px; }
}
@media (max-width: 600px) {
  .cat-title { font-size: 1.6rem; }
  .cat-wrap { grid-template-columns: 1fr; }
  .cat-item { height: 260px; }
  .cat-content { inset: auto 14px 14px 14px; }
  .cat-content h3 { font-size: 1.1rem; }
  .cat-content p  { font-size: .95rem; }
}


/* ===== Industry Section ===== */
.industry {
  padding: 80px 0 40px;
  background: var(--surface-elev, #f7fbff);
}

/* Bounce Title */
.industry-title {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #0a5161;
  margin: 0 20px 8px;
}
.industry-title span {
  display: inline-block;
  animation: indBounce 1.2s ease-in-out infinite;
}
.industry-title span:nth-child(odd){ animation-delay:.08s }
.industry-title span:nth-child(even){ animation-delay:.16s }
@keyframes indBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.industry-subtitle {
  text-align: center;
  color: #58707a;
  margin: 0 20px 22px;
  font-size: 1rem;
}

/* Controls */
.industry input[type="radio"] { display: none; }

/* Viewport */
.ind-slider {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: 460px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

/* Slide base */
.ind-slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .5s ease, transform .6s ease;
  pointer-events: none;         /* hidden slides never block */
}
.ind-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55)); z-index: 1; }
.ind-content  { position: relative; z-index: 3; text-align: center; padding: 0 26px; color: #fff; max-width: 820px; }

/* Animated heading letters */
.ind-heading { font-size: 2rem; margin-bottom: 10px; text-shadow: 0 2px 8px rgba(0,0,0,.35); }
.ind-heading span { display: inline-block; transform: translateY(18px); opacity: 0; animation: headUp .6s ease forwards; }
.ind-heading span:nth-child(1){animation-delay:.05s}
.ind-heading span:nth-child(2){animation-delay:.10s}
.ind-heading span:nth-child(3){animation-delay:.15s}
.ind-heading span:nth-child(4){animation-delay:.20s}
.ind-heading span:nth-child(5){animation-delay:.25s}
.ind-heading span:nth-child(6){animation-delay:.30s}
.ind-heading span:nth-child(7){animation-delay:.35s}
.ind-heading span:nth-child(8){animation-delay:.40s}
.ind-heading span:nth-child(9){animation-delay:.45s}
.ind-heading span:nth-child(10){animation-delay:.50s}
@keyframes headUp { to { transform: translateY(0); opacity: 1; } }

/* Paragraph slide left -> right */
.ind-text {
  opacity: 0;
  transform: translateX(-28px);
  animation: slideInX .7s ease forwards .25s;
  margin: 8px auto 16px;
  line-height: 1.6;
  font-size: 1.05rem;
  max-width: 680px;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
}
@keyframes slideInX { to { opacity: 1; transform: translateX(0); } }

/* Button */
.ind-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 26px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,114,255,.30);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative; z-index: 4;
}
.ind-btn:hover { transform: translateY(-2px); }

/* Arrows (always on top) */
.ind-prev, .ind-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 28px;
  background: rgba(0,0,0,.45);
  color: #fff;
  width: 46px; height: 46px; line-height: 46px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  z-index: 10;
  border: 2px solid rgba(255,255,255,.35);
}
.ind-prev { left: 14px; }
.ind-next { right: 14px; }

/* Dots */
.ind-dots {
  display: flex; justify-content: center; gap: 10px;
  margin: 14px 0 0; position: relative; z-index: 11;
}
.ind-dots label {
  width: 10px; height: 10px; border-radius: 50%;
  background: #a9c9d3; cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.ind-dots label:hover { transform: scale(1.15); }

/* Show the matching slide (reliable mapping) */
#ind1:checked ~ .ind-slider .ind-slide:nth-of-type(1),
#ind2:checked ~ .ind-slider .ind-slide:nth-of-type(2),
#ind3:checked ~ .ind-slider .ind-slide:nth-of-type(3),
#ind4:checked ~ .ind-slider .ind-slide:nth-of-type(4),
#ind5:checked ~ .ind-slider .ind-slide:nth-of-type(5) {
  opacity: 1; transform: scale(1); pointer-events: auto;
}

/* Active dot */
#ind1:checked ~ .ind-dots label:nth-of-type(1),
#ind2:checked ~ .ind-dots label:nth-of-type(2),
#ind3:checked ~ .ind-dots label:nth-of-type(3),
#ind4:checked ~ .ind-dots label:nth-of-type(4),
#ind5:checked ~ .ind-dots label:nth-of-type(5) {
  background: #007c91; transform: scale(1.1);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .ind-slider { height: 420px; }
  .ind-heading { font-size: 1.7rem; }
  .ind-text { font-size: 1rem; }
}
@media (max-width: 680px) {
  .industry { padding: 60px 0 34px; }
  .ind-slider { height: 380px; border-radius: 14px; }
  .industry-title { font-size: 1.6rem; }
  .ind-prev, .ind-next { width: 42px; height: 42px; line-height: 42px; }
}
@media (max-width: 520px) {
  .ind-slider { height: 340px; }
  .ind-heading { font-size: 1.4rem; }
  .ind-text { font-size: .95rem; }
}


/* ===== Services Section ===== */
.services {
  padding: 80px 20px;
  background: var(--surface-elev, #f7fbff);
  color: var(--text, #123);
}

/* Title with subtle bounce */
.sv-title {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #0a5161;
}
.sv-title span {
  display: inline-block;
  animation: svBounce 1.2s ease-in-out infinite;
}
.sv-title span:nth-child(odd){ animation-delay:.08s }
.sv-title span:nth-child(even){ animation-delay:.16s }
@keyframes svBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.sv-subtitle {
  text-align: center;
  color: #58707a;
  margin-top: 8px;
}

/* Layout: visual + grid */
.sv-layout {
  max-width: 1200px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 30px;
}

/* Orbit Visual */
.sv-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 420px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  isolation: isolate;
}

/* Core logo */
.sv-core {
  z-index: 2;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #e9f6fb);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  border: 2px solid rgba(0,0,0,.05);
}
.sv-core img { max-width: 80%; height: auto; }

/* Orbits */
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(0,124,145,.25);
  animation: spin 18s linear infinite;
  pointer-events: none; /* only planets are interactive */
}
.orbit-outer {
  width: 100%; height: 100%;
  animation-duration: 22s;
}
.orbit-inner {
  width: 68%; height: 68%;
  animation-duration: 14s;
}

/* Planets (round images) */
.planet {
  position: absolute;
  width: 84px; height: 84px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  border: 3px solid #fff;
  cursor: pointer;
  pointer-events: auto;
  transition: transform .25s ease;
}
.planet:hover { transform: scale(1.05); }

/* Place planets around the orbits */
.orbit-outer .p1 { top: -10px; left: 50%; transform: translateX(-50%); }
.orbit-outer .p2 { bottom: 8%; left: -10px; }
.orbit-outer .p3 { bottom: 12%; right: -6px; }

.orbit-inner .p4 { top: 50%; left: -6px; transform: translateY(-50%); }
.orbit-inner .p5 { top: 14%; right: 0; }

/* Pause all rotations when hovering the visual */
.sv-visual:hover .orbit { animation-play-state: paused; }

/* Spinner keyframes */
@keyframes spin { to { transform: rotate(360deg); } }

/* Services Grid */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}
.sv-card {
  background: var(--surface, #fff);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.1);
  border-color: rgba(0,124,145,.2);
}
.sv-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, #ffffff, #eaf7fb);
  color: #007c91;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.04);
  margin-bottom: 10px;
  font-size: 22px;
}
.sv-card h3 {
  font-size: 1.1rem; color: #0c2b33; margin-bottom: 6px;
}
.sv-card p {
  color: #445; font-size: .98rem; line-height: 1.55; margin-bottom: 12px;
}
.sv-btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 22px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff; text-decoration: none; font-weight: 700;
  box-shadow: 0 10px 22px rgba(0,114,255,.25);
  transition: transform .2s ease;
}
.sv-btn:hover { transform: translateY(-2px); }

/* ===== Dark Mode compatibility (if you use dark mode vars) ===== */
body.dark-mode .sv-card h3 { color: #e9eef2; }
body.dark-mode .sv-card p  { color: #cfd8dc; }

/* ===== Responsive ===== */
/* Large screens - Default styles are as you already have */

/* Tablet screens (max-width: 1100px) */
@media (max-width: 1100px) {
  .sv-layout {
    grid-template-columns: 1fr;
  }
  .sv-visual {
    max-width: 540px;
  }
}

/* Small tablets / large phones (max-width: 760px) */
@media (max-width: 760px) {
  .sv-grid {
    grid-template-columns: 1fr;
  }
  .sv-core {
    width: 100px;
    height: 100px;
  }
  .planet {
    width: 72px;
    height: 72px;
  }
}

/* Mobile phones (max-width: 480px) */
@media screen and (max-width: 480px) {

  /* Reduce section padding */
  .services {
    padding: 40px 15px;
  }

  /* Title & subtitle */
  .sv-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  .sv-subtitle {
    font-size: 0.9rem;
  }

  /* Stack layout vertically */
  .sv-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Visual smaller */
  .sv-visual {
    min-height: 300px;
    max-width: 100%;
  }

  /* Core smaller */
  .sv-core {
    width: 80px;
    height: 80px;
  }
  .sv-core img {
    max-width: 70%;
  }

  /* Planets smaller */
  .planet {
    width: 60px;
    height: 60px;
  }

  /* Single column services grid */
  .sv-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Cards smaller padding */
  .sv-card {
    padding: 14px;
  }

  /* Buttons smaller */
  .sv-btn {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}


/* ========== Contact Section ========== */
.contact-section {
  padding: 80px 20px;
  background: var(--surface-elev, #f7fbff);
  color: var(--text, #123);
}

.connect-header {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #0072ff;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.connect-header span {
  display: inline-block;
  animation: bounceLetter 1.2s ease-in-out infinite;
}

/* Delay each letter for wave effect */
.connect-header span:nth-child(1) { animation-delay: 0s; }
.connect-header span:nth-child(2) { animation-delay: 0.05s; }
.connect-header span:nth-child(3) { animation-delay: 0.1s; }
.connect-header span:nth-child(4) { animation-delay: 0.15s; }
.connect-header span:nth-child(5) { animation-delay: 0.2s; }
.connect-header span:nth-child(6) { animation-delay: 0.25s; }
.connect-header span:nth-child(7) { animation-delay: 0.3s; }
.connect-header span:nth-child(8) { animation-delay: 0.35s; }
.connect-header span:nth-child(9) { animation-delay: 0.4s; }
.connect-header span:nth-child(10) { animation-delay: 0.45s; }
.connect-header span:nth-child(11) { animation-delay: 0.5s; }
.connect-header span:nth-child(12) { animation-delay: 0.55s; }
.connect-header span:nth-child(13) { animation-delay: 0.6s; }
.connect-header span:nth-child(14) { animation-delay: 0.65s; }

@keyframes bounceLetter {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 28px;
}

/* Title with bounce */
.contact-title {
  font-size: 1.8rem;
  color: #0a5161;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.contact-title span {
  display: inline-block;
  animation: ctbounce 1.2s ease-in-out infinite;
}
.contact-title span:nth-child(odd){ animation-delay:.08s }
.contact-title span:nth-child(even){ animation-delay:.16s }
@keyframes ctbounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* LEFT */
.contact-left {
  background: var(--surface, #fff);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.contact-info {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-info li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 10px;
  border-radius: 12px;
  background: rgba(0,124,145,.06);
}
.contact-info i {
  font-size: 20px;
  color: #007c91;
  display: grid;
  place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: #eaf7fb;
}
.contact-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: #0c2b33;
}
.contact-info p { color: #445; font-size: .95rem; }

/* Map */
.contact-map {
  margin: 12px 0 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.contact-map iframe {
  width: 100%; height: 240px; border: 0;
}

/* Subscribe */
.subscribe-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.subscribe-bar input {
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 28px;
  padding: 10px 14px;
  outline: none;
  background: var(--surface, #fff);
  color: var(--text, #123);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.subscribe-bar input:focus {
  border-color: #007c91;
  box-shadow: 0 0 0 3px rgba(0,124,145,.15);
}
.sub-btn {
  border: none;
  border-radius: 28px;
  padding: 10px 16px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 22px rgba(0,114,255,.25);
}
.sub-btn:hover { transform: translateY(-2px); }

/* RIGHT */
.contact-right .form-card {
  background: var(--surface, #fff);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.form-card h3 {
  margin-bottom: 14px;
  color: #0c2b33;
  font-size: 1.3rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-size: .92rem;
  color: #345;
}
.field input,
.field textarea {
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  padding: 10px 12px;
  background: var(--surface, #fff);
  color: var(--text, #123);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .05s ease;
}
.field input:focus,
.field textarea:focus {
  border-color: #007c91;
  box-shadow: 0 0 0 3px rgba(0,124,145,.15);
}

/* File upload */
.file-field {
  align-items: center;
}
.file-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eaf7fb;
  color: #0a5161;
  border: 1px dashed #8ec9d4;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  width: fit-content;
}
.file-field input[type="file"] {
  display: none;
}
.file-hint {
  display: inline-block;
  margin-left: 10px;
  font-size: .85rem;
  color: #667;
}

/* Submit */
.send-btn {
  margin-top: 10px;
  width: 100%;
  border: none;
  border-radius: 28px;
  padding: 12px 16px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 28px rgba(0,114,255,.25);
}
.send-btn:hover { transform: translateY(-2px); }

/* Simple reveal animations */
.reveal-left {
  opacity: 0; transform: translateX(-24px);
  animation: revealL .6s ease forwards .1s;
}
.reveal-right {
  opacity: 0; transform: translateX(24px);
  animation: revealR .6s ease forwards .2s;
}
@keyframes revealL { to { opacity: 1; transform: translateX(0); } }
@keyframes revealR { to { opacity: 1; transform: translateX(0); } }

/* Dark mode tweaks */
body.dark-mode .contact-info li { background: rgba(255,255,255,.06); }
body.dark-mode .contact-info i { background: rgba(255,255,255,.12); }
body.dark-mode .form-card h3 { color: #e9eef2; }

/* Responsive */
@media (max-width: 1024px) {
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-2 { grid-template-columns: 1fr; }
  .contact-map iframe { height: 210px; }
}

/* === Footer Section === */
.footer {
  background: linear-gradient(to right, #0a5161, #003847);
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00f7ff;
  margin-bottom: 15px;
}

.footer-brand {
  flex: 1 1 250px;
  max-width: 300px;
}

.footer-brand p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social a {
  color: #fff;
  margin-right: 12px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #00f7ff;
}

/* Columns */
.footer-links {
  flex: 3 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  position: relative;
}

.footer-column h4::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #00f7ff;
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #00f7ff;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.85rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    width: 100%;
  }

  .footer-column {
    width: 100%;
  }
}




/*-------------about.html css---------------*/
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.9;
}

/* === Technology Showcase Section === */
.tech-showcase-section {
  background: #f4f9fb;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.tech-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Left and Right Side Circles */
.tech-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  align-items: center;
}

.tech-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #0a5161;
  cursor: pointer;
  transition: transform 0.3s;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.tech-circle:hover {
  transform: scale(1.1);
}

.tech-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Center Column */
.tech-center {
  flex: 2;
  text-align: center;
  max-width: 500px;
  padding: 20px;
}

.tech-letter-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
  color: #0a5161;
  font-weight: bold;
  margin-bottom: 20px;
}

.tech-letter-stack span {
  animation: bounce 1.5s infinite;
}

.delay1 { animation-delay: 0.1s; }
.delay2 { animation-delay: 0.2s; }
.delay3 { animation-delay: 0.3s; }
.delay4 { animation-delay: 0.4s; }
.delay5 { animation-delay: 0.5s; }
.delay6 { animation-delay: 0.6s; }
.delay7 { animation-delay: 0.7s; }
.delay8 { animation-delay: 0.8s; }
.delay9 { animation-delay: 0.9s; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.tech-description {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* === Responsive === */
@media (max-width: 992px) {
  .tech-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .tech-side {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tech-circle {
    margin: 10px;
  }

  .tech-letter-stack {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}



/* === Company Section === */
.company-section {
  padding: 80px 20px;
  background: #f9fbfc;
}

.company-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.company-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1 1 300px;
}

.company-box {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.company-box:hover {
  transform: scale(1.03);
}

.box-content {
  background: rgba(10, 81, 97, 0.85);
  color: #fff;
  padding: 20px;
  width: 100%;
  text-align: left;
  transition: background 0.3s ease;
}

.box-content h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.box-content p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* === Responsive === */
@media (max-width: 992px) {
  .company-container {
    flex-direction: column;
    align-items: center;
  }

  .company-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .company-box {
    width: 45%;
    height: 200px;
  }

  @media (max-width: 600px) {
    .company-box {
      width: 100%;
    }
  }
}
 /*------industry*/
 /* === Industry Section === */
.industry-section {
  padding: 80px 20px;
  background: #f4f9fc;
  text-align: center;
}

.industry-header h2 {
  font-size: 2.5rem;
  color: #0a5161;
  margin-bottom: 10px;
}

.industry-header p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Slider Container */
.industry-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.industry-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Slide Group */
.industry-slide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  width: 100%;
  padding: 10px;
  flex-shrink: 0;
}

.industry-box {
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.industry-box:hover {
  transform: scale(1.03);
}

.industry-content {
  position: absolute;
  bottom: 0;
  background: rgba(10, 81, 97, 0.85);
  color: white;
  width: 100%;
  padding: 20px;
  transition: 0.3s ease;
}

.industry-content h4 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.slider-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #0a5161;
  color: white;
  font-size: 2rem;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  user-select: none;
}

.slider-arrow.left {
  left: 10px;
}

.slider-arrow.right {
  right: 10px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .industry-slide {
    grid-template-columns: 1fr;
  }

  .industry-box {
    height: 200px;
  }

  .industry-header h2 {
    font-size: 1.8rem;
  }

  .slider-arrow {
    font-size: 1.5rem;
    padding: 5px 10px;
  }
}




/*-------service and product*/
/* === Product & Services Section === */
.product-services-section {
  padding: 80px 20px;
  background: #f2f7fb;
  text-align: center;
}

.product-header h2 {
  font-size: 2.5rem;
  color: #0a5161;
  margin-bottom: 10px;
}

.product-header p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Circle Container */
.product-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.product-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1 1 300px;
}

/* Circular Boxes */
.product-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
}

.product-circle:hover {
  transform: scale(1.05);
}

.circle-content {
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 15px;
  width: 100%;
  text-align: center;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  transition: 0.3s ease;
}

.circle-content h4 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.circle-content p {
  font-size: 0.9rem;
  margin: 0;
}

/* === Responsive === */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    align-items: center;
  }

  .product-circle {
    width: 160px;
    height: 160px;
  }

  .circle-content {
    font-size: 0.85rem;
  }
}
/* === Middle Decorative Box === */
.product-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 20px;
}

.middle-icon-box {
  text-align: center;
  background: linear-gradient(135deg, #0a5161, #3cb4c6);
  color: white;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  animation: bounceIn 2s ease;
}

.middle-icon-box .pulse-icon {
  font-size: 40px;
  margin-bottom: 10px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

@keyframes bounceIn {
  0% { transform: translateY(-30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* === Responsive Adjustments === */
@media (max-width: 1024px) {
  .product-container {
    flex-direction: column;
    align-items: center;
  }

  .product-middle {
    padding: 30px 10px;
  }
}


