

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    html, body {
      width: 100%;
      height: 100%;
    }

    body {
      background: #f5f7fa;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }


/* Header */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 80px;
      background: linear-gradient(90deg, #08262c,#124a59);
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
    display: inline-block;       /* keeps logo inline with nav */
    width: 150px;                /* default desktop size */
    max-width: 100%;             /* prevents overflow */
    margin-right: 20px;          /* spacing from nav */
  }

  /* Logo image */
  .logo img {
    width: 100%;                 /* scales to container */
    height: auto;                /* keeps aspect ratio */
    display: block;              /* removes inline spacing issues */
  }


@media (min-width: 768px)
{
  
   header .hamburger
   {
    display: none;
   }

    nav .menu {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 25px;
      position: relative;
    }

    nav ul li {
      position: relative;
    }

    nav a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      transition: color 0.3s;
      cursor: pointer;
    }

    nav a:hover {
      color: #00c6ff; 
    }

    .connect-btn {
      padding: 8px 18px;
      background: linear-gradient(145deg, #ff9500, #ff5c00);
      color: #fff;
      border-radius: 25px;
      border: none;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      transition: 0.3s;
    }

    .connect-btn:hover {
      background: linear-gradient(145deg, #ffb84d, #ff6e1a);
    }

    /* Mega Dropdown Base */
header nav a {
  position: relative;
}
}
@media (max-width: 768px)
{
  header {
    padding: 20px 10px;
  }
.logo {
    width: 90px;              /* smaller logo for mobile */
    margin-right: 10px;
  }
  nav .hamburger
  {
    background: transparent;  
    border: none;
    
  }
  .icon-cross {
    display: none;
  }

  .hamburger.open .icon-hamburger {
    display: none;
  }

  .hamburger.open .icon-cross {
    display: block;
  }
  /* Hide cross by default */
.icon-cross {
  display: none;
}

/* When button has .open, swap icons */
.hamburger.open .icon-hamburger {
  display: none;
}
.hamburger.open .icon-cross {
  display: block;
}

  nav .menu {
    display: none;
    flex-direction: column;
    background: #124a59;
    position: absolute;
    top: 90px;
    right: 0;
    width: 100%;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.2); /* separation line */
  }

  nav .menu.open {
    display: flex;
    gap: 18px; /* spacing between items */
  }

  nav .menu a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  nav .menu a:last-child {
    border-bottom: none; /* remove line under last item */
  }

  /* Orange button for Let's Connect */
  nav .menu a.connect-btn {
    background: #ff9500;
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
    text-align: center;
    transition: 0.3s;
  }

  nav .menu a.connect-btn:hover {
    background: #fff;
    color: #ff9500; /* text turns orange on hover */
  }

}
.menu-item {
  position: relative;
}

.menu-btn {
  cursor: pointer;
  color: #fff;
  padding: 8px 12px;
  display: inline-block;
  transition: 0.3s;
}

.menu-btn:hover {
  color: #ff9500;
}


    
    /* Hero Slider */
.hero-slider {
  position: relative;           /* REQUIRED */
  width: 100%;
  min-height: calc(100vh - 90px);
  overflow: hidden;
  display: block;
}

.slides {
  height: 100%;
  width: 100%;
}

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

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

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15, 32, 39, 0.75),
    rgba(32, 58, 67, 0.75),
    rgba(44, 83, 100, 0.75)
  );
}

/* Content */
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 80px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 20px 40px;
  background: linear-gradient(145deg, #ff9500, #ff5c00);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  margin-top: 20px;
}

.hero-btn:hover {
  background: linear-gradient(145deg, #ffb84d, #ff6e1a);
}

/* Typing Animation */
.typing {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #ff9500;
  width: 0;
  animation: typing 2.5s steps(40, end) forwards, blink 0.8s infinite;
}

@keyframes typing {
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 5;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #ff9500;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 900px) {
  .slide-content {
    padding: 0 30px;
    text-align: center;
  }

  .slide-content h1 {
    font-size: 30px;
  }
}


/* Services Section */
.services-section {
  position: relative;   /* NOT absolute */
  padding: 80px;
  background: linear-gradient(180deg, #0f2027, #203a43, #2c5364);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
  color: aliceblue;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
}

.services-btn {
  padding: 10px 22px;
  border: 1px solid #fff;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.services-btn:hover {
  background: #fff;
  color: #203a43;
}

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

/* Card */
.service-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.service-card i {
  font-size: 26px;
  margin-bottom: 15px;
  color: #00c6ff;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 198, 255, 0.25);
  border-color: #00c6ff;
}

/* Highlight Card */
.service-card.highlight {
  border: 1px solid #00c6ff;
  box-shadow: 0 0 25px rgba(0,198,255,0.4);
}

/* Responsive */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .services-section {
    padding: 50px 25px;
  }

  .services-header h2 {
    font-size: 28px;
  }

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




.tech-stack-section {
  padding: 80px 60px;
  background: #fff;
  text-align: center;
}

.tech-container h2 {
  font-size: 36px;
  color: #203a43;
  margin-bottom: 10px;
}

.tech-container p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  line-height: 1.6;
}

/* Tabs */
.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 40px;
}

.tech-tab {
  background: none;
  border: none;
  font-size: 16px;
  padding: 10px 0;
  cursor: pointer;
  color: #444;
  position: relative;
}

.tech-tab.active {
  color: #6c2bd9;
}

.tech-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 100%;
  height: 3px;
  background: #6c2bd9;
}

/* Panels */
.tech-content {
  min-height: 120px;
}

.tech-panel {
  display: none;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  animation: fadeUp 0.4s ease;
}

.tech-panel.active {
  display: flex;
}

.tech-panel img {
  width: 70px;
  transition: transform 0.3s;
}

.tech-panel img:hover {
  transform: scale(1.15);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .tech-tabs {
    flex-wrap: wrap;
    gap: 20px;
  }
}


.industries-modern{
  padding:70px 20px;
  background-image:url("https://images.unsplash.com/photo-1521791055366-0d553872125f");
  background-attachment:fixed;
  background-size:cover;
  background-position:center;
}

/* header */
.industries-header{
  text-align:center;
  margin-bottom:30px;
  color:#203a43;
}
.industries-header h2{
  font-size:34px;
  margin-bottom:10px;
}

/* container */
.industries-box{
  max-width:1600px;
  margin:auto;
  background:#203a43;
  padding:25px;
  border-radius:18px;
}

/* TABS */
.industry-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  justify-content:center;
}

.industry-tabs .tab{
  background:transparent;
  border:none;
  color:#fff;
  padding:10px 24px;
  border-radius:18px;
  cursor:pointer;
  transition:.25s;
  display:flex;
  flex-direction:column;
  align-items:center;
  font-size:13px;
}

.industry-tabs .tab i{
  font-size:20px;
  margin-bottom:6px;
}

/* ACTIVE TAB STYLE (like your screenshot) */
.industry-tabs .tab.active{
  background:#203a43;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.15);
  transform:translateY(-4px);
}

.industry-tabs .tab:hover{
  background:#ff6a00;
}

/* layout */
.industry-content{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:30px;
  margin-top:25px;
  background:#203a43;
  padding:25px;
  border-radius:16px;
  align-items:center;
}

.industry-text{display:none; color:#fff;}
.industry-text.active{display:block;}

/* images */
.industry-image{
  position:relative;
  overflow:hidden;
  border-radius:14px;
  aspect-ratio: 4 / 3;   /* keeps perfect rectangle shape */
}


.industry-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:.45s ease, transform .5s ease, filter .4s ease;
}

/* Glass container (left content) */
.industry-content {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 28px 26px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  gap: 16px;
}

/* Glass image box */
.industry-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Image itself */
.industry-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform .6s ease;
}

/* subtle zoom on hover */
.industry-image:hover img {
  transform: scale(1.05);
}


.industry-img.active{opacity:1;}

.industry-image:hover .industry-img.active{
  transform:scale(1.08);
  filter:brightness(1.05);
}


/* Spacing inside industry text */
.industry-text h3 {
  margin-bottom: 14px;
  color: #ff6a00;
  font-size: 40px;
}

.industry-text p {
  margin-bottom: 18px;
  line-height: 1.6;
}

.industry-text ul {
  margin-top: 10px;
  padding-left: 0;
}

.industry-text ul li {
  margin-bottom: 10px;
}

/* responsive */
@media(max-width:900px){
  .industry-content{grid-template-columns:1fr;}
}

.clients-section {
  padding: 80px 0;
  background: #f6f8fb;
}

.clients-title {
  text-align: center;
  font-size: clamp(26px, 3vw, 34px);
  color: #203a43;
  margin-bottom: 40px;
}

/* VIEWPORT */
.clients-marquee {
  width: 100%;
  overflow: hidden;
}

/* TRACK */
.clients-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: marquee 10s linear infinite;
}

/* PAUSE ON HOVER */
.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

/* LOGO SIZE (BIG + 6 VISIBLE) */
.clients-track img {
  height: 110px;              /* BIG LOGO */
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.clients-track img:hover {
  filter: grayscale(0%);
}

/* ANIMATION */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .clients-track {
    gap: 40px;
    animation-duration: 35s;
  }

  .clients-track img {
    height: 90px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .clients-track {
    gap: 30px;
    animation-duration: 45s;
  }

  .clients-track img {
    height: 70px;
  }
}


.why-choose-wrapper {
  padding: 80px 30px;
  background: #ffffff;
}

.why-choose {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-tag {
  color: #ff6a00;
  font-weight: 600;
  letter-spacing: .5px;
  display: inline-block;
  margin-bottom: 6px;
  border-bottom: 1px dashed #ff6a00;
}

.why-left h2 {
  font-size: 34px;
  color: #2c5364;
  margin-bottom: 12px;
}

.why-left p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.why-points {
  list-style: none;
  display: grid;
  gap: 12px;
}

.why-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
}

.why-points i {
  color: #ff6a00;
  font-size: 18px;
}

/* circle graphic */
.why-right {
  display: flex;
  justify-content: center;
}

.why-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid #ff6a00;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-center {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #2c5364;
  color: #fff;
  text-align: center;
  padding: 35px 20px;
}

.why-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* fills circle nicely */
  border-radius: 50%;    /* keeps circular shape */
}
.why-center h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.orbit {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ff9500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-layer{
  position: absolute;
  inset: 0;
  animation: spin 10s linear infinite;
}


@keyframes spin {
  from  { transform: rotate(0deg);}
  to { transform: rotate(360deg);}
}

.orbit-1 { top: -18px; left: 50%; transform: translateX(-50%); }
.orbit-2 { right: -18px; top: 50%; transform: translateY(-50%); }
.orbit-3 { left: -18px; top: 50%; transform: translateY(-50%); }
.orbit-4 { bottom: -18px; left: 50%; transform: translateX(-50%); }

/* responsive */
@media (max-width: 900px) {
  .why-choose {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-points li { justify-content: center; }

  .why-right { margin-top: 20px; }
}



.partners-v2{
  background:#fafafa;
  padding:90px 30px;
}

.partners-v2-container{
  max-width:1250px;
  margin:auto;
}

.partners-v2-head{
  text-align:center;
  margin-bottom:45px;
}

.partners-v2-head h2{
  font-size:32px;
  color:#132f63;
}

.partners-v2-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:50px;
  align-items:center;
}

/* ORBIT BASE */
.orbit-v2{
  width:360px;
  height:360px;
  margin:auto;
  position:relative;
}

.orbit-v2-center{
  position:absolute;
  inset:100px;
  border-radius:50%;
  background:#2c5364;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
}

/* orbit rings */
.orbit-v2-ring{
  position:absolute;
  inset:0;
  border-radius:50%;
  border:2px dashed #bbb;
  animation:orbitSpin 28s linear infinite;
}

/* OUTER ring */
.outer-ring{
  animation-duration:26s;
}

/* INNER ring */
.inner-ring{
  inset:70px;
  animation-direction:reverse;
  animation-duration:18s;
}

/* logos */
.orbit-v2-ring img{
  position:absolute;
  width:70px;
  height:70px;
  border-radius:50%;
  background:#fff;
  padding:10px;
  object-fit:contain;
  box-shadow:0 8px 20px rgba(0,0,0,.15);
  animation:orbitCounter 28s linear infinite;
}

/* inner ring logos smaller & synced */
.inner-ring img{
  width:60px;
  height:60px;
  animation-duration:18s;
}

/* OUTER placements */
.outer-ring img:nth-child(1){top:-15px;left:50%;transform:translateX(-50%)}
.outer-ring img:nth-child(2){right:-15px;top:45%}
.outer-ring img:nth-child(3){bottom:-15px;left:55%}
.outer-ring img:nth-child(4){left:-15px;top:50%}

/* INNER placements */
.inner-ring img:nth-child(1){top:-10px;left:50%;transform:translateX(-50%)}
.inner-ring img:nth-child(2){bottom:-10px;left:50%;transform:translateX(-50%)}

/* ANIMATIONS */
@keyframes orbitSpin{to{transform:rotate(360deg)}}
@keyframes orbitCounter{to{transform:rotate(-360deg)}}

/* RIGHT LIST */
.partners-v2-right ul{
  list-style:none;
  display:grid;
  gap:16px;
}

.partners-v2-right li{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:14px;
}

.partners-v2-right i{
  font-size:22px;
  color:#6c2bd9;
}

.partners-v2-right h4{
  margin-bottom:4px;
  color:#122044;
}

@media(max-width:900px){
  .partners-v2-grid{
    grid-template-columns:1fr;
    text-align:center;
  }
}

/* PARALLAX BG */
.contact-parallax-v2{
  background: url("/Assets/Images/Ind-Parallax.jpg") center/cover fixed;
  padding: 80px 20px;
}

/* CARDS */
.contact-info-cards{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-bottom: 35px;
}

.info-card{
  background:#fff;
  padding:18px 15px;
  border-radius:10px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.info-card i{
  font-size:28px;
  margin-bottom:8px;
  color:#ff9500;
}

.info-card h4{
  font-size:14px;
  margin-bottom:6px;
}

/* FORM + MAP WRAP */
.contact-body{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  background:#000;
  color:#fff;
  border-radius:10px;
  overflow:hidden;
}

/* LEFT PANEL */
.contact-left{
  padding:35px 28px;
}

.contact-left h3{
  margin-bottom:15px;
}

.contact-form-v2{
  display:flex;
  flex-direction:column;
  gap:16px;
}

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

.field label{
  font-size:13px;
  margin-bottom:3px;
  display:block;
}

.field input,
.field textarea{
  width:100%;
  padding:10px 8px;
  border:none;
  border-bottom:1px solid #666;
  background:transparent;
  color:#fff;
  outline:none;
}

.field textarea{
  min-height:120px;
  resize:vertical;
}

.contact-form-v2 button{
  background:#fff;
  color:#000;
  border:none;
  padding:10px;
  font-weight:600;
  cursor:pointer;
  transition:.25s;
}

.contact-form-v2 button:hover{
  opacity:.85;
}

/* MAP */
.contact-map{
  min-height:380px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-info-cards{
    grid-template-columns:1fr 1fr;
  }
  .contact-body{
    grid-template-columns:1fr;
  }
}

@media(max-width:550px){
  .contact-info-cards{
    grid-template-columns:1fr;
  }
  .form-row{
    grid-template-columns:1fr;
  }
  .contact-parallax-v2{
    background-attachment:scroll;
  }
}


/* =========================
   CTA WITH EDITABLE IMAGE
========================= */

.cta-footer{
  background: url("/Assets/Images/Footer.jpg") center/cover;
  padding: 120px 20px;
  position: relative;
}

.cta-overlay{
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.cta-footer h2{
  max-width: 750px;
  margin: auto;
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 600;
}

.cta-btn{
  display: inline-block;
  background: #ff9500;
  color:#000;
  padding: 12px 26px;
  border-radius:4px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.cta-btn:hover{ opacity:.9; }

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

.hook-footer{
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  color:#dcdcdc;
  padding:60px 25px 30px;
  position: relative;
}

.hook-footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1.2fr;
  gap:45px;
}

.footer-block h3{
  margin-bottom:10px;
  color:#fff;
}

.footer-block .brand span{
  color:#ff9500;
}

.footer-links{
  list-style:none;
}

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

.footer-links a{
  color:#dcdcdc;
  text-decoration:none;
}

.footer-links a:hover{
  color:#ff9500;
}

/* newsletter */
.newsletter{
  display:flex;
  gap:10px;
  margin-top:8px;
}

.newsletter input{
  flex:1;
  padding:10px;
  border-radius:4px;
  border:none;
}

.newsletter button{
  background:#ffcc52;
  border:none;
  padding:10px 18px;
  cursor:pointer;
  font-weight:600;
}

.footer-bottom{
  text-align:center;
  margin-top:25px;
  border-top:1px solid rgba(255,255,255,.15);
  padding-top:12px;
  font-size:14px;
}

/* =========================
   VERTICAL SOCIAL ICONS
========================= */

.vertical-social{
  position:absolute;
  right:15px;
  bottom:70px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.vertical-social a{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.3);
  border-radius:4px;
  color:#fff;
  transition:.3s;
}

.vertical-social a:hover{
  background:#ff9500;
  color:#000;
}

/* responsive */
@media(max-width:900px){
  .hook-footer-container{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:739px){
  .hook-footer-container{
    grid-template-columns:1fr;
  }
  .vertical-social{
    right:10px;
    bottom:95px;
  }
}


/* Scroll To Top Button */
.scroll-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  background:#ffcc52;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(0,0,0,.25);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:1000;
}

.scroll-top:hover{
  transform: translateY(-3px);
}

.scroll-top.show{
  opacity:1;
  visibility:visible;
}

:root{
  /* edit tab size here anytime */
  --product-tab-width: 100%;
  --product-tab-height: 50px;
}
 
/* ---------- BACKGROUND STYLES (choose one) ---------- */
 
/* Gradient */
.bg-gradient{
  background: linear-gradient(180deg, #0f2027, #203a43, #2c5364);
}
 
/* Subtle pattern */
.bg-pattern{
  background:
    radial-gradient(circle at top, rgba(255,255,255,.08), transparent 60%),
    #0e1a26;
}
 
/* Image + dark overlay */
.bg-image{
  background:
    linear-gradient(120deg, rgba(0,0,0,.55), rgba(0,0,0,.65)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085")
    center/cover no-repeat;
}
 
/* Light mode */
.bg-light{
  background:#f7f9fc;
}
 
/* ---------- SECTION ---------- */
 
.products-modern{
  padding:70px 20px;
}
 
/* header */
.products-header{
  text-align:center;
  margin-bottom:30px;
  color:white;
}
.products-header h2{
  font-size:34px;
  margin-bottom:10px;
}
 
/* layout */
.products-layout{
  max-width:1550px;
  margin:auto;
  display:grid;
  grid-template-columns:240px 1fr;
  gap:24px;
}
 
/* vertical tabs */
.product-tabs-vertical{
  background: rgba(255, 255, 255, 0.12);
  border-radius:18px;
  padding:18px;
  display:flex;  
  flex-direction:column;
  gap:14px;

  /* Glassmorphism */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.product-tabs-vertical .ptab{
  width:var(--product-tab-width);
  height:var(--product-tab-height);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color:#fff;
  padding:0 14px;
  border-radius:14px;
  text-align:left;
  cursor:pointer; 
  display:flex;
  align-items:center;
  gap:10px;
  transition: all .3s ease;

  /* Frosted look */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.product-tabs-vertical .ptab i{
  font-size:17px;
  opacity:0.9;
}

.product-tabs-vertical .ptab.active{
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    inset 0 0 0 rgba(255,255,255,0),
    0 8px 20px rgba(0,0,0,.35);
}

.product-tabs-vertical .ptab:hover{
  background: rgba(255,149,0,0.35);
  border-color: rgba(255,149,0,0.6);
  box-shadow: 0 6px 18px rgba(255,149,0,.45);
}

/* glass panel */
.product-content{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:24px;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.25);
  border-radius:18px;
  padding:26px;
  color:#fff;
}
 
/* media box */
.product-image{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.25);
  aspect-ratio:4/3;
}
 
/* shared media styles (image + video) */
.pmedia{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:.45s ease, transform .5s ease;
}
.pmedia.active{opacity:1;}

.product-text{display:none;}
.product-text.active{display:block;}

.pmedia.active{opacity:1;}
.product-image:hover .pmedia.active{
  transform:scale(1.06);
}
 

 
/* responsive */
@media(max-width:900px){
  .products-layout{grid-template-columns:1fr;}
  .product-content{grid-template-columns:1fr;}
}

/* PRODUCTS BACKGROUND IMAGE */
.bg-image{
  position: relative;
  background:
    linear-gradient(
      rgba(10, 20, 30, 0.85),
      rgba(10, 20, 30, 0.85)
    ),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085")
    center / co    ver no-repeat;
}

/* Ensure content stays above overlay */
.products-modern{
  position: relative;
  z-index: 1;
}

/* Header color fix for dark bg */
.products-header h2,
.products-header p{
  color: #ff9500;
  
}

/* Improve glass contrast */
.product-content{
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.25);
}


.product-text {
  display: none;
  animation: fadeUp 0.4s ease;
}

.product-text.active {
  display: block;
}

/* Heading */
.product-text h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 600;
  
}

/* Paragraph */
.product-text p {
  margin-bottom: 18px;
  line-height: 1.7;
  color: wheat;
  max-width: 90%;
}

/* Key points list */
.product-text ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.product-text ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Optional subtle animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Mobile responsiveness for partners-v2 */
@media (max-width: 768px) {
  .partners-v2 {
    padding: 50px 20px;
  }

  .partners-v2-head h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .partners-v2-grid {
    grid-template-columns: 1fr;   /* stack orbit and list vertically */
    gap: 30px;
    text-align: center;
  }

  /* Orbit scaling */
  .orbit-v2 {
    width: 260px;
    height: 260px;
  }

  .orbit-v2-center {
    inset: 70px;   /* shrink center circle */
    font-size: 14px;
    padding: 10px;
  }

  .orbit-v2-ring img {
    width: 50px;
    height: 50px;
    padding: 6px;
  }

  .inner-ring {
    inset: 30px;   /* shrink inner ring */
  }

  /* Right-side list adjustments */
  .partners-v2-right ul {
    gap: 20px;
  }

  .partners-v2-right li {
    grid-template-columns: 1fr;   /* stack icon above text */
    text-align: center;
  }

  .partners-v2-right i {
    margin-bottom: 8px;
  }

  .partners-v2-right h4 {
    font-size: 16px;
  }

  .partners-v2-right p {
    font-size: 14px;
    line-height: 1.5;
  }
}
/* Mobile view adjustments */
@media (max-width: 768px) {
  .industries-modern {
    padding: 20px;
  }

  .industries-header h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .industries-header p {
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 15px;
  }

  .industry-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .industry-tabs .tab {
    flex: 1 1 45%;
    font-size: 0.9rem;
    padding: 10px;
    text-align: center;
  }

  .industry-content {
    display: flex;
    flex-direction: column;
  }

  .industry-text {
    margin-bottom: 20px;
    text-align: center;
  }

  .industry-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .industry-text p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .industry-text ul {
    padding-left: 0;
    list-style: none;
  }

  .industry-text ul li {
    font-size: 0.9rem;
    margin: 5px 0;
  }

  .industry-image {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .industry-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 6px;
  }
}
/* Mobile fix for orbit images */
@media (max-width: 768px) {
  .orbit-v2 {
    width: 240px;
    height: 240px;
  }

  .orbit-v2-center {
    inset: 60px;   /* smaller center circle */
    font-size: 12px;
    padding: 8px;
  }

  /* Outer ring */
  .outer-ring {
    inset: 0;
  }

  /* Inner ring */
  .inner-ring {
    inset: 45px;
  }

  /* Orbit logos scaling */
  .orbit-v2-ring img {
    width: 40px;
    height: 40px;
    padding: 4px;
  }

  .inner-ring img {
    width: 32px;
    height: 32px;
  }

  /* Adjust placements so they stay inside orbit */
  .outer-ring img:nth-child(1) { top: -10px; left: 50%; transform: translateX(-50%); }
  .outer-ring img:nth-child(2) { right: -10px; top: 45%; }
  .outer-ring img:nth-child(3) { bottom: -10px; left: 50%; transform: translateX(-50%); }
  .outer-ring img:nth-child(4) { left: -10px; top: 50%; transform: translateY(-50%); }

  .inner-ring img:nth-child(1) { top: -8px; left: 50%; transform: translateX(-50%); }
  .inner-ring img:nth-child(2) { bottom: -8px; left: 50%; transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .why-right .why-circle{
    width: 240px;
    height: 240px;
  }
  .why-right .why-center{
    width: 170px;
    height: 170px;
  }

}
/* Mobile fix for industry images */
@media (max-width: 768px) {
  .industry-image {
    aspect-ratio: auto;       /* allow flexible height */
    height: auto;
    min-height: 220px;        /* ensure visible area */
  }

  .industry-image img {
    object-fit: cover;        /* better scaling */
    width: 100%;
    height: 100%;
  }

  /* Active image always visible */
  .industry-img.active {
    opacity: 1;
    position: relative;       /* prevent overlap issues */
  }
}
/* Allow text wrapping on mobile */
@media (max-width: 768px) {
  .typing {
    white-space: normal;   /* allow line breaks */
    overflow: visible;     /* prevent clipping */
    border-right: none;    /* optional: remove typing cursor on mobile */
    width: auto;           /* let text expand naturally */
    animation: none;       /* optional: disable typing animation for readability */
  }

  .slide-content {
    padding: 0 20px;       /* reduce side padding */
    text-align: center;    /* center align text */
  }
}
/* Default: hidden on desktop */
.whatsapp-sticky {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .whatsapp-sticky {
    display: flex;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
  }

  .whatsapp-sticky img {
    width: 50px;
    height: 50px;
  }

  .whatsapp-sticky:hover {
    background: #20b858;
  }
}
