html, body {
  overflow-x: hidden;
    scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  color: #fff;
}

header {
  background-color: #000;
  padding: 1rem 2rem;
  border-bottom: 1px solid #222;

  top: 0;
  z-index: 1000;
}

.logo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

header img {
  height: 120px;
  margin-right: 2rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #74baff;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s ease;
  text-transform: uppercase;
}

nav a:hover {
  color: #ffffff;
}

.hero {
  background: url('/images/service\ banner.png') no-repeat center center/cover;
  height: 750px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h2 {
  font-size: 16px;
  font-weight: 600;
  color: #66ccff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #1669bc;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero a.button {
  padding: 0.8rem 1.8rem;
  background-color: transparent;
  border: 2px solid #ff4500; 
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
}

.hero a.button:hover {
  background-color: #d55121cb;
  color: white;
}

@media (max-width: 768px) {
  nav {
    margin-top: 1rem;
    justify-content: center;
  }

  .logo-nav {
    flex-direction: column;
    align-items: center;
  }

  header img {
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 14px;
  }
}




.section-black {
  background-color: #000;
  text-align: center;
  color: #fff;
  padding-top: 25px;
  border-top: 2px solid #c1c5c9;
  border-bottom: 2px solid #c1c5c9;
}

.small-heading {
  font-size: 12px;
  color: #3cb0ff; 
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  
}

.main-heading {
  font-size: 32px;
  font-weight: bold;
  
}

.description {
  font-size: 16px;
  max-width: 800px;
  margin: auto;
  color: #fff;
  padding-bottom: 25px;
  padding: 10px;
}




.risk-section {
  background-image: url('/images/parabolic-rectangle.png');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: white;
  position: relative;
}

.risk-section-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 60px 20px;
  border-radius: 8px;
  max-width: 1200px;
  margin: 0 auto;
}

.risk-heading {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  color: #fff;
}

.risk-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  margin: 0 auto;
  background-color: #e84923; 
}

.risk-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.risk-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

@media  (max-width: 786px) {
    .risk-card {
        width: 80%;
    }
}

.risk-card:hover {
  transform: translateY(-5px);
}

.risk-card h3 {
  color: #66ccff;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.risk-card p {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.6;
}


/* Apply to #WHY-ICCS (recommended) */
#WHY-ICCS {
  background-image: url(https://images4.alphacoders.com/485/thumb-1920-48578.jpg);
  background-position: center;
  background-size: cover;
  border-top: 2px solid rgba(255,69,0,0.06);
  border-bottom: 2px solid rgba(255,69,0,0.06);
  box-shadow: 0 14px 40px rgba(2,8,20,0.6);
  border-top: 2px solid;
  border-bottom: 2px solid;
}


/* === Three-image showcase === */
.three-image-showcase {
  padding: 34px 20px;
  margin: 22px auto;
  max-width: 50%;
  position: relative;
  z-index: 30;
}

.three-wrap {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 22px;
  align-items: center;
}

/* left stacked images */
.stack-left {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 18px;
}

.img-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 14px 40px rgba(2,8,18,0.6);
  transition: transform 0.45s cubic-bezier(.2,.9,.2,1), box-shadow 0.35s;
}

.img-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  transform-origin: center center;
  transition: transform 0.6s ease;
}

/* small stacked */
.img-card.small {
  min-height: 160px;
}

/* large hero */
.img-card.large {
  min-height: 360px;
  display: flex;
  align-items: end;
  justify-content: start;
}

.img-card.large img { 
  height: 100%;
  transform: translateY(-4px) scale(1.02);
}

/* caption styles */
.img-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: #e6f6ff;
  z-index: 10;
  text-shadow: 0 6px 18px rgba(4,10,22,0.65);
}

.img-card figcaption strong { display:block; font-size: 1.02rem; }
.img-card figcaption span, .img-card figcaption .caption-sub { font-size: 0.88rem; color: #bcdfff; }

/* interaction */
.img-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(2,8,20,0.7);
}

.img-card:hover img {
  transform: scale(1.04);
}

/* small decorative accents overlapping the hero-right block */
.hero-right { position: relative; }
.image-accent { position: absolute; right: -28px; top: -20px; pointer-events: none; z-index: 5; }
.accent-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #ff4500);
  box-shadow: 0 10px 30px rgba(255,69,0,0.12);
}
.accent-line {
  height: 120px; width: 2px; margin-top: 6px;
  background: linear-gradient(180deg, rgba(255,69,0,0.85), rgba(255,69,0,0.15));
  opacity: 0.85;
}

/* responsive */
@media (max-width: 980px) {
  .three-wrap { grid-template-columns: 1fr; }
  .img-card.large { min-height: 260px; }
  .stack-left { grid-auto-rows: auto; grid-template-columns: 1fr 1fr; gap: 12px; }
  .img-card.small { min-height: 120px; }
  .image-accent { display:none; }
}

@media (max-width: 540px) {
  .stack-left { grid-template-columns: 1fr; }
  .img-card.large { min-height: 200px; }
}


/* Observability section (compact, modern, dark theme) */
.observability-section {
  background: linear-gradient(180deg, rgba(18,24,32,0.9), rgba(8,12,18,0.95));
  color: #e6f6ff;
  padding: 48px 20px;
  border-top: 4px solid rgba(255,69,0,0.12);
  margin-top: 24px;
  border-radius: 40px;
}

.obs-container {
  margin: 0 auto;
}

.obs-header h2 {
  font-size: 1.6rem !important;
  color: white !important;
  margin-bottom: 10px;
  line-height: 1.25;
}

.obs-sub {
  color: #bcdfff;
  margin: 0 auto 40px;
  max-width: 980px;
  text-align: center;
  margin: 30px auto;
}

/* Grid layout for steps */
.obs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.obs-step {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.55);
  min-height: 160px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.step-head {
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.step-number {
  background: linear-gradient(180deg,#ff4500,#ff7a3b);
  color:#fff;
  font-weight:700;
  padding:6px 10px;
  border-radius:8px;
  font-size:0.85rem;
  line-height:1;
  box-shadow: 0 6px 18px rgba(255,69,0,0.12);
}

.obs-step h3 {
  font-size: 1rem;
  margin: 0;
  color: #fff;
  font-weight:700;
}

.step-lead {
  color: #cfeeff;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

/* details styling */
.obs-step details {
  margin-top: 6px;
  color: #d2e9ff;
}

.obs-step summary {
  cursor: pointer;
  font-weight: 600;
  background: rgba(255,255,255,0.02);
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.02);
  list-style: none;
}

.detail-block {
  margin-top: 12px;
  color: #cfe9ff;
  font-size: 0.9rem;
}

.detail-block h4 {
  margin-top: 8px;
  color: #fff;
  font-size: 0.95rem;
}

.detail-block ul {
  margin: 8px 0 12px 18px;
  color: #dbeffd;
  line-height: 1.5;
}

/* We Deliver box */
.deliver {
  margin-top: 8px;
  background: rgba(255,255,255,0.02);
  padding: 8px 10px;
  border-radius: 8px;
  border-left: 4px solid rgba(255,69,0,0.9);
}

/* Metrics */
.obs-metrics {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255,255,255,0.04);
}

.obs-metrics h3 {
  margin-bottom: 12px;
  color: #fff;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.metric {
  background: rgba(255,255,255,0.02);
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  color: #cfe9ff;
  border: 1px solid rgba(255,255,255,0.03);
}

.metric span {
  display: block;
  font-size: 1.1rem;
  color: #fff;
  margin-top: 6px;
}

/* small note */
.obs-note {
  color: #a9d6ff;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1000px) {
  .obs-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .obs-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .obs-header h2 { font-size: 1.25rem; }
}




.services-header {
    text-align: center;
    padding: 40px 20px;
    background-color: #2c3e5086;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-header h2 {
    color: #74c1f4;
    font-size: 18px;
    margin-bottom: 5px;
}

.services-header h1 {
    color: white;
    font-size: 32px;
    text-transform: uppercase;
}

.services-header .border-line {
    width: 240px;
    height: 2px;
    background-color: #ff4500; 
}

@media (max-width: 768px) {
.services-header h1 {
    font-size: 26px;
    }
.services-header h2 {
    font-size: 16px;
    }
.services-header .border-line {
    width: 100px;
    }
}

.carousel-inner {
    background-size: cover;
    background-position: center;
}

.carousel-item {
    position: relative;
    text-align: center;
    color: white; 
    height: 400px; 
    margin-bottom: 50px;

}

@media (max-width: 768px) {

    .carousel-item {
    position: relative;
    text-align: center;
    color: white; 
    min-height: 650px;

}
}

.carousel-item h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.carousel-item ul {
    list-style-type: none;
    padding: 0;
}

.carousel-item ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 16px;
}

.carousel-item ul li::before {
    content: "~";
    font-size: 18px;
    color: #66ccff;
    position: absolute;
    left: 0;
}

.carousel-control-prev, 
.carousel-control-next {
    background-color: #2c3e5006; 
    width: 0;
}

.carousel-indicators button {
    background-color: white; 
    width: 12px;
    height: 12px;
}

.carousel-indicators .active {
    background-color: #66ccff; 
}




grc-core {
    display: block;
    text-align: center;
}

.custom-title {
    background-color: #2c3e50; 
    color: white;
    padding: 20px;
    font-size: 28px;
}

.custom-controls {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.custom-control {
    background-color: #6a9ad087;
    color: white;
    padding: 20px;
    margin: 10px;
    width: 22%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: left;
}

.custom-subtitle {
    border-bottom: 2px solid white;
    padding-bottom: 15px;
    font-size: 18px;
}

.custom-list {
    list-style-type: none;
    padding: 0;
}

.custom-list li {
    margin: 10px 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .custom-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .custom-control {
        width: 90%;
    }
}




.info-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 80px;
  margin: 0 auto;
  width: 80%;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 5px 8px 10px #151515;
  margin-right: 3px;
  border-radius: 10px;
  padding: 10px;
}

.info-row {
  position: relative;
  padding-bottom: 10px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #ff4500;
  transition: width 1.5s ease-in-out;
}

.info-row:hover {
  transform: translateX(6px) scale(1.01); 
}

.info-row:hover::after {
  width: 100%;
}

.info-number {
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  background-color: #66ccff;
  color: white;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-row img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.info-content {
  flex: 1;
}

.info-content h3 {
  color: #66ccffbc;
  font-size: 18px;
  margin: 0 0 10px;
  text-transform: uppercase;
  text-align: start;
}

.info-content p {
  color: #fff;
  font-size: 14px;
  margin: 0;
  text-align: start;
}

@media (max-width: 768px) {
  .info-row {
    flex-direction: column;
    text-align: center;
  }

  .info-content {
    margin-top: 10px;
  }
}




.hero-section {
  background: url('/images/cover\ 1.png') center center / cover no-repeat;
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: white;
  position: relative;
  border-top: 4px solid;
  border-bottom: 4px solid;
}

.text-orange {
  color: #ff4500;
  text-transform: lowercase;
}

.inner-hero {
  background-color: rgba(0, 0, 0, 0.814); 
  border: 1px solid rgba(255, 255, 255, 0.297);
}

.hero-section h1 {
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

.hero-section h2 {
    text-shadow: 0 2px 5px rgba(0,0,0,0.6);
          color: #66ccff;
}




/* === Highlights section: animated vertical gradient with double-tick icons === */
.highlights-section {
  background-color: #89abd4;
  padding: 44px 20px;
}
.highlights-wrap {
  background: linear-gradient(180deg, rgba(2, 23, 42, 0.973), rgba(5, 25, 33, 0.786));
  padding: 42px;
  width: 80%;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 12px 40px rgba(3,8,20,0.55);
  position: relative;
  overflow: visible;
}
.highlight-title {
  font-size: 1.05rem;
  color: #eeff00;
  margin-bottom: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.highlight-grid {
  position: relative;
  display: block;
}
.hl-line {
  position: absolute;
  left: 28px;
  top: 20px;
  bottom: 20px;
  width: 6px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(0, 21, 255, 0.95), rgba(0, 255, 255, 0.55), rgba(0, 21, 255, 0.12));
  filter: blur(8px);
  animation: hl-flow 3.6s linear infinite;
}
@keyframes hl-flow {
  0% { background-position: 0 0; }
  50% { background-position: 0 50%; }
  100% { background-position: 0 100%; }
}
.hl-list {
  list-style: none;
  padding: 6px 0 6px 84px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hl-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  padding-left: 0;
  opacity: 0;
  transform: translateY(10px);
  animation: hl-reveal 0.64s cubic-bezier(.2,.9,.2,1) forwards;
}
.hl-list li:nth-child(1){ animation-delay: 0.06s; }
.hl-list li:nth-child(2){ animation-delay: 0.12s; }
.hl-list li:nth-child(3){ animation-delay: 0.20s; }
.hl-list li:nth-child(4){ animation-delay: 0.28s; }
.hl-list li:nth-child(5){ animation-delay: 0.36s; }
.hl-list li:nth-child(6){ animation-delay: 0.44s; }
@keyframes hl-reveal {
  to { opacity: 1; transform: translateY(0); }
}
.hl-check {
  display: inline-block;
  color: #fff;
  background: linear-gradient(180deg,#3bb1ff,#3300ff);
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(255,69,0,0.14);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-width: 46px;
  text-align: center;
}
.hl-content h4 { margin: 0; font-size: 1rem; color: #fff; text-transform: uppercase; font-weight: 800; }
.hl-desc { margin: 6px 0 0; color: #dbeffd; font-size: 0.95rem; line-height: 1.4; }
.hl-list li:hover .hl-check { transform: translateY(-6px) scale(1.04); box-shadow: 0 20px 50px rgba(255,69,0,0.22); }
/* responsive */
@media (max-width: 900px) {
  .hl-list { padding-left: 68px; }
  .hl-line { left: 20px; }
}
@media (max-width: 560px) {
  .hl-list { padding-left: 48px; gap: 14px; }
  .hl-line { display: none; }
}



    .enquiry-section {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 50px;
      padding: 80px 20px;
      flex-wrap: wrap;
      border-top: 4px solid;
      background-color: #36363660;
    }

    .enquiry-text {
      max-width: 400px;
      flex: 1;
      font-size: 16px;
      line-height: 1.6;
      color: #ffffff;
    }

    .enquiry-text strong {
      display: block;
      font-size: 18px;
      margin-bottom: 10px;
      color: #f46f58;
    }

    .enquiry-box {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 40px;
      border-radius: 12px;
      width: 100%;
      max-width: 700px;
      flex: 1;
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .enquiry-box h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 10px;
      color: #ffffff;
    }

    .enquiry-box p {
      text-align: center;
      color: #ccc;
      margin-bottom: 30px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }

    .form-grid input,
    .enquiry-box textarea {
      background: transparent;
      border: none;
      border-bottom: 1px solid #ff4d4d;
      color: #fff;
      padding: 10px 5px;
      width: 100%;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .form-grid input:focus,
    .enquiry-box textarea:focus {
      border-color: #ffffff;
    }

    .enquiry-box textarea {
      grid-column: 1 / -1;
      resize: vertical;
      min-height: 100px;
    }

    .enquiry-box button {
      background-color: #5ebeff;
      color: #000;
      border: none;
      padding: 12px 20px;
      border-radius: 6px;
      width: 100%;
      cursor: pointer;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .enquiry-box button:hover {
      background-color: #7edbff;
    }

    @media (max-width: 900px) {
      .enquiry-section {
        flex-direction: column;
        align-items: center;
      }

      .enquiry-text {
        text-align: center;
        max-width: 600px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }
    }





.site-footer {
  background-color: #0d1117;
  color: #ccc;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.site-footer p {
  margin: 0 0 1rem;
  line-height: 1.4;
}

.back-to-top {
  background-color: #00c8ff;
  color: #000;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.back-to-top:hover {
  background-color: #00aee0;
}

.back-to-top .arrow {
  font-size: 1.2rem;
}