/* FRONT PAGE */
:root {
    --primary: #00c6ff;
    --secondary: #0072ff;
    --text: #ffffff;
  }
  
  /* RESET */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Calibri, sans-serif
  }
  body {
    color: var(--text);
    background: linear-gradient(135deg, #020617, #0a2540, #020617);
    overflow-x: hidden;

  }
  /* 🌊 FLOWING LINES FULL PAGE */
  body::before {
  content: "";
  position: fixed;
  width: 200%;
  height: 100%;
  top: 0;
  left: 0;

  background:
  repeating-linear-gradient(
  90deg,
  rgba(0,198,255,0.05) 0px,
  rgba(0,198,255,0.05) 2px,
  transparent 2px,
  transparent 160px
  );

  animation: moveLines 50s linear infinite;
  opacity: 0.2;
  z-index: 0;
}

/* ✨ GLOW EFFECT FULL PAGE */
/* ✨ GLOW EFFECT FULL PAGE */
body::after {
  content: "";
  position: fixed; /* 🔥 FIXED */
  inset: 0;

  background:
    radial-gradient(circle at 10% 20%, #00c6ff 1.5px, transparent 3px),
    radial-gradient(circle at 30% 70%, rgba(0,198,255,0.6) 1.2px, transparent 3px),
    radial-gradient(circle at 50% 40%, #00c6ff 1.6px, transparent 3px),
    radial-gradient(circle at 70% 80%, rgba(0,198,255,0.5) 1.2px, transparent 3px),
    radial-gradient(circle at 90% 30%, #00c6ff 1.5px, transparent 3px),
    radial-gradient(circle at 20% 50%, rgba(0,198,255,0.7) 1.2px, transparent 3px),
    radial-gradient(circle at 80% 60%, #00c6ff 1.6px, transparent 3px),

    radial-gradient(circle at 15% 35%, rgba(0,198,255,0.6) 1.2px, transparent 3px),
    radial-gradient(circle at 35% 15%, #00c6ff 1.4px, transparent 3px),
    radial-gradient(circle at 60% 75%, rgba(0,198,255,0.6) 1.2px, transparent 3px),
    radial-gradient(circle at 85% 55%, #00c6ff 1.4px, transparent 3px);

  background-repeat: no-repeat;

  animation: smoothFloat 25s ease-in-out infinite alternate,
             softTwinkle 4s ease-in-out infinite;

  opacity: 0.85;
  z-index: 0; /* 🔥 IMPORTANT */
  pointer-events: none;
}

/* ===== PRELOADER ===== */

#pageLoader {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: #0b1b3a;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s ease;
}

/* SHOW */
#pageLoader.active {
  opacity: 1;
  visibility: visible;
}

/* LOGO WRAPPER */
.loader-logo {

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
}

/* BIG LOGO */
.loader-logo img {

  width: 320px !important;

  max-width: none;

  height: auto;

  object-fit: contain;

  transform: none !important;

  filter: drop-shadow(0 0 18px rgba(0,198,255,0.7));
}

/* ANIMATION */
@keyframes bounce {
  from {
    transform: translateY(0);
    opacity: 0.5;
  }
  to {
    transform: translateY(-15px);
    opacity: 1;
  }
}

.hero,
.glass-section,
.navbar {
  position: relative;
  z-index: 2;
}

  /* ================= LOGO ================= */
 .logo {
    display: flex;
    align-items: center;
    gap: 10px;

    height: 60px;      /* fixed navbar logo area */
    overflow: visible; /* allows logo to grow outside */
}
  
  /* LOGO IMAGE */
  .logo img {
    width: 170px;   /* increase logo size */
    height: auto;

    object-fit: contain;

    transform: scale(1.4);   /* makes logo visually bigger */
    transform-origin: left center;

    filter: drop-shadow(0 0 8px rgba(0,198,255,0.6));
}
  
  /* TEXT */
 
  .logo span {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 23px;
    letter-spacing: 1px;
    background: linear-gradient(
    90deg,
    #0072ff 0%,     /* dark blue dominant */
    #0050cc 70%,    /* deeper blue */
    #00c6ff 70%,    /* light highlight */   
    #0040aa 100%    /* rich dark finish */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
    /* Gradient text */
    background: linear-gradient(180deg, #00f2ff, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
    /* Glow effect */
    text-shadow:
      0 0 20px rgba(0,198,255,0.6),
      0 0 40px rgba(0,198,255,0.5);
  
    /* Slight 3D depth */
    position: relative;
  }
  .logo strong {
    color: var(--primary);
  }
  
  /* ================= NAVBAR ================= */
  .navbar {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 8px 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
    /* scroll effect (optional premium) */
  .navbar.scrolled {
    background: rgba(0,0,0,0.7);
    }
  
  .nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-menu {
    display: flex;
    gap: 20px;
  }
  
  .nav-menu a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
    position: relative;
    padding: 6px 12px;
    border-radius: 6px;
  }
  
  .nav-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
  }

  /* CTA button */
  .nav-btn {
    background: linear-gradient(90deg, #ff9800, #ffc107);
    border-radius: 20px;
    padding: 8px 18px;
    color: #000 !important;
    font-weight: 600;
  }
  
  .nav-btn:hover {
    transform: scale(1.05);
  }
  
  .hamburger {
    display: none;
    font-size: 20px;
    cursor: pointer; 
  }

  @media (max-width: 768px) {

    .nav-menu {
      position: fixed;
  
      top: 70px;   /* ✅ match your navbar height (no gap) */
      left: 50%;
      transform: translateX(-50%) scale(0.95);
  
      width: 90%;
      max-width: 320px;
      padding: 20px;
  
      background: rgba(20, 40, 70, 0.95);
      backdrop-filter: blur(20px);
  
      border-radius: 0 0 18px 18px;  /* ✅ smooth connection */
  
      text-align: center;
      flex-direction: column;
      gap: 15px;
  
      display: flex;
  
      /* hidden */
      opacity: 0;
      pointer-events: none;
  
      transition: all 0.3s ease;
      z-index: 1200;
    }
  
    /* SHOW */
    .nav-menu.active {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) scale(1);
    }
  
    /* LINKS */
    .nav-menu a {
      padding: 10px;
      border-radius: 10px;
    }
  
    .nav-menu a:hover {
      background: rgba(255,255,255,0.1);
    }
  
    /* ❌ REMOVED GET STARTED BUTTON */
  
    .hamburger {
      display: block;
    }
    .footer-brand {

  max-width: 340px;

  display:flex;

  flex-direction:column;

  align-items:flex-start;
}

/* FOOTER LOGO */

.footer-brand .logo{

  width:100%;

  display:flex;

  justify-content:flex-start;

  position:relative;

  left:-35px;
}

/* FOOTER LOGO IMAGE */

.footer-brand .logo img{

  width:190px;

  transform:none !important;

  filter:drop-shadow(0 0 10px rgba(0,198,255,0.5));
}
  }
  
  /* ================= HERO ================= */
  .hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 120px 20px 0px;
    overflow: hidden;
    background: none;
    
  
  }
   
  
  /* ✨ SOFT GLOW */
  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
  
    background:
      radial-gradient(circle at 20% 50%, rgba(0,198,255,0.12), transparent 40%),
      radial-gradient(circle at 80% 50%, rgba(0,114,255,0.12), transparent 40%);
  
    z-index: 1;
  }
  
  /* ================= CONTENT ================= */
  .hero-content {
    position: relative;
    max-width: 900px;
    z-index: 2;

    margin-top: -55px;
  }
  
  .hero-content h2 {
    font-size: 32px;
  }
  
  .hero-content h2 span {
    color: var(--primary);
  }
  


  .hero-content h1 {
    font-size: clamp(24px, 5vw, 42px);
  margin: 15px 0;
  font-weight: 700;                 /* 🔥 stronger headline */
  letter-spacing: 0.5px;            /* premium spacing */
  text-shadow: 0 0 12px rgba(0,198,255,0.2); /* subtle glow */
}
  
  .hero-content p {
    font-size: clamp(14px, 2vw, 16px);
    margin-bottom: 25px;
  }
  
  /* BUTTONS */
  .hero-buttons {
    display: flex;
  justify-content: center;
  gap: 25px;        /* slightly tighter */
  flex-wrap: wrap;
  margin-top: 20px; /* reduced spacing */
  }
  .primary-btn{
    text-decoration: none;
  }
  .hero-buttons button {
    width: auto;
  }
  
  .primary-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 25px rgba(0,198,255,0.6);
  }
  
  .primary-btn:hover {
    transform: scale(1.05);
  } 
  
  /* SECONDARY BUTTON = SAME AS PRIMARY */
  .secondary-btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 25px rgba(0,198,255,0.6);
  }
  
  /* HOVER EFFECT */
  .secondary-btn:hover {
    transform: scale(1.05);
  }
  /* COMMON BUTTON STYLE */
  .primary-btn,
  .secondary-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.4s ease;
  }
  
  /* HOVER EFFECT (GRADIENT + GLOW) */
  .primary-btn:hover,
  .secondary-btn:hover {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    border: none;
    transform: scale(1.05);
    color: #fff;
  
    box-shadow:
      0 0 10px rgba(0,198,255,0.6),
      0 0 25px rgba(0,198,255,0.5),
      0 0 50px rgba(0,198,255,0.4);
  }
  .primary-btn,
  .secondary-btn {
    backdrop-filter: blur(6px);
  }
  
  /* BADGES - ADD SPACE FROM BUTTONS */
  .badges {
    margin-top: 37px;   /* 🔥 increased space from buttons */
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .badges i {
    color: #00ffcc;
  }
  
  
  .badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #ffffff; /* 🔥 pure white */
  
  }
 .hero-outsource p{

    font-size: 14px;
    margin-bottom: 25px;

}
  
/* 🔥 HERO SUBTEXT (OUTSIDE SLIDER) */
.hero-subtext {
  text-align: center;
  margin-top: 0px; /* 🔥 pulls it closer to hero */
  margin-bottom: px;
  position: relative;
  z-index: 2;
  transform: none;
}

.hero-subtext h2 {
  font-size: 32px; /* ✅ SAME as slider */
  font-weight: 600;
  position: relative;
  margin-bottom: -30px;
  top: -100px; /* move up */
}

.hero-subtext p {
  font-size: 16px;
  font-style: normal;
  margin-top: 8px;
  color: #d6f4ff;
  position: relative;
  top: -100px; /* move up slightly less */
}
  
  /* STATS */
  .stats {
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
  }
  
  .stats h3 {
    color: var(--primary);
  }

/*Glass card*/
.glass-section {
    margin-top: 35px;  /* 🔥 pulls cards upward */
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, hwb(183 3% 40%), lab(63.23% -21.35 -28.58), hwb(213 17% 20%));
    background:
    radial-gradient(circle at 10% 20%, rgba(0,198,255,0.25) 1.5px, transparent 3px),
    radial-gradient(circle at 30% 70%, rgba(0,198,255,0.20) 1.2px, transparent 3px),
    radial-gradient(circle at 50% 40%, rgba(0,198,255,0.25) 1.6px, transparent 3px),
    radial-gradient(circle at 70% 80%, rgba(0,198,255,0.20) 1.2px, transparent 3px),
    radial-gradient(circle at 90% 30%, rgba(0,198,255,0.25) 1.5px, transparent 3px),
    radial-gradient(circle at 20% 50%, rgba(0,198,255,0.22) 1.2px, transparent 3px),
    radial-gradient(circle at 80% 60%, rgba(0,198,255,0.25) 1.6px, transparent 3px),

    radial-gradient(circle at 15% 35%, rgba(0,198,255,0.20) 1.2px, transparent 3px),
    radial-gradient(circle at 35% 15%, rgba(0,198,255,0.25) 1.4px, transparent 3px),
    radial-gradient(circle at 60% 75%, rgba(0,198,255,0.20) 1.2px, transparent 3px),
    radial-gradient(circle at 85% 55%, rgba(0,198,255,0.25) 1.4px, transparent 3px),

    linear-gradient(180deg, hwb(183 3% 40%), lab(63.23% -21.35 -28.58), hwb(213 17% 20%));

  background-repeat: no-repeat;

  animation: smoothFloat 25s ease-in-out infinite alternate,
             softTwinkle 4s ease-in-out infinite;
  opacity: 0.85;
  pointer-events: auto; 
}

  
  .glass-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
    perspective: 1000px;
  }
  
  /* Glass Card */
  .glass-card {
    width: 100%;
    max-width: 320px;
    border-radius: 18px;
  
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 200, 255, 0.25);
  
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(14px);
  
    box-shadow: 0 0 25px rgba(0, 200, 255, 0.15);
  
    position: relative;
    overflow: hidden;

    height: 260px; /* 🔥 FIXED HEIGHT */
    background: linear-gradient(135deg, #020617, #0a2540, #020617);
  }

 .back-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* TITLE */
.card-back h3 {
  font-size: 18px;
  color: #00e0ff;
  margin-bottom: 10px;
}
.back-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 10px 5px;
}

/* PARAGRAPH */
.back-desc {
  font-size: 14px;
  line-height: 1.7;

  color: #cfefff;
  opacity: 0.9;

  max-width: 95%;

  text-align: left;

  /* subtle premium glow */
  text-shadow: 0 0 6px rgba(0, 198, 255, 0.15);
}
  
  
  /* Hover Effect */
  .glass-card:hover {
    box-shadow: 0 0 40px rgba(0, 200, 255, 0.4);
  }
  
  .glass-card:hover::before {
    opacity: 1;
  }
  
  /* Text Styling */
  .glass-card h3 {
    color: #00d4ff;
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .glass-card p {
    color: #cfefff;
    font-size: 14.5px;
    line-height: 1.6;
  }

  .card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}
.glass-card:hover .card-inner {
  transform: rotateY(180deg);
}
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 18px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 30px;

  backface-visibility: hidden;

  /* 🔥 KEEP YOUR GLASS STYLE */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 200, 255, 0.25);
  backdrop-filter: blur(16px);

  box-shadow: 0 0 25px rgba(0, 200, 255, 0.15);
}
.card-front h3 {
  font-size: 20px;
  color: #00d4ff;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.card-front h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;

  width: 60px;              /* 🔥 underline width */
  height: 3px;              /* thickness */

  background: #00c6ff;      /* your theme color */

  transform: translateX(-50%);
  border-radius: 2px;
}
.card-back {
  transform: rotateY(180deg);
}

.card-back p {
  font-size: 14px;
  line-height: 1.6;
  color: #cfefff;
}
.card-left {
  width: 45%;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;

  background: linear-gradient(90deg, #00e0ff, #00ffa3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-subtitle {
  margin-top: 15px;
  font-size: 14px;
  color: #cfefff;
}
.card-line {
  width: 60px;
  height: 3px;
  background: #00c6ff;
  margin: 10px 0;
  border-radius: 5px;
}
.card-right {
  width: 50%;
}

.card-points {
  list-style: none;
  padding: 0;
}

.card-points li {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  margin-bottom: 18px;
  color: #d6f7ff;

  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s ease forwards;
}

/* ICON STYLE */
.card-points li span {
  font-size: 18px;
}
.card-points li:nth-child(1) { animation-delay: 0.2s; }
.card-points li:nth-child(2) { animation-delay: 0.4s; }
.card-points li:nth-child(3) { animation-delay: 0.6s; }
.card-points li:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  
  /* ================= ANIMATIONS ================= */
  @keyframes moveLines {
    from { transform: translateX(0); }
    to { transform: translateX(-200px); }
  }
  
  @keyframes smoothFloat {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(-20px); }
  }
  
  @keyframes softTwinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
  }
  
  /* ================= RESPONSIVE ================= */
  @media (max-width: 768px) {
    .hamburger { display: block; }
    .hero-content h1 { font-size: 28px; }
    .stats { flex-direction: column; gap: 15px; }
  }




  /* ===== HERO SLIDER ===== */
  .hero-slider {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -10px;
    margin-bottom: -8px;

    overflow: hidden;
    border-radius: 0;
}
  
  /* slides container */
  .slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
  }
  
  /* each slide */
  .slide {
    min-width: 100vw;  /* full screen per slide */
    height: 65vh;      /* adjust height as needed */
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    object-position: center;
    background: #020617;
  }
  
  /* ===== FIXED CONTENT ===== */
  .slider-overlay-content {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    text-align: center;
    z-index: 5;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .slider-overlay-content h2{
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  white-space: normal;
  letter-spacing: 0.3px;
}

  .slider-overlay-content p{
    font-style: normal;
  opacity: 0.9;

  }
 .portfolio-container {
  position: relative;
  z-index: 5;

  text-align: center;

  margin-top: 18px;
  margin-bottom: 10px;

  padding: 0px 15px 20px;
}

.portfolio-title {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 700;
  color: #ffffff;

  line-height: 1.2;

  margin-bottom: 18px;

  letter-spacing: 0.5px;
  text-shadow: 0 0 12px rgba(0,198,255,0.2);
}

.portfolio-subtext {
  width: 100%;
  max-width: 760px;

  margin: 0 auto;

  text-align: center;

  font-size: 17px;
  line-height: 1.8;

  color: rgba(255,255,255,0.85);
}

  /* 🔥 HERO BUTTONS INSIDE OVERLAY */
  .slider-overlay-content .hero-buttons {
    margin-top: 40px;
    margin-bottom: 10px;
}
.slider-overlay-content .slider-badges {
  margin-top: 10px;
}
  
  /* ===== BADGES ===== */
  .slider-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
    padding: 12px 20px;
  
    background: linear-gradient(135deg, rgba(0,114,255,0.25), rgba(0,198,255,0.15));
    backdrop-filter: blur(12px);
    border-radius: 12px;
    flex-wrap: wrap;
  }
  
  .slider-badges div {
    font-size: 13px;
    color: #e0f7ff;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .slider-badges i {
    color: #00ffcc;
  }
  .after-badges-text {
    margin-top: 12px;
  font-size: 13px;
  opacity: 0.9;   /* increase visibility */
  max-width: 700px;
}
  
  /* ===== ARROWS ===== */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #fff;
    background: rgba(0,0,0,0.4);
    padding: 8px;
    cursor: pointer;
    z-index: 10;
  }
  
  .left { left: 10px; }
  .right { right: 10px; }
  
  /* ===== DOTS ===== */
  .dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
  }
  
  .dots span {
    height: 8px;
    width: 8px;
    margin: 4px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
  }
  
  .dots .active-dot {
    background: #00c6ff;
  }

  /* ================= ANALYTICS SECTION ================= */

.analytics-section {
  padding: 70px 20px 60px;
  position: relative;
  z-index: 2;
}

.analytics-desc {
  margin-bottom: 28px;
}

.analytics-features {
  width: 48%;

  display: flex;

  align-items: center;

  justify-content: center;
}

.analytics-paragraph {
  font-size: 17px;

  line-height: 1.9;

  color: rgba(255,255,255,0.88);

  letter-spacing: 0.3px;

  text-align: left;

  max-width: 650px;
}


/* CONTAINER */
.analytics-container {
  max-width: 1280px;
  margin: auto;
}

/* TOP CONTENT */
.analytics-top-content {
  width: 100%;
  max-width: 1100px;

  margin: 0 auto 10px;

  text-align: center;
}

.analytics-top-content h5 {
  color: #72d1eb;
  font-size: clamp(24px, 5vw, 42px);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;

  position: relative;
  top: -30px;
}

.analytics-top-content h2 {
  font-size: clamp(22px, 3vw, 36px);

  line-height: 1.15;

  margin-bottom: 12px;

  font-weight: 700;

  color: #ffffff;

  position: relative;
  top: -18px; /* moves upward */
}

.analytics-top-content h2 span {
  color: #00c6ff;
}

.analytics-top-content p {
  max-width: 950px;
  margin: auto;

  font-size: 17px;
  line-height: 1.6;

  color: #d6f4ff;
}

/* BOTTOM LAYOUT */
.analytics-bottom {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 50px;

  width: 100%;

  margin-top: 15px;
}

/* ===== IMAGE OVERLAP DESIGN ===== */

.analytics-images {
  width: 48%;

  display: flex;
  justify-content: flex-end;

  align-items: flex-start;

  position: relative;

  padding-top: 8px; /* align with paragraph */
}
.analytics-images img:first-child {
  width: 100%;
  max-width: 760px;

  height: 320px; /* fixed balanced height */

  object-fit: cover;

  border-radius: 22px;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.45),
    0 0 35px rgba(0,198,255,0.12);
}

.analytics-images img:last-child {
  display: none;
}

/* BIG IMAGE */
.analytics-images img:first-child {
  width: 92%;
  border-radius: 16px;
  object-fit: cover;

  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* SMALL IMAGE */
.analytics-images img:last-child {
  position: absolute;
  bottom: -40px;
  right: -0px;

  width: 70%;
  border-radius: 16px;

  object-fit: cover;

  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 4px solid rgba(255,255,255,0.1);
}

.analytics-images img {
  transition: transform 0.4s ease;
}

.analytics-images img:hover {
  transform: scale(1.02);
}


/* RIGHT CONTENT */
.analytics-content {
  flex: 1;
  max-width: 600px;
}

/* SMALL LABEL */
.analytics-content h5 {
  color: #00c6ff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

/* MAIN HEADING */
.analytics-content h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.25;
  margin-bottom: 22px;
  font-weight: 700;
  color: #ffffff;
}

.analytics-content h2 span {
  color: #00c6ff;
}


/* PARAGRAPH */
.analytics-content p {
  color: #cfefff;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
  opacity: 0.92;
}

/* SUB HEADING */
.analytics-content h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0b1b3a;
  color: #cfcfcf;

  padding-top: 30px;   /* reduced height */
  padding-bottom: 10px;

  position: relative;
  z-index: 5;
}

/* CONTAINER */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 15px;

  max-width: 1100px;
  margin: auto;

  padding: 0 20px 0px;
}

/* COLUMN */
.footer-col {
  flex: 1;
}

/* TEXT */
.footer-col p {
  margin-top: 4px;

  font-size: 13px;
  line-height: 1.4;
}

/* HEADINGS */
.footer-col h3 {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #00c6ff;
  position: absolute;
  left: 29%;
  bottom: -6px;
}
.footer-col h3 span{

color: #00c6ff;
}


/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;

}

.footer-col ul li {
  margin: 5px 0;
  overflow: hidden;
}

.footer-col ul li a {
  text-decoration: none;
  color: #bbb;
  font-size: 14px;
  transition: 0.3s;
  display: inline-block;          /* 🔥 REQUIRED for transform */
  transition: all 0.3s ease;
  padding-left: 5px;
}

.footer-col ul li a:hover {
  color: #00c6ff;                 /* your theme color */
  transform: translateX(10px);
  text-shadow: 0 0 8px rgba(0,198,255,0.6);
}

/* CONTACT */
.contact-item {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 8px;
}


.contact-item i {
  background: #00c6ff;
  color: white;

  width: 32px;        /* fixed size */
  height: 32px;       /* 🔥 control height */

  display: flex;      /* center icon */
  align-items: center;
  justify-content: center;

  border-radius: 6px;
  font-size: 14px;

  padding: 0;         /* 🔥 remove extra height */
}

/* LINKEDIN */
.linkedin {
  margin-top: 10px;
}

.linkedin a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #0077b5;
  color: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.linkedin a:hover {
  transform: scale(1.1);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;

  padding: 6px;

  background: #07122b;

  margin-top: 5px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.08);
}


.footer-badge i {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  border: 1px solid rgba(0,198,255,0.4);

  color: #00c6ff;

  font-size: 20px;

  background: rgba(255,255,255,0.03);
}
.footer-badge span {
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}
.secure-text {

  margin-top: 18px;

  margin-left: 0;

  padding-left: 0;

  display: flex;

  align-items: center;

  justify-content: flex-start;

  gap: 14px;

  color: rgba(255,255,255,0.88);

  font-size: 16px;

  line-height: 1.5;

  white-space: nowrap;
}
.secure-text i {

  color: #00c6ff;

  font-size: 18px;

  width: 20px;

  text-align: center;

  margin-left: 0;
}
.footer-col {
  position: relative;
}
.footer-col:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 0;
  right: -10px;

  width: 1px;
  height: 100%;

  background: rgba(255,255,255,0.1);
}

.contact-item small {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}
.contact-item p {
  margin-bottom: 3px;
}
.map-btn {
  margin-top: 20px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 24px;

  border-radius: 14px;

  border: 1px solid #00c6ff;

  color: white;
  text-decoration: none;

  transition: 0.3s ease;
}
.map-btn:hover {
  background: linear-gradient(90deg,#0072ff,#00c6ff);
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;

  width: 55px;
  height: 55px;

  background: #25D366;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 24px;

  z-index: 1000;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);

  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Scroll Top */
.scroll-top {
  position: fixed;
  bottom: 120px;
  left: 22px;

  width: 50px;
  height: 50px;

  background: linear-gradient(90deg, #0072ff, #00c6ff);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  font-size: 18px;

  cursor: pointer;

  opacity: 0;              /* hidden initially */
  visibility: hidden;

  z-index: 1000;
  transition: 0.3s ease;
}

/* Show when scrolling */
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
}

@media (max-width: 1400px) {

  .analytics-container {
    max-width: 1200px;
  }

  .analytics-features {
    width: 50%;
  }

  .analytics-images {
    width: 45%;
  }
}

/* LAPTOP */
@media (max-width: 1200px) {

  .analytics-bottom {
    gap: 40px;
  }

  .analytics-features {
    width: 52%;
  }

 .analytics-images {
  width: 100%;
  max-width: 100%;

  padding-top: 0;
}

  .analytics-paragraph {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* TABLET */
@media (max-width: 992px) {

  .analytics-section {
    padding: 60px 20px;
  }

  .analytics-bottom {
    flex-direction: column;

    align-items: center;

    gap: 40px;
  }

  .analytics-images {
    width: 100%;

    justify-content: center;
  }

  .analytics-images img:first-child {
    width: 100%;

    height: 260px;

    object-fit: cover;

    border-radius: 18px;
}

  .analytics-features {
    width: 100%;
  }

  .analytics-paragraph {
    max-width: 100%;

    text-align: center;

    font-size: 16px;

    line-height: 1.9;
  }

  .analytics-top-content h2 {
    font-size: 32px;
  }

  .analytics-top-content h5 {
    font-size: 28px;
  }
}

  
  /* ===== MOBILE (IMPORTANT 🔥) ===== */
  @media (max-width: 768px) {
  
    .slide {
      height: 260px; /* fixed mobile height */
    }
  
    .slider-overlay-content {
      width: 95%;
      top: 45%; /* slightly lower for small screens */
      transform: translate(-50%, -50%);
      gap: 10px;
    }
  
    .slider-overlay-content h2 {
      font-size: 18px;
    }
  
    .slider-overlay-content p {
      font-size: 13px;
    }
    .slider-overlay-content .hero-buttons {
    flex-direction: column;
    align-items: center;
    }

  .slider-overlay-content .primary-btn,
  .slider-overlay-content .secondary-btn {
    width: 100%;
    max-width: 260px;
    }
  
    .slider-badges {
      flex-direction: column;
      gap: 8px;
      padding: 10px;
    }
  
    .arrow {
      font-size: 18px;
      padding: 6px;
    }
    .hero {
      padding: 100px 15px 60px;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
      width: 100%;
      max-width: 280px;
    }
    .hero-subtext h2 {
      font-size: 20px;
      top: -50px;
    }

    .hero-subtext p {
      font-size: 13px;
      top: -100px;
    }
    .glass-container {
    flex-direction: column;
    align-items: center;
  }

  .glass-card {
    max-width: 90%;
  }


/*Analytical section */
 .analytics-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 30px;

  width: 100%;
  margin-top: 40px;
}
 .analytics-section {
    padding: 50px 18px;
  }

.analytics-container {
    text-align: center;
}
.analytics-top-content {
  margin-bottom: 30px;
}
 .analytics-top-content h5 {
    font-size: 24px;

    top: -10px;
  }
.analytics-top-content h2 {
  font-size: 32px;
  line-height: 1.3;

  top: -5px;
}

.analytics-top-content p {
  font-size: 15px;
  line-height: 1.8;
}

.analytics-images {
  max-width: 100%;
}

.analytics-features {
  grid-template-columns: 1fr;
  width: 100%;
}
  .analytics-images {
  position: relative;

   width: 100%;
  min-width: 420px;

  flex-shrink: 0;
}
  /* BIG IMAGE */
  .analytics-images img:first-child {
    width: 100%;

    border-radius: 18px;
  }

  /* 🔥 KEEP OVERLAP (ADJUSTED FOR MOBILE) */
  .analytics-images img:last-child {
    position: absolute;
    bottom: -20px;   /* smaller overlap */
    right: 10px;     /* adjust inside screen */
    width: 80%;      /* slightly bigger */
  }

  .analytics-content {
    text-align: center;
    padding: 0 10px;
    max-width: 100%;
  }
  .analytics-features {
  grid-template-columns: 1fr;
  gap: 20px;
}
.analytics-content h2 {
  font-size: 30px;
  line-height: 1.4;
}

.analytics-content p {
  font-size: 15px;
  line-height: 1.8;
}
.analytics-paragraph {
    font-size: 15px;

    line-height: 1.9;

    text-align: left;
  }
.feature-box {
  text-align: left;
}

 
  /* 🔥 ONLY LOGO CENTER */
  .footer-col:first-child .logo {
    justify-content: center;
    width: 100%;
    display: flex;
    align-items: center;
  }
   .footer-col:first-child {
    width: 100%;
    text-align: center; /* center only logo + description */
  }
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 35px;
  }
    .footer-col:not(:last-child)::after {
    display:none;
  }
 
  .secure-text {
    justify-content:center;
  }

  .contact-item {
    justify-content: flex start;
  }

  .footer-col h3::after {
    left: 40%;
    transform: translateX(-50%);
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 20px;
    left: 15px;
  }

  .scroll-top {
    width: 45px;
    height: 45px;
    left: 18px;
    bottom: 80px;
  }


  .loader-logo span {
    font-size: 24px;
  }
}
  
  /* ===== SMALL MOBILE ===== */
  @media (max-width: 480px) {
    .slide {
      height: 220px;
    }
    .hero-content h1 {
        font-size: 22px;
    }
    .slider-overlay-content h2 {
        white-space: normal; /* allow wrap */
    }
    .analytics-section {
    padding: 40px 15px;
  }

  .analytics-top-content h5 {
    font-size: 21px;
  }

  .analytics-top-content h2 {
    font-size: 24px;
  }

  .analytics-top-content p {
    font-size: 14px;
  }

  .analytics-paragraph {
    font-size: 14px;

    line-height: 1.8;
  }

  .analytics-images img:first-child {
    border-radius: 14px;
  }

    
  }


  /* Fix container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }

  /* ================= TABLET ================= */
  @media (max-width: 992px) {

    .hero-content {
      max-width: 95%;
    }
  
    .glass-container {
      gap: 20px;
    }
  
  }