body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    background-color: #0b0f1c;
    /* keep your dark theme */
    color: #ffffff;
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

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


  .navbar {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.06) !important;
    border-radius: 60px;
    margin: 20px auto;
    width: 90%;
    padding: 14px 40px;
  }

  /* Brand */
  .navbar-brand {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    color: #ffffff !important;
  }

  /* Menu Links */
  .navbar-nav .nav-link {
    color: #e5e7eb !important;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.6px;
    margin: 0 18px;
    /* spacing between links */
    position: relative;
    transition: all 0.3s ease;
  }

  /* Hover Effect */
  .navbar-nav .nav-link:hover {
    color: #ffffff !important;
  }

  /* Animated Underline */
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #076ac1, #ffffff);
    transition: width 0.3s ease;
    border-radius: 2px;
  }

  .navbar-nav .nav-link:hover::after {
    width: 100%;
  }

  /* Active Link */
  .navbar-nav .nav-link.active {
    color: #ffffff !important;
  }

  /* Toggle */
  /* Remove default icon */
  .navbar-toggler {
    padding: 0;
    background: transparent;
    outline: none;
    box-shadow: none !important;
  }

  /* Hamburger container */
  .hamburger {
    width: 26px;
    height: 18px;
    position: relative;
    cursor: pointer;
    box-shadow: none !important;
  }

  /* Hamburger lines */
  .hamburger span {
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    left: 0;
    transition: all 0.35s ease;
    border-radius: 2px;
    box-shadow: none !important;
  }

  /* Line positions */
  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    top: 8px;
  }

  .hamburger span:nth-child(3) {
    top: 16px;
  }

  /* Animate to X when open */
  .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
  }

  .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
  }

  .navbar-brand img {
    height: 80px;
    transition: all 0.3s ease;
    width: 118px;
    filter: brightness(0) invert(1);
  }

  @media (max-width: 991px) {
    .navbar-brand img {
      height: 45px;
      width: fit-content;
    }
  }

  .btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f5b4ff5e, #1f179470);
    border: none;
    color: #ffffff;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  /* Arrow Animation */
  .btn-icon {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  /* Hover Effects */
  .btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
  }

  .btn-glow:hover .btn-icon {
    transform: translateX(6px);
  }

  /* ================= HERO ================= */
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: "";
    position: absolute;
    width: 250%;
    height: 250%;
    background:
      radial-gradient(circle at 20% 30%, #2920cc, transparent 40%),
      radial-gradient(circle at 80% 40%, #4efff3, transparent 45%),
      radial-gradient(circle at 40% 80%, #ffffff, transparent 45%);
    animation: liquidMove 8s ease-in-out infinite alternate;
    filter: blur(220px);
    opacity: 0.9;
  }

  @keyframes liquidMove {
    0% {
      transform: translate(-15%, -15%) rotate(10deg);
    }

    100% {
      transform: translate(-20%, -10%) rotate(180deg);
    }
  }

  .section-padding {
    padding: 100px 0;
  }

  /* ================= CLIENT LOGOS ================= */
  .clients {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    opacity: 0.6;
  }

  /* ===== PREMIUM CARD ===== */

  .premium-card {
    position: relative;
    padding: 30px;
    border-radius: 20px;
    /* background: rgba(255, 255, 255, 0.05); */
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
  }

  /* Card Hover Lift */
  .premium-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
  }

  /* Glowing Gradient Border Effect */
  .premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 20px;
    background: linear-gradient(120deg, #6366f1, #ec4899, #6366f1);
    background-size: 200% 200%;
    animation: gradientMove 4s linear infinite;
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
  }

  /* Show Glow On Hover */
  .premium-card:hover::before {
    opacity: 1;
  }

  /* Soft Outer Glow */
  .premium-card:hover {
    box-shadow:
      0 10px 30px rgba(99, 102, 241, 0.25),
      0 0 25px rgba(236, 72, 153, 0.25);
  }

  /* Gradient Animation */
  @keyframes gradientMove {
    0% {
      background-position: 0% 50%;
    }

    100% {
      background-position: 200% 50%;
    }
  }

  .gradient-box {
    background: linear-gradient(135deg, #f5b4ff5e, #0b065b);
    border-radius: 30px;
    padding: 60px;
  }

  .footer {
    background: #000;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer h6 {
    color: #aaa;
    margin-bottom: 20px;
  }

  .hero-section {
    height: 100vh;
    width: 100%;
    background: #000;
  }

  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    filter: brightness(40%);
    filter: brightness(0.6) contrast(1.1) saturate(1.2);
  }

  .hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
    z-index: 1;
  }



  .btn-glow .arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.4s ease;
  }

  .btn-glow:hover .arrow {
    transform: translateX(8px);
  }

  .btn-glow:hover {
    box-shadow: 0 0 20px #00f0ff, 0 0 40px #ff00c8;
    transform: translateY(-3px);
  }

  /* SECTION BASE */
  .our-works {
    background: linear-gradient(180deg, #050510, #0b0f1c);
    color: #fff;
    overflow: hidden;
    position: relative;
  }

  /* Title */
  .section-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #00f0ff, #ff00c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .h-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #00f0ff, #ff00c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .section-subtitle {
    opacity: 0.7;
    font-size: 16px;
  }

  /* Work Item */
  .work-item {
    margin-bottom: 120px;
    position: relative;
  }

  /* Image */
  .work-image {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    transition: 0.5s ease;
  }

  .work-image img {
    border-radius: 20px;
    transition: 0.6s ease;
  }

  /* Hover Zoom + Glow */
  .work-image:hover img {
    transform: scale(1.08);
  }

  .work-image:hover {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
  }

  /* Content */
  .work-content {
    padding: 20px;
  }

  .work-tag {
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00f0ff;
  }

  .work-content h3 {
    font-size: 32px;
    margin: 15px 0;
    font-weight: 600;
  }

  .work-content p {
    opacity: 0.7;
    line-height: 1.6;
  }

  /* Button */
  .work-btn {
    margin-top: 15px;
    border-radius: 50px;
    padding: 10px 25px;
    transition: 0.4s ease;
  }

  .work-btn:hover {
    background: linear-gradient(90deg, #00f0ff, #ff00c8);
    border: none;
    box-shadow: 0 0 20px #00f0ff;
  }

  /* Parallax Scroll Effect */
  .work-item {
    transform: translateY(80px);
    opacity: 0;
    transition: all 1s ease;
  }

  .work-item.active {
    transform: translateY(0);
    opacity: 1;
  }

  /* Floating subtle effect */
  .work-image img {
    animation: floatImage 6s ease-in-out infinite;
  }

  @keyframes floatImage {
    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-10px);
    }

    100% {
      transform: translateY(0px);
    }
  }

  .experience-section {
    background: #0b0f1c;
    color: #fff;
  }

  /* Left Box */
  .experience-box {
    position: relative;
    display: inline-block;
    padding: 80px 60px;
    background: linear-gradient(135deg, #0f172a, #111827);
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 0 40px rgba(0, 240, 255, 0.1); */
    transition: 0.4s ease;
  }

  .experience-box:hover {
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.4);
    transform: translateY(-5px);
  }

  /* Big Number */
  .experience-number {
    font-size: 150px;
    font-weight: 800;
    line-height: 1;
    background: url('img/datacenter.jpg') center/cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .experience-text {
    margin-top: 15px;
    font-size: 20px;
    letter-spacing: 2px;
    opacity: 0.7;
  }

  /* Right Content */
  .sub-heading {
    letter-spacing: 3px;
    font-size: 14px;
    color: #00f0ff;
  }

  .main-heading {
    font-size: 40px;
    font-weight: 700;
    margin: 15px 0;
  }

  .main-h span {
    background: linear-gradient(90deg, #00f0ff30, #ff00c81a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 8rem;
  }

  .main-heading span {
    background: linear-gradient(90deg, #00f0ff, #ff00c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .description {
    opacity: 0.7;
    line-height: 1.7;
  }

  .experience-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
  }

  .experience-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
  }

  .experience-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #00f0ff;
  }
.h1text{
  color: #20b2aa;
}
  /* Stats */
  .stat-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: #00f0ff;
  }

  .stat-box span {
    font-size: 14px;
    opacity: 0.7;
  }

  .product-showcase {
    padding: 80px 0;
    background: #0b0f1c;
    color: white;
  }

  .section-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
  }

  .section-header p {
    color: #aaa;
    margin-bottom: 40px;
  }

  .scroll-wrapper {
    position: relative;
  }

  .product-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
  }

  .product-container::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    min-width: 420px;
    height: 260px;
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
  }

  .premium-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .85;
    
  }

  .product-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
  }

  .product-info h3 {
    font-size: 22px;
  }

  .product-info p {
    font-size: 14px;
    color: #ddd;
  }

  .product-section {
    padding: 60px 5%;
  }

  .product-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
  }

  .product-container::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    min-width: 320px;
    height: 220px;
    background: #111;
    border-radius: 14px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
.sec2{
color: #6992fa;
}
  /* Button Panel */

  .scroll-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
  }

  .scroll-buttons button {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    border: none;
    background: #111;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
  }

  .scroll-buttons button:hover {
    background: #333;
  }

  .product-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    cursor: grab;
  }

  .product-container:active {
    cursor: grabbing;
  }

  .product-container::-webkit-scrollbar {
    display: none;
  }

  .logo-slider {
    display: flex;
    gap: 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    align-items: center;
    cursor: grab;
  }

  .logo-slider::-webkit-scrollbar {
    display: none;
  }

  .logo-item {
    height: 120px;
    filter: grayscale(10%) brightness(0.100);
    opacity: .6;
    transition: all .4s ease;
    flex-shrink: 0;
  }

  .logo-item:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
  }

  /* Mobile */

  @media(max-width:768px) {

    .logo-slider {
      gap: 35px;
    }

    .logo-item {
      height: 120px;
    }

    /* SERVICES */
    .services-section {
      padding: 100px 0;
      background: #071226;
      color: white;
    }

    .services-title {
      font-size: 40px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .service-card {
      position: relative;
      height: 420px;
      border-radius: 20px;
      background-size: cover;
      background-position: center;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: 30px;
      transition: .4s;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(0, 0, 0, 0.2),
          rgba(0, 0, 0, 0.85));
    }

    .service-content {
      position: relative;
      z-index: 2;
    }

    .service-content h4 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .service-content p {
      font-size: 14px;
      color: #cfcfcf;
    }

    .service-number {
      position: absolute;
      top: 25px;
      left: 25px;
      font-size: 80px;
      z-index: 2;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, .6);
    }


    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, .4);
    }

    /* CLOSE SERVICES */

  }

.learn-section{
padding:120px 0;
}

.learn-title{
text-align:center;
font-size:42px;
margin-bottom:80px;
font-weight:500;
}

.learn-box{
padding:40px;
transition:0.3s;
}

.learn-box:hover{
transform:translateY(-8px);
}

.learn-arrow{
font-size:42px;
margin-bottom:20px;
}

.arrow1{ color:#39d353;}
.arrow2{ color:#6366f1;}
.arrow3{ color:#c026d3;}
.arrow4{ color:#2699d3;}

.learn-number{
font-size:110px;
font-weight:300;
line-height:1;
margin-bottom:20px;
color:#e5e5e5;
}

.learn-text{
font-size:20px;
color:#d1d5db;
max-width:260px;
line-height:1.5;
}

@media (max-width:768px){

.learn-number{
font-size:80px;
}

.learn-text{
font-size:18px;
}

.learn-section{
padding:80px 20px;
}

}

  .footer-section {
    background: #0b0f1c;
    color: #bcbcbc;
    padding: 80px 0 30px;
    position: relative;
  }

  .footer-title {
    font-size: 36px;
    color: #fff;
    letter-spacing: 2px;
  }

  .footer-subscribe {
    display: flex;
    max-width: 420px;
    margin-left: auto;
  }

  .footer-subscribe input {
    flex: 1;
    padding: 14px;
    border: none;
    outline: none;
    background: #eaeaea;
  }

  .footer-subscribe button {
    width: 60px;
    border: none;
    background: #d49a59;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }

  .footer-line {
    border-color: #2a2a2a;
    margin: 40px 0;
  }

  .footer-logo {
    font-size: 32px;
    color: #fff;
  }

  .footer-logo span {
    color: #d49a59;
  }

  .footer-content h5 {
    color: #fff;
    margin-bottom: 20px;
  }

  .footer-content ul {
    list-style: none;
    padding: 0;
  }

  .footer-content ul li {
    margin-bottom: 10px;
  }

  .footer-content ul li a {
    color: #bcbcbc;
    text-decoration: none;
    transition: .3s;
  }

  .footer-content ul li a:hover {
    color: #fff;
  }

  .footer-social a {
    color: #fff;
    margin-right: 15px;
    font-size: 18px;
    transition: .3s;
  }

  .footer-social a:hover {
    color: #d49a59;
  }

  .footer-bottom {
    font-size: 14px;
    color: #777;
  }

  .footer-bottom a {
    color: #777;
    text-decoration: none;
    margin: 0 8px;
  }

  .footer-bottom a:hover {
    color: #fff;
  }

  .client-journey{
/* background:#f4f6f9; */
padding:80px 0;
}

.section-title{
font-size:42px;
font-weight:600;
margin-bottom:60px;
}

/* Cards */

.client-card{
background:#10141f;
padding:40px 30px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:all .35s ease;
position:relative;
height:100%;
}

.client-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* Year badge */

.year-badge{
width:90px;
height:90px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
color:white;
font-size:22px;
margin:auto;
margin-top:-80px;
margin-bottom:25px;
}

/* Colors */

.blue{
background:#4e73df;
}

.orange{
background:#f57c38;
}

.yellow{
background:#f7c32e;
color:#222;
}

/* Title */

.client-card h4{
font-size:22px;
margin-bottom:20px;
}

/* List */

.client-card ul{
list-style:none;
padding:0;
text-align:left;
}

.client-card ul li{
padding:6px 0;
font-size:16px;
}

/* Responsive */

@media(max-width:768px){

.section-title{
font-size:32px;
}

.year-badge{
width:70px;
height:70px;
font-size:18px;
}

}
.clients-section{
padding:40px 0;
/* background:linear-gradient(135deg, #21252926, rgba(255, 255, 255, 0.15)); */
overflow:hidden;
filter: brightness(0) invert(1);
}

.clients-title{
color:#fff;
font-size:36px;
margin-bottom:60px;
font-weight:600;
}

/* Slider */

.logo-slider{
overflow:hidden;
position:relative;
}

.logo-track{
display:flex;
width:calc(250px * 16);
animation:scroll 30s linear infinite;
align-items: center;
}

.logo-slider:hover .logo-track{
animation-play-state:paused;
}

.logo-track img{
width:180px;
margin:0 40px;
filter:grayscale(100%);
opacity:.7;
transition:.4s;
}

.logo-track img:hover{
filter:grayscale(0);
opacity:1;
transform:scale(1.1);
}

/* Animation */

@keyframes scroll{
0%{
transform:translateX(0);
}

100%{
transform:translateX(calc(-250px * 8));
}
}

/* Mobile */

@media(max-width:768px){

.logo-track img{
width:120px;
margin:0 25px;
}

.clients-title{
font-size:28px;
}

}