.navbar-nav .nav-link {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
  margin: 5px;
  width: 100%;
}
@media (max-width: 1024px) {
  .navbar-nav .nav-link {
    font-size: 12px;
    margin: 0px;
  }
  .btn-orange {
    padding: 4px 10px;
    font-size: 12px;
  }
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

.btn-orange {
  background-color: var(--primary);
  color: white;
  border-radius: 50px;
  padding: 6px 20px;
  font-weight: 500;
}

.btn-orange:hover {
  background-color: var(--primary-700);
  color: white;
}

.navbar-brand img {
  height: 50px;
}

/* Light theme palette */
:root {
  --primary: #4f8cff; /* light blue */
  --primary-700: #3a6fd9;
  --accent: #7bdff2; /* soft aqua */
  --accent-2: #b2f7ef; /* very light aqua */
  --warning: #ffd166; /* soft amber */
  --bg-soft: #f6faff; /* pale background */
  --text-strong: #1f2937;
  --text-muted: #667085;
}

:root {
  --hero-height: 78vh;
  --caption-max: 780px;
  --overlay-dark: 0.45;
  /* --radius-xl: 1.25rem; */
  --glow: 0 15px 45px rgba(0, 0, 0, 0.35);
  --anim-speed: 5s;
}

/* body {
            background: #0e0f13;
            color: #f8f9fa;
        } */

.hero-wrap {
  max-width: 1580px;
  margin-inline: auto;
  /* padding: 1.25rem; */
  border-radius: none;
}

.carousel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--glow);
}

.carousel-item {
  position: relative;
  height: var(--hero-height);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  border-radius: none;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.66) 10%,
    rgba(0, 0, 0, var(--overlay-dark)) 55%,
    rgba(0, 0, 0, 0.15) 90%
  );
  z-index: 1;
}

.carousel-item::after {
  content: "";
  position: absolute;
  inset: -10% -20%;
  background: radial-gradient(
      60vmax 60vmax at 10% 20%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    ),
    radial-gradient(
      40vmax 40vmax at 90% 10%,
      rgba(255, 255, 255, 0.06),
      transparent 55%
    );
  z-index: 2;
  mix-blend-mode: screen;
  transform: translateZ(0);
  animation: floaty 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes floaty {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(-2%, 1.5%, 0) scale(1.03);
  }
}

.parallax {
  position: absolute;
  inset: 0;
  background: inherit;
  background-attachment: fixed;
  filter: saturate(1.05);
}

.carousel-caption {
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 3rem clamp(1rem, 4vw, 3rem);
  max-width: var(--caption-max);
}

.carousel-caption .badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.headline {
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.2px;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

.lead-text {
  color: #e9ecef;
  opacity: 0.95;
  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.45);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-glass:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.22);
}

.slide-progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.15);
}

.slide-progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #fff, #ddd);
}

.carousel-item.active .slide-progress > span {
  animation: fill var(--anim-speed) linear forwards;
}

@keyframes fill {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 12%;
  opacity: 0.85;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  margin: 0 6px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.25);
}

.carousel-indicators .active {
  background-color: #fff;
}

@media (max-width: 768px) {
  :root {
    --hero-height: 64vh;
  }

  .headline {
    font-size: clamp(1.35rem, 5.6vw, 2.2rem) !important;
  }

  .lead-text {
    font-size: 0.95rem;
  }

  .carousel-caption {
    top: 0%;
  }
}

.btn-glass {
  background-color: var(--primary-700);
  border: none;
}

@media (max-width: 768px) {
  .btn-glass {
    font-size: 10px;
  }

  .btn-light {
    font-size: 10px;
  }
}

.one {
  top: 20%;
}

@media (max-width: 768px) {
  .one {
    top: 0%;
  }
}

.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* .right-side {
      position: relative;
      background: url('./images/animation.mp4') center/cover no-repeat;
      min-height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    } */
.clock-overlay {
  background: #fff;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 2.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

@media (max-width: 768px) {
  .right-side {
    min-height: 300px;
  }
}

.right-side {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Prevents scrollbars from video overflow */
}

.right-side {
  position: relative;
  /* for overlay positioning */
  overflow: hidden;
  /* hide extra video edges */
  height: 530px;
  /* or whatever height you want */
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* maintain aspect ratio */
  z-index: 0;
}

.clock-overlay {
  position: relative;
  z-index: 1;
  color: #1b1919;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.clock-overlay {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 2.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.tab-buttons .btn {
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab-buttons .btn.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(79, 140, 255, 0.35);
  transform: scale(1.05);
}

.tab-buttons .btn:not(.active):hover {
  background: var(--accent);
  color: white;
}

.search-box {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: 600px;
  margin: auto;
}

.search-box {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: 100%;
  /* full width by default */
  max-width: 760px;
  /* limits maximum width */
  margin: auto;
  box-sizing: border-box;
}

/* Optional: adjust padding and gap on smaller screens */
@media (max-width: 768px) {
  .search-box {
    padding: 15px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .search-box {
    flex-direction: column;
    /* stack items vertically */
    align-items: stretch;
    padding: 10px;
    gap: 6px;
  }
}

.search-box select,
.search-box input {
  flex: 1;
  min-width: 200px;
  border-radius: 6px;
  border: none;
  padding: 10px;
}

.search-box button {
  background: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  color: var(--primary);
  transition: all 0.3s ease;
}

.search-box button:hover {
  background: var(--primary);
  color: white;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  background: white;
  border-radius: 8px;
  padding: 8px;
  top: auto;
  bottom: -50px;
}

.slider-container {
  position: relative;
  max-width: 1250px;
  margin: auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.card {
  flex: 0 0 calc(20% - 20px);
  /* 5 per row on desktop */
  margin: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card i {
  font-size: 40px;
  color: orange;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 992px) {
  .card {
    flex: 0 0 calc(33.333% - 20px);
  }
}

/* 3 per row */
@media (max-width: 576px) {
  .card {
    flex: 0 0 calc(100% - 20px);
  }
}

/* 1 per row */

.silder-sec {
  background-color: hwb(120 84% 8%);
  padding: 40px;
}

.slick-next,
.slick-prev {
  z-index: 5;
}

.slick-next {
  right: -22px;
}

.slick-prev {
  left: -25px;
}

.slick-next:before,
.slick-prev:before {
  color: #000;
  font-size: 26px;
  font-family: inherit;
}

.pricing {
  margin-top: 30px;
}

.section-title h2,
h3 {
  text-align: center;
}

.section-title {
  margin-bottom: 20px;
}

.section-title h2 {
  color: var(--primary);
}

.faq-section {
  background: #f9f9fb;
  padding: 60px 20px;
}

.faq-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--primary);
}

.accordion-button {
  font-weight: 500;
  background-color: #fff;
  color: black;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: #fff;
}

.accordion-body {
  background: #fff;
  color: #555;
}

#footer {
  font-size: 15px;
}

#footer .footer-links a {
  color: black;
  margin-left: 15px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-decoration: none;
}

#footer .footer-links a:hover {
  color: #ffcc00;
  border-bottom: 2px solid #ffcc00;
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}
.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.about-hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.who-we-are-section {
  background: #ffffff;
}
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(123, 223, 242, 0.1));
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid rgba(79, 140, 255, 0.2);
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 25px;
  line-height: 1.2;
}
.section-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.image-wrapper-about img {
  width: 100%;
  transition: transform 0.3s ease;
}
.image-wrapper-about:hover img {
  transform: scale(1.05);
}
.vision-mission-section {
  background: linear-gradient(135deg, #f8faff 0%, #e8f4ff 100%);
  padding: 80px 0;
}
.vm-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.vm-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 50px rgba(79, 140, 255, 0.2);
}
.vm-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.vm-icon i {
  font-size: 2.5rem;
  color: #fff;
}
.vm-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 20px;
}
.vm-card p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.future-outlook-section {
  background: #ffffff;
}
.future-card {
  background: linear-gradient(135deg, #f8faff, #ffffff);
  border-radius: 24px;
  padding: 30px;
  border: 2px solid rgba(79, 140, 255, 0.15);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.future-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.05), transparent 70%);
  pointer-events: none;
}
.future-icon-badge {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(79, 140, 255, 0.3);
}
.future-icon-badge i {
  font-size: 3rem;
  color: #fff;
}
.future-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 25px;
}
.future-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.future-text:last-child {
  margin-bottom: 0;
}

/* Responsive About Page */
@media (max-width: 992px) {
  .about-hero-title {
    font-size: 2.5rem;
  }
  .about-hero-subtitle {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .future-card {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0 60px;
  }
  .about-hero-title {
    font-size: 2rem;
  }
  .about-hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-text {
    font-size: 1rem;
  }
  .vm-card {
    padding: 30px;
  }
  .future-card {
    padding: 30px 20px;
  }
  .future-title {
    font-size: 1.8rem;
  }
  .future-text {
    font-size: 1rem;
  }
}

/* Services Page Styles */
.services-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.services-hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}
.services-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.services-hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.services-grid-section {
  background: #f8f9fa;
}
.service-item {
  background: #fff;
  border-radius: 24px;
  padding: 15px 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(79, 140, 255, 0.15);
}
.highlight-service {
  background: linear-gradient(135deg, #f8faff, #ffffff);
  border: 2px solid var(--primary);
}
.service-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  color: #fff;
  font-size: 1.0rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.new-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffd166, #ffb700);
  color: #fff;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-item-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 10px;
}
.service-description {
  font-size: 1.0rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}
.service-includes h5 {
  font-weight: 500;
  color: var(--text-strong);
  margin-top: 15px;
  margin-bottom: 10px;
}
.service-list {
  list-style: none;
  padding: 0;
}
.service-list li {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-list li i {
  color: var(--primary);
  font-size: 1.0rem;
}
.service-icon-wrapper {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(123, 223, 242, 0.1));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.service-icon-wrapper i {
  font-size: 8rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-item:hover .service-icon-wrapper {
  transform: scale(1.05);
}
.smart-city-icon {
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.15), rgba(255, 177, 0, 0.1));
}

/* Electronics Section */
.electronics-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 100px 0;
  position: relative;
}
.electronics-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.electronics-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ffd166, #ffb700);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
}
.electronics-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 20px;
}
.electronics-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.electronics-products h5 {
  font-weight: 700;
  color: var(--text-strong);
  margin-top: 30px;
  margin-bottom: 15px;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.product-tag {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
}
.btn-electronics {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(79, 140, 255, 0.3);
  transition: all 0.3s ease;
}
.btn-electronics:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(79, 140, 255, 0.4);
  color: #fff;
}
.btn-electronics i {
  transition: transform 0.3s ease;
}
.btn-electronics:hover i {
  transform: translateX(5px);
}

/* Responsive Services */
@media (max-width: 992px) {
  .services-hero-title {
    font-size: 2.5rem;
  }
  .services-hero-subtitle {
    font-size: 1.2rem;
  }
  .service-item {
    padding: 40px 30px;
  }
  .service-icon-wrapper {
    height: 300px;
  }
  .service-icon-wrapper i {
    font-size: 6rem;
  }
  .electronics-card {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .services-hero {
    padding: 80px 0 60px;
  }
  .services-hero-title {
    font-size: 2rem;
  }
  .services-hero-subtitle {
    font-size: 1rem;
  }
  .service-item {
    padding: 30px 20px;
  }
  .service-item-title {
    font-size: 1.6rem;
  }
  .service-description {
    font-size: 1rem;
  }
  .service-icon-wrapper {
    height: 250px;
    margin-top: 30px;
  }
  .service-icon-wrapper i {
    font-size: 5rem;
  }
  .electronics-section {
    padding: 60px 0;
  }
  .electronics-card {
    padding: 30px 20px;
  }
  .electronics-title {
    font-size: 2rem;
  }
  .electronics-text {
    font-size: 1rem;
  }
  .product-tag {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

.contact {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  padding: 60px 0;
}

/* New Contact Section */
.contact-section-new {
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  padding: 80px 0;
}
.contact-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 20px;
}
.contact-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 1px solid rgba(79, 140, 255, 0.1);
}
.contact-info-card h3 {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.8rem;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  /* margin-bottom: 25px; */
  padding: 20px;
  background: linear-gradient(135deg, #f8faff, #ffffff);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.contact-detail-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(79, 140, 255, 0.15);
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i {
  font-size: 1.5rem;
  color: #fff;
}
.contact-detail-item h6 {
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 5px;
  font-size: 1rem;
}
.contact-detail-item p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}
.contact-detail-item a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-detail-item a:hover {
  color: var(--primary-700);
  text-decoration: underline;
}
.social-links-new h6 {
  color: var(--text-strong);
  font-weight: 700;
}
.social-icon-new {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icon-new:hover {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 8px 25px rgba(79, 140, 255, 0.3);
  color: #fff;
}
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(79, 140, 255, 0.1);
}
.contact-form-card h3 {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.8rem;
}
.contact-form-card .form-floating > .form-control {
  border: 2px solid #e8f0fe;
  border-radius: 12px;
  padding: 1rem 0.75rem;
  height: calc(3.5rem + 2px);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form-card .form-floating > .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(79, 140, 255, 0.15);
}
.contact-form-card .form-floating > label {
  color: var(--text-muted);
  padding: 1rem 0.75rem;
}
.contact-form-card .form-floating textarea.form-control {
  height: auto;
  min-height: 150px;
}
.btn-submit-new {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(79, 140, 255, 0.3);
}
.btn-submit-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(79, 140, 255, 0.4);
}
.btn-submit-new i {
  transition: transform 0.3s ease;
}
.btn-submit-new:hover i {
  transform: translateX(5px);
}

/* Responsive Contact Section */
@media (max-width: 992px) {
  .contact-main-title {
    font-size: 2.2rem;
  }
  .contact-subtitle {
    font-size: 1.1rem;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .contact-section-new {
    padding: 60px 0;
  }
  .contact-main-title {
    font-size: 1.8rem;
  }
  .contact-subtitle {
    font-size: 1rem;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 25px;
  }
  .contact-detail-item {
    padding: 15px;
  }
  .social-icon-new {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

.section-title h2 {
  font-weight: 700;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 30px;
  position: relative;
}

.contact-about h3 {
  color: #ff9800;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-about p {
  font-size: 15px;
  color: #555;
}

.social-links a {
  font-size: 20px;
  margin-right: 10px;
  color: #555;
  transition: 0.3s;
}

.social-links a:hover {
  color: #ff9800;
}

.info-item {
  background: white;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
  font-size: 12px;
  font-weight: 500;
}

.info-item:hover {
  transform: translateY(-3px);
}

.info-item i {
  font-size: 22px;
  color: #ff9800;
}

.php-email-form .form-control {
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #ddd;
  padding: 10px 15px;
}

.php-email-form button {
  background: #ff9800;
  color: white;
  padding: 10px 25px;
  border-radius: 8px;
  border: none;
  transition: 0.3s;
}

.php-email-form button:hover {
  background: #e68900;
}

.error {
  color: red;
  font-size: 13px;
  margin-top: 5px;
}

.dis-sec {
  max-width: 1000px;
}

.phone-img {
  max-width: 100%;
  height: 600px;
  display: block;
  margin: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 5rem;
}

.middle-img {
  height: 600px;
  /* Fixed height for the middle image */
  margin-top: -2px;
  /* Moves it slightly upward */
}

.phone-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.qr-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: box-shadow 0.3s ease;
}

.qr-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.qr-card img.qr {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}

.qr-text {
  font-size: 14px;
}

.qr-text strong {
  font-weight: 600;
}

.dis {
  padding-top: 1rem;
  margin: auto;
  text-align: center;
}

.blog-section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-weight: 700;
  color: var(--primary);
  /* Netway-style highlight color */
  margin-bottom: 10px;
}

.section-title p {
  color: #555;
}

.blog-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px;
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.blog-card-text {
  font-size: 0.95rem;
  color: #666;
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  color: #ff6600;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--primary);
}

.testimonial-card {
  transition: transform 0.3s, box-shadow 0.3s;
  background: #ffffff;
  border-radius: 12px;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.rounded-circle {
  height: 100px;
}

/* Floating button */
.talk-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 1.25rem;
  border: none;
}

/* hover/tap feedback */
.talk-btn:active {
  transform: scale(0.96);
}

.talk-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 160, 60, 0.18);
}

/* subtle pulse for attention */
.talk-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  left: 0;
  top: 0;
  animation: pulse 2.2s infinite;
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: screen;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* small label above button (optional) */
.talk-label {
  position: fixed;
  right: 100px;
  bottom: 34px;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 6px 10px;
  border-radius: 18px;
  font-size: 0.85rem;
  display: none;
  /* show on larger screens if you want */
}

/* chat modal adjustments to appear as a small chat box */
.chat-modal .modal-dialog {
  position: fixed;
  right: 20px;
  bottom: 90px;
  /* above the button */
  margin: 0;
  max-width: 360px;
}

.chat-modal .modal-content {
  border-radius: 12px;
  overflow: hidden;
}

.chat-header {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
}

.hero-section {
  position: relative;
  background: linear-gradient(120deg, var(--accent-2), var(--bg-soft));
  color: #0f172a;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/banner/hero_banner.png');
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: -20% -10% 0 -10%;
  /* background:
    radial-gradient(40vmax 40vmax at 10% 20%, rgba(79, 140, 255, 0.18), transparent 60%),
    radial-gradient(30vmax 30vmax at 90% 10%, rgba(123, 223, 242, 0.18), transparent 55%),
    radial-gradient(24vmax 24vmax at 50% 100%, rgba(255, 209, 102, 0.16), transparent 60%); */
  background-image: url('images/banner/hero_banner.jpg');
  background-size: cover;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;

  pointer-events: none;
  z-index: 0;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -60px 120px rgba(15, 23, 42, 0.06);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-brand-name {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(6px);
  color: var(--text-strong);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-title {
  color: #e7e7e7;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}
.hero-sub {
  color: #b9d7fd;
}
@media (max-width: 576px) {
  .hero-title { white-space: normal; }
  .hero-brand-name { 
    font-size: 1.8rem; 
    letter-spacing: 0.1em;
  }
}
@media (max-width: 768px) {
  .hero-brand-name { 
    font-size: 2.2rem; 
    letter-spacing: 0.12em;
  }
}
.hero-bullet {
      color: #3ad9d3;
  font-weight: 600;
}

/* Core Expertise Section */
.core-expertise {
  background: #ffffff;
}
.expertise-title {
  color: var(--primary);
  font-size: 2.5rem;
}
.expertise-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(79, 140, 255, 0.1);
}
.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(79, 140, 255, 0.2);
  border-color: var(--primary);
}
.expertise-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.expertise-icon i {
  font-size: 2.5rem;
  color: #fff;
}
.expertise-card:hover .expertise-icon {
  transform: scale(1.1) rotate(5deg);
}
.expertise-card h5 {
  color: var(--text-strong);
  font-size: 1.1rem;
}
.expertise-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .expertise-title {
    font-size: 1.8rem;
  }
  .expertise-icon {
    width: 70px;
    height: 70px;
  }
  .expertise-icon i {
    font-size: 2rem;
  }
}

/* Founder's Message Section */
.founder-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  padding: 50px 0;
  position: relative;
}
.founder-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 20%, rgba(79, 140, 255, 0.05), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(123, 223, 242, 0.05), transparent 50%);
  pointer-events: none;
}
.founder-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.founder-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 8px solid #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.founder-frame:hover .founder-img {
  transform: scale(1.05);
}
.founder-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd166, #ffb700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 177, 0, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}
.founder-badge i {
  font-size: 2rem;
  color: #fff;
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.founder-decorative-shape {
  position: absolute;
  border-radius: 30px;
  z-index: -1;
}
.founder-decorative-shape.shape-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(123, 223, 242, 0.1));
  top: -30px;
  right: -30px;
  filter: blur(20px);
}
.founder-decorative-shape.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.15), rgba(255, 177, 0, 0.1));
  bottom: -20px;
  left: -20px;
  filter: blur(15px);
}
.founder-label {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(123, 223, 242, 0.1));
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(79, 140, 255, 0.2);
}
.founder-name {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-strong);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.founder-message {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 30px;
}
.founder-message::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 6rem;
  color: rgba(79, 140, 255, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}
.founder-quote-large {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-strong);
  line-height: 1.7;
  margin-bottom: 20px;
}
.founder-message p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}
.founder-message p:last-child {
  margin-bottom: 0;
}
.founder-signature {
  display: flex;
  align-items: center;
  gap: 20px;
}
.signature-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 10px;
}
.founder-title strong {
  color: var(--text-strong);
  font-size: 1.2rem;
  font-weight: 700;
}
.founder-title span {
  color: var(--text-muted);
  font-size: 1rem;
  font-style: italic;
}

/* Responsive Founder Section */
@media (max-width: 992px) {
  .founder-section {
    padding: 80px 0;
  }
  .founder-name {
    font-size: 2.5rem;
  }
  .founder-quote-large {
    font-size: 1.15rem;
  }
  .founder-message {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .founder-section {
    padding: 60px 0;
  }
  .founder-frame {
    max-width: 300px;
  }
  .founder-name {
    font-size: 2rem;
    text-align: center;
  }
  .founder-label {
    font-size: 0.85rem;
  }
  .founder-quote-large {
    font-size: 1.05rem;
  }
  .founder-message {
    padding: 25px;
  }
  .founder-message p {
    font-size: 0.95rem;
  }
  .founder-signature {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .founder-badge {
    width: 60px;
    height: 60px;
  }
  .founder-badge i {
    font-size: 1.6rem;
  }
}

/* Upcoming Ventures Section */
.ventures-section {
  background: linear-gradient(135deg, #f8faff 0%, #e8f4ff 100%);
  padding: 40px 0;
  position: relative;
}
.ventures-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(79, 140, 255, 0.08), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(123, 223, 242, 0.08), transparent 50%);
  pointer-events: none;
}
.ventures-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(79, 140, 255, 0.3);
}
.ventures-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.2;
}
.ventures-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.vision-box {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  gap: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease;
}
.vision-box:hover {
  transform: translateX(8px);
}
.vision-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd166, #ffb700);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vision-icon i {
  font-size: 1.8rem;
  color: #fff;
}
.vision-content h5 {
  color: var(--text-strong);
  font-weight: 700;
}
.vision-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.ventures-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-item {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(79, 140, 255, 0.2);
}
.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon-wrapper i {
  font-size: 1.8rem;
  color: #fff;
}
.feature-item h6 {
  margin-bottom: 5px;
  color: var(--text-strong);
  font-weight: 700;
  font-size: 1.1rem;
}
.feature-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 80px 0;
  overflow: hidden;
}
.cta-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1), transparent 50%);
  pointer-events: none;
}
.cta-wrapper {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 50px 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.cta-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.cta-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  font-weight: 500;
}
.btn-consultation {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--primary);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 3px solid #fff;
}
.btn-consultation:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}
.btn-consultation i {
  transition: transform 0.3s ease;
}
.btn-consultation:hover i {
  transform: translateX(5px);
}
.cta-decorative-dots {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: 
    radial-gradient(circle, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .ventures-title {
    font-size: 2rem;
  }
  .cta-title {
    font-size: 1.6rem;
  }
  .cta-wrapper {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .ventures-section {
    padding: 60px 0;
  }
  .ventures-title {
    font-size: 1.75rem;
  }
  .ventures-text {
    font-size: 1rem;
  }
  .vision-box {
    flex-direction: column;
    text-align: center;
  }
  .vision-icon {
    margin: 0 auto;
  }
  .feature-item {
    padding: 20px;
  }
  .cta-section {
    padding: 60px 0;
  }
  .cta-wrapper {
    padding: 30px 20px;
  }
  .cta-title {
    font-size: 1.4rem;
  }
  .cta-subtitle {
    font-size: 1rem;
  }
}
.hero-art {
  position: relative;
}
.hero-illustration {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(79, 140, 255, 0.18), 0 10px 30px rgba(15, 23, 42, 0.08);
}
.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.7;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  animation: floaty 14s ease-in-out infinite alternate;
}
.floating-shape.shape-a { width: 120px; height: 120px; background: rgba(79, 140, 255, 0.22); top: -20px; right: 8%; }
.floating-shape.shape-b { width: 80px; height: 80px; background: rgba(178, 247, 239, 0.28); bottom: 8%; right: 0; animation-duration: 18s; }
.floating-shape.shape-c { width: 64px; height: 64px; background: rgba(255, 209, 102, 0.26); top: 20%; left: -12px; animation-duration: 16s; }

@media (max-width: 640px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }

  .content-section img {
    width: 100%;

    height: auto;
  }
}

.policy-card {
  border: 1px solid #eef0f4;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
}

.section-title {
  scroll-margin-top: 6rem;
}

.toc a {
  text-decoration: none;
}

.toc a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: #e1f0fa;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: var(--primary);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: var(--primary);
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description,
.services .icon-box:hover p {
  color: #fff !important;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: var(--primary);
}
.more-services {
  padding-top: 20px;
}

.more-services .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.more-services .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.more-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.more-services .card-title a {
  color: #222222;
}

.more-services .card-text {
  color: #5e5e5e;
}

.more-services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.more-services .read-more a:hover {
  text-decoration: underline;
}

.more-services .card:hover .card-body {
  background: var(--primary);
}

.more-services .card:hover .read-more a,
.more-services .card:hover .card-title,
.more-services .card:hover .card-title a,
.more-services .card:hover .card-text {
  color: #fff;
}
.video-content {
  display: flex;
}
.video-content ul {
  width: 60%;
}

.video-wrapper {
  background-size: cover;
  background-position: 50% 50%;
  margin: auto;
  width: 40%;
  height: 100%;
  object-fit: cover;
  display: flex;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .video-content ul,
  .video-wrapper {
    width: 100%;
  }
  .video-content {
    display: block;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 0px auto;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters ul {
  margin-bottom: 0 !important;
  border: none;
  justify-content: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 12px 15px 15px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: -1px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
#nav-tabContent {
  /*border: 1px solid #FFAC1C !important;*/
  background: #fff !important;
  padding-top: 27px !important;
}
#nav-tabContent li {
  list-style: none;
  margin-bottom: 5px;
}
#nav-tabContent ul {
  padding-left: 0px;
  margin-top: 20px;
}
#nav-tabContent h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
#nav-tabContent p span {
  font-size: 18px;
}
.portfolio #portfolio-flters li.active,
.portfolio #portfolio-flters li.active:hover {
  color: WHITE;
  border-color: var(--primary);
  border-bottom: none;
  border-radius: 5px 5px 5px 5px;
  background-color: var(--primary);
}
.portfolio #portfolio-flters li:hover {
  border: 1px solid transparent;
  color: var(--primary);
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: var(--primary);
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #f2821a;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #f2821a;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

:root {
  --accent: var(--primary);
  --badge: var(--accent);
  --card-radius: 18px;
}

.pricing-card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 18px;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pc-top {
  text-align: center;
  margin-bottom: 12px;
}

.speed-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  background: var(--badge);
  color: #fff;
  margin-bottom: 6px;
}

.main-price {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.prices-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed #ddd;
  cursor: pointer;
  position: relative;
}

.collapse-details {
  font-size: 15px;
  color: white;
  padding: 6px;
  background: var(--primary);
  border-radius: 8px;
  margin-top: 4px;
  display: none;
  /* default hidden */
}

/* hover par details show */
.prices-list li:hover + .collapse-details {
  display: block;
}

.ott-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 10px 0;
}

.ott-logo {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.buy-btn,
.view-btn {
  width: 100%;
  margin-top: 8px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-weight: 600;
}

.view-btn {
  background: #6c757d;
  margin-top: 4px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  display: inline-block;
  transition: background 0.3s ease;
 
  background: var(--primary);
}
.plan {
  background-color: var(--bg-soft);
}
.logo-icon {
  width: 40px;
  height: 40px;
  margin: 10px;
}
.modal-content {
  border-radius: 15px;
  overflow: hidden;
}
.modal-left {
  background: linear-gradient(135deg, var(--primary), var(--accent)); /* Themed gradient */
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.modal-left h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}
.modal-left p {
  font-size: 18px;
  margin: 0;
}
.modal-right {
  background: #fff;
  padding: 30px;
}
.btn-orange {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  border: none;
}
.btn-orange:hover {
  background: var(--primary-700);
  color: #fff;
}
.form-control,
.form-select {
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
.stat-box {
  text-align: center;
  margin-bottom: 20px;
}
/* Counter */
.stat-number {
  font-size: 3.4rem;
  font-weight: 800;
  color: #000;
}
.stat-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* About intro section */
.about-section {
  background: linear-gradient(180deg, var(--bg-soft), #ffffff);
}
/* .about-wrap { display: contents; } */
.about-title {
  color: var(--text-strong);
}
.about-text {
  color: var(--text-muted);
}
.about-illustration {
  width: 100%;
  max-width: 480px;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(79, 140, 255, 0.16), 0 10px 30px rgba(15, 23, 42, 0.08);
}
.about-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.6;
}
.about-art { isolation: isolate; }
.about-art .shape-1 { width: 90px; height: 90px; background: rgba(79, 140, 255, 0.2); right: -12px; top: -12px; }
.about-art .shape-2 { width: 70px; height: 70px; background: rgba(178, 247, 239, 0.25); left: -10px; bottom: -10px; }

/* manual css
--------------------------------------------------------------*/
/* ===== Service Interest & Quick Inquiry Sections ===== */

.section-badge-orange {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #ff7a00, #ff9933);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.text-orange {
  color: #ff7a00 !important;
}

/* Service Interest Section */
.service-interest-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.interest-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-check {
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.service-check:hover {
  border-color: #ff7a00;
  background: #fff5ee;
}

.service-check .form-check-input:checked ~ .form-check-label {
  color: #ff7a00;
  font-weight: 600;
}

.service-check .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0.1em;
  cursor: pointer;
  margin-left: 0px;
  margin-right: 15px;
}

.service-check .form-check-input:checked {
  background-color: #ff7a00;
  border-color: #ff7a00;
}

.service-check .form-check-label {
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

/* Quick Inquiry Section */
.quick-inquiry-section {
  background: white;
}

.quick-inquiry-form {
  background: #f8f9fa;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.inquiry-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.inquiry-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.inquiry-info-item i {
  font-size: 28px;
  flex-shrink: 0;
}

/* Form Enhancements */
.form-floating > .form-control,
.form-floating > .form-select {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 0 0.25rem rgba(255, 122, 0, 0.1);
}

.form-floating > label {
  color: #6c757d;
  padding: 12px 16px;
}

/* Button Enhancements */
.btn-orange.btn-lg {
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.25);
  transition: all 0.3s ease;
}

.btn-orange.btn-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.35);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .interest-form-wrapper,
  .quick-inquiry-form {
    padding: 25px;
  }
  
  .service-check {
    padding: 12px 15px;
  }
  
  .inquiry-info-items {
    gap: 15px;
  }
}

/* Alert Success/Error Styling */
.form-messages .alert {
  border-radius: 12px;
  padding: 15px 20px;
  font-weight: 500;
  border: none;
}

.form-messages .alert-success {
  background: #d4edda;
  color: #155724;
}

.form-messages .alert-danger {
  background: #f8d7da;
  color: #721c24;
}


/* ===== Custom Animations ===== */

/* Floating Animation for Icons */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.expertise-icon i,
.why-choose-icon i {
  animation: float 3s ease-in-out infinite;
}

.expertise-icon:hover i {
  animation: none;
  transform: scale(1.2) rotate(360deg);
  transition: transform 0.6s ease;
}

/* Pulse Animation for Badges */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.founder-badge {
  animation: pulse 2s ease-in-out infinite;
}

/* Gradient Animation */
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.section-badge-orange {
  background: linear-gradient(135deg, #ff7a00, #ff9933, #ff7a00);
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

/* Number Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number {
  animation: countUp 1s ease-out;
}

/* Slide In Animation for Cards */
.expertise-card,
.why-choose-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 122, 0, 0.2);
}

/* Shimmer Effect on Hover */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.btn-orange::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-orange:hover::before {
  left: 100%;
}

.btn-orange {
  position: relative;
  overflow: hidden;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Fade In on Load */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  animation: fadeIn 0.5s ease-in;
}

/* Bounce Animation for CTA Button */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.btn-consultation:hover {
  animation: bounce 1s;
}

/* Rotate on Scroll */
.founder-decorative-shape {
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Typing Effect for Hero Title */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Glow Effect */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 122, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.8);
  }
}

.why-choose-card:hover {
  animation: glow 2s ease-in-out;
}

/* Parallax Effect Helper */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Scale In Animation */
@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.interest-form-wrapper,
.contact-form-card {
  animation: scaleIn 0.6s ease-out;
}

/* Staggered Fade In for List Items */
.certification-list li {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.certification-list li:nth-child(1) { animation-delay: 0.1s; }
.certification-list li:nth-child(2) { animation-delay: 0.2s; }
.certification-list li:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ripple Effect */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.expertise-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #ff7a00;
  animation: ripple 2s ease-out infinite;
}

.expertise-icon {
  position: relative;
}

.expertise-hero-section1 {
  background-image: url('images/banner/data_center.png');
  background-size: cover;
  background-position: center;

}

.expertise-hero-section2 {
  background-image: url('images/banner/technology_consult.png');
  background-size: cover;
  background-position: center;
}

.expertise-hero-section6 {
  background-image: url('images/banner/affiliate_wholsaleImage.jpg');
  background-size: cover;
  background-position: center;
}
.expertise-hero-section9 {
  background-image: url('images/banner/iptv_ott.jpg');
  background-size: cover;
  background-position: center;
}

.smart-city-hero {
  background-image: url('images/banner/smart_city.png');
  background-size: cover;
  background-position: center;
}

/* industry Ventures Section */
/* ===== Industries We Serve Section ===== */

.industries-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.industry-card {
  background: white;
  padding: 35px 30px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7a00, #ff9933);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card:hover {
  transform: translateY(-10px);
  border-color: #ff7a00;
  box-shadow: 0 15px 40px rgba(255, 122, 0, 0.15);
}

.industry-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff7a00, #ff9933);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.industry-card:hover .industry-icon-wrapper {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

.industry-icon-wrapper::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff7a00, #ff9933);
  opacity: 0.2;
  z-index: -1;
  filter: blur(10px);
}

.industry-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-list li {
  padding: 8px 0;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
}

/* Industries CTA Box */
.industries-cta-box {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.industries-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.1) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.industries-cta-box h4 {
  color: white;
}

.industries-cta-box p {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Adjustments for Industries */
@media (max-width: 768px) {
  .industry-card {
    padding: 25px 20px;
  }
  
  .industry-icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
  
  .industries-cta-box {
    padding: 30px 25px;
    text-align: center;
  }
  
  .industries-cta-box .btn {
    width: 100%;
  }
}

/* Animation for Industry Icons */
@keyframes industry-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.industry-icon-wrapper i {
  animation: industry-float 3s ease-in-out infinite;
}

.industry-card:hover .industry-icon-wrapper i {
  animation: none;
}
/* End of Industries We Serve Section ===== */

/* why choose ziggta Section */
/* ===== Why Choose Ziggta / Your Trusted Technology Partner Section ===== */

.why-choose-section {
  background: white;
  position: relative;
}

.why-choose-card {
  background: #f8f9fa;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), rgba(255, 153, 51, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

.why-choose-card:hover::before {
  opacity: 1;
}

.why-choose-card:hover {
  background: white;
  border-color: #ff7a00;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.15);
}

.why-choose-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff7a00, #ff9933);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.why-choose-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, #ff7a00, #ff9933);
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
  filter: blur(15px);
}

.why-choose-card:hover .why-choose-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

.why-choose-card h5 {
  color: #333;
  transition: color 0.3s ease;
}

.why-choose-card:hover h5 {
  color: #ff7a00;
}

/* Stats Section */
.stats-row {
  background: linear-gradient(135deg, #ff7a00, #ff9933);
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 15px 40px rgba(255, 122, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.stats-row::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate-gradient 15s linear infinite;
}

@keyframes rotate-gradient {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.stat-item {
  color: white;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Certifications Section */
.certification-section {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.certification-section h4 {
  color: #333;
  font-size: 20px;
}

.certification-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.certification-list li {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.certification-list li:hover {
  color: #ff7a00;
  transform: translateX(5px);
}

.certification-list li i {
  font-size: 18px;
  flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .why-choose-card {
    padding: 25px 20px;
  }
  
  .why-choose-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  .stats-row {
    padding: 30px 15px;
  }
  
  .certification-section {
    padding: 30px 25px;
  }
  
  .certification-list li {
    font-size: 14px;
    padding: 10px 0;
  }
}

/* Additional Animations */
@keyframes why-choose-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.why-choose-icon i {
  animation: why-choose-float 3s ease-in-out infinite;
}

.why-choose-card:hover .why-choose-icon i {
  animation: none;
}

/* Glow effect on hover */
@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 122, 0, 0.6);
  }
}

.why-choose-card:hover {
  animation: glow-pulse 2s ease-in-out;
}
/* End of Why Choose Ziggta Section ===== */

/* ===== Expertise Pages Styles (IPTV-OTT, Data Center, Consultancy, Electronics) ===== */

/* Hero Section for Expertise Pages */
.expertise-hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.expertise-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #ff7a00, #ff9933);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.expertise-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  position: relative;
}

.expertise-hero-image i {
  animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Service Detail Cards */
.service-detail-card {
  background: white;
  padding: 35px 30px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7a00, #ff9933);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-detail-card:hover::before {
  transform: scaleX(1);
}

.service-detail-card:hover {
  transform: translateY(-8px);
  border-color: #ff7a00;
  box-shadow: 0 15px 40px rgba(255, 122, 0, 0.15);
}

.service-detail-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ff7a00;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-detail-card:hover .service-detail-icon {
  background: linear-gradient(135deg, #ff7a00, #ff9933);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

/* Tech Badge */
.tech-badge {
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tech-badge:hover {
  background: white;
  border-color: #ff7a00;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.1);
}

.tech-badge i {
  color: #ff7a00;
  transition: all 0.3s ease;
}

.tech-badge:hover i {
  transform: scale(1.2);
  color: #ff9933;
}

.tech-badge p {
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

/* Benefits Section */
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.benefit-icon {
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 32px;
  color: #ff7a00;
}

.benefit-item h5 {
  color: #333;
  font-size: 18px;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 15px;
}

/* Component Cards (for Data Center page) */
.component-card {
  background: #f8f9fa;
  padding: 25px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.component-card:hover {
  background: white;
  border-color: #ff7a00;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.1);
}

.component-icon {
  font-size: 40px;
  color: #ff7a00;
  margin-bottom: 15px;
}

.component-card h6 {
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.component-card p {
  color: #666;
  font-size: 13px;
}

/* Standard Badge */
.standard-badge {
  padding: 25px 20px;
  transition: all 0.3s ease;
}

.standard-badge:hover {
  transform: translateY(-5px);
}

.standard-badge i {
  transition: all 0.3s ease;
}

.standard-badge:hover i {
  transform: scale(1.2);
}

.standard-badge h6 {
  font-weight: 700;
  color: #333;
  margin-top: 10px;
}

.standard-badge p {
  color: #666;
  font-size: 14px;
}

/* Industry Card (for Consultancy page) */
.industry-card {
  background: #f8f9fa;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.industry-card:hover {
  background: white;
  border-color: #ff7a00;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.12);
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff7a00, #ff9933);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotate(-5deg);
}

.industry-card h6 {
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.industry-card p {
  color: #666;
  font-size: 14px;
}

/* Process Step (for Consultancy page) */
.process-step {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.process-step:hover {
  background: white;
  border-color: #ff7a00;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff7a00, #ff9933);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: white;
  /* margin: 0 auto 20px; */
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

.process-step h6 {
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.process-step p {
  color: #666;
  font-size: 13px;
}

/* Trading Service Card (for Electronics page) */
.trading-service-card {
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.trading-service-card:hover {
  background: white;
  border-color: #ff7a00;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.1);
}

.trading-icon {
  font-size: 40px;
  color: #ff7a00;
  margin-bottom: 15px;
}

.trading-service-card h6 {
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.trading-service-card p {
  color: #666;
  font-size: 13px;
}

/* Customer Type Card (for Electronics page) */
.customer-type-card {
  background: #f8f9fa;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.customer-type-card:hover {
  background: white;
  border-color: #ff7a00;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.1);
}

.customer-icon {
  font-size: 50px;
  color: #ff7a00;
  margin-bottom: 15px;
}

.customer-type-card h6 {
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.customer-type-card p {
  color: #666;
  font-size: 13px;
}

/* Set-Top Box Section Styles */
.stb-section {
  background: #f8f9fa;
}

.stb-gallery {
  position: relative;
}

.stb-image-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: #fff;
  aspect-ratio: 1;
}

.stb-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(79, 140, 255, 0.2);
}

.stb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.stb-image-card:hover .stb-img {
  transform: scale(1.1);
}

.stb-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stb-image-card:hover .stb-overlay {
  opacity: 1;
}

.stb-label {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stb-content h3 {
  color: var(--primary);
  font-weight: 700;
  font-size: 2rem;
}

.stb-feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stb-feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(79, 140, 255, 0.15);
}

.stb-feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}

.stb-feature-item h5 {
  color: var(--text-strong);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.stb-spec-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.stb-spec-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(79, 140, 255, 0.2);
}

.spec-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
}

.stb-spec-card h5 {
  color: var(--text-strong);
  font-weight: 700;
  margin-bottom: 20px;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  padding: 10px 0;
  color: #555;
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.spec-list li:last-child {
  border-bottom: none;
}

.text-orange {
  color: var(--primary) !important;
}

.section-badge-orange {
  display: inline-block;
  background: rgba(79, 140, 255, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(79, 140, 255, 0.2);
}

/* Responsive Adjustments for STB Section */
@media (max-width: 768px) {
  .stb-content h3 {
    font-size: 1.5rem;
  }
  
  .stb-feature-item {
    padding: 15px;
    gap: 15px;
  }
  
  .stb-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 24px;
  }
  
  .stb-feature-item h5 {
    font-size: 1rem;
  }
  
  .stb-spec-card {
    padding: 25px 20px;
  }
  
  .spec-icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}

/* Responsive Adjustments for Expertise Pages */
@media (max-width: 768px) {
  .expertise-hero-section {
    padding: 50px 0;
    min-height: auto;
  }
  
  .expertise-hero-image {
    height: 250px;
  }
  
  .expertise-hero-image i {
    font-size: 120px !important;
  }
  
  .service-detail-card {
    padding: 25px 20px;
  }
  
  .benefit-item {
    padding: 15px;
  }
  
  .component-card,
  .trading-service-card {
    padding: 20px 15px;
  }
}
